forked from TestLinkOpenSourceTRMS/testlink-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkto.php
427 lines (360 loc) · 12.2 KB
/
linkto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* Direct links for external access to testlink items with frames for navigation and tree.
*
* IMPORTANT - LIMITATIONS:
* User has to login before clicking the link!
* If user is not logged in he is redirected to login page.
* After login main page is shown, Clicking the link again then it works!
*
* How this feature works:
*
* - direct link to testcase KAOS-4 in test project KAOS:
* http://<testlink_home>/linkto.php?tprojectPrefix=KAOS&item=testcase&id=KAOS-4
*
* - direct link to requirement REQ-002 in test project KAOS:
* http://<testlink_home>/linkto.php?tprojectPrefix=KAOS&item=req&id=REQ-002
*
* - direct link to requirement specification REQ-SPEC-AK89 in test project KAOS:
* http://<testlink_home>/linkto.php?tprojectPrefix=KAOS&item=reqspec&id=REQ-SPEC-AK89
*
* Anchors:
* If anchors are set (in scope, etc.) in the linked document, you can specify these
* by using &anchor=anchorname, e.g.
* http://<testlink_home>/linkto.php?tprojectPrefix=KAOS&item=testcase&id=KAOS-4&anchor=importantpart
*
* Specials:
* - tree for requirement specification or test specification
* are expanded to the level of the item you created the link to
* - if a user has no right to view item he is redirected to main page
* - if item does not exist an errormessage shows
*
* @package TestLink
* @author asimon
* @copyright 2007-2017, TestLink community
* @link http://www.teamst.org/index.php
*
*/
// use output buffer to prevent headers/data from being sent before
// cookies are set, else it will fail
ob_start();
// some session and settings stuff from original index.php
require_once('lib/functions/configCheck.php');
checkConfiguration();
require_once('config.inc.php');
require_once('common.php');
require_once('attachments.inc.php');
require_once('requirements.inc.php');
require_once('testcase.class.php');
require_once('testproject.class.php');
require_once('users.inc.php');
testlinkInitPage($db, true);
$smarty = new TLSmarty();
// display outer or inner frame?
if (!isset($_GET['load']))
{
// display outer frame, pass parameters to next script call for inner frame
// Direct link to testcase where TC ID prefix contains an '&' (the ampersand symbol), does not link
//
// ATTENTION:
// Because we are going to recreate an URL with paramenters on the URL, we need
// to use urlencode() on data we have got.
//
$args = init_args();
$args->tproject_id = 0;
if( $args->status_ok )
{
$user = $_SESSION['currentUser'];
if($args->tprojectPrefix != '')
{
$hasRight = checkTestProject($db,$user,$args);
if( $hasRight )
{
$gui = new stdClass();
$gui->titleframe = 'lib/general/navBar.php?caller=linkto';
$gui->navbar_height = config_get('navbar_height');
if( $args->tproject_id > 0)
{
$gui->titleframe .= '&testproject=' . $args->tproject_id;
}
$gui->title = lang_get('main_page_title');
$gui->mainframe = 'linkto.php?' . buildLink($args);
$smarty->assign('gui', $gui);
$smarty->display('main.tpl');
}
}
}
}
else
{
//
// inner frame, parameters passed
// figure out what to display
//
// key: item, value: url to tree management page
$itemCode = array('req' => 'lib/requirements/reqSpecListTree.php',
'reqspec' => 'lib/requirements/reqSpecListTree.php',
'testcase' => 'lib/testcases/listTestCases.php?feature=edit_tc',
'testsuite' => 'lib/testcases/listTestCases.php?feature=edit_tc');
$op = array('status_ok' => true, 'msg' => '');
// First check for keys in _GET that MUST EXIST
// key: key on _GET, value: labelID defined on strings.txt
$mustKeys = array('tprojectPrefix' => 'testproject_not_set',
'item' => 'item_not_set', 'id' => 'id_not_set');
foreach($mustKeys as $key => $labelID)
{
$op['status_ok'] = isset($_GET[$key]);
if( !$op['status_ok'])
{
$op['msg'] = lang_get($labelID);
break;
}
}
$args = init_args();
if($op['status_ok'])
{
$tproject = new testproject($db);
$tproject_data = $tproject->get_by_prefix($args->tprojectPrefix);
if(($op['status_ok'] = !is_null($tproject_data)))
{
$tproject->setSessionProject($tproject_data['id']);
$op['status_ok'] = isset($itemCode[$args->item]);
$op['msg'] = sprintf(lang_get('invalid_item'),$args->item);
}
else
{
$op['msg'] = sprintf(lang_get('testproject_not_found'),$args->tprojectPrefix);
}
}
if($op['status_ok'])
{
// Build name of function to call for doing the job.
$pfn = 'process_' . $args->item;
$jump_to = $pfn($db, $args->id, $tproject_data['id'], $args->tprojectPrefix, $args->version);
$op['status_ok'] = !is_null($jump_to['url']);
$op['msg'] = $jump_to['msg'];
}
if($op['status_ok'])
{
// need to set test project item on Navbar
// add anchor to URL
$url = $jump_to['url'] . $args->anchor;
$smarty->assign('title', lang_get('main_page_title'));
$smarty->assign('treewidth', TL_FRMWORKAREA_LEFT_FRAME_WIDTH);
$smarty->assign('workframe', $url);
$smarty->assign('treeframe', $itemCode[$args->item]);
$smarty->display('frmInner.tpl');
}
else
{
echo $op['msg'];
ob_end_flush();
exit();
}
}
ob_end_flush();
/**
*
*
*/
function checkTestProject(&$db,&$user,&$args)
{
$hasRight = false;
$tproject_mgr = new testproject($db);
$item_info = $tproject_mgr->get_by_prefix($args->tprojectPrefix);
if(($op['status_ok'] = !is_null($item_info)))
{
$args->tproject_id = intval($item_info['id']);
switch($args->item)
{
case 'testcase':
case 'testsuite':
$hasRight = $user->hasRight($db,'mgt_view_tc',$args->tproject_id);
break;
case 'req':
case 'reqspec':
$hasRight = $user->hasRight($db,'mgt_view_req',$args->tproject_id);
break;
default:
// need to fail!!
break;
}
}
return $hasRight;
}
/**
*
*/
function init_args()
{
$args = new stdClass();
$args->tprojectPrefix = isset($_GET['tprojectPrefix']) ? $_GET['tprojectPrefix'] : null;
$args->id = isset($_GET['id']) ? $_GET['id'] : null;
$args->anchor = isset($_GET['anchor']) ? $_GET['anchor'] : null;
$args->version = isset($_GET['version']) ? $_GET['version'] : null;
$args->item = isset($_GET['item']) ? $_GET['item'] : null;
$args->status_ok = !is_null($args->tprojectPrefix) && !is_null($args->id) && !is_null($args->item);
return $args;
}
/**
*
*/
function buildLink(&$argsObj)
{
// link => $item . $id . $version . $tprojectPrefix . '&load' . $anchor;
$lk = isset($_GET['item']) ? "item=" . $_GET['item'] : '';
$lk .= isset($_GET['id']) ? "&id=" . urlencode($_GET['id']) : '';
$lk .= isset($_GET['version']) ? "&version=" . $_GET['version'] : '';
$lk .= isset($_GET['tprojectPrefix']) ? "&tprojectPrefix=" . urlencode($_GET['tprojectPrefix']) : '';
$lk .= '&load' . (isset($_GET['anchor']) ? '&anchor=' . $_GET['anchor'] : "");
return $lk;
}
/**
* process_testcase
*
*/
function process_testcase(&$dbHandler,$externalID, $tprojectID, $tprojectPrefix, $version)
{
$ret = array();
$ret['url'] = null;
$ret['msg'] = sprintf(lang_get('testcase_not_found'), $externalID, $tprojectPrefix);
$tcase_mgr = new testcase($dbHandler);
$tcaseID = $tcase_mgr->getInternalID($externalID);
if($tcaseID > 0)
{
$ret['url'] = "lib/testcases/archiveData.php?edit=testcase&id={$tcaseID}";
$ret['msg'] = 'ok';
$ckCfg = config_get('cookie');
$ckCfg->prefix .= 'ys-tproject_';
$cookie = buildCookie($dbHandler,$tcaseID,$tprojectID,$ckCfg->prefix);
$ckObj = new stdClass();
$ckObj->name = $cookie['value'];
$ckObj->value = $cookie['path'];
tlSetCookie($ckObj);
}
return $ret;
}
/**
* process_req
*
* @internal revisions
*/
function process_req(&$dbHandler, $docID, $tprojectID, $tprojectPrefix, $version)
{
$ret = array('url' => null, 'msg' => null);
// First step: get this requirement's database ID by its Doc-ID (only if this Doc-ID exists).
$req_mgr = new requirement_mgr($dbHandler);
$req = $req_mgr->getByDocID($docID, $tprojectID);
$req = is_null($req) ? null : current($req);
$req_id = is_null($req) ? null : $req['id'];
$version_id = null;
if (is_null($req_id))
{
$ret['msg'] = sprintf(lang_get('req_not_found'), $docID, $tprojectPrefix);
}
// Second step: If the requirement exists and a version was given, we have to check here if this specific version exists, too.
if(!is_null($req_id) && !is_null($version) && is_numeric($version))
{
$req = $req_mgr->get_by_id($req_id, null, $version);
$req = is_null($req) ? null : current($req);
// does this requirement really have the correct version number?
$version_id = !is_null($req) && ($req['version'] == $version) ? $req['version_id'] : null;
if (is_null($version_id))
{
// add direct link to current version to output
$req_url = $_SESSION['basehref'] . 'linkto.php?load&tprojectPrefix=' .
urlencode($tprojectPrefix) . '&item=req&id=' . urlencode($docID);
$ret['msg'] = sprintf(lang_get('req_version_not_found'), $version, $docID, $tprojectPrefix);
$ret['msg'] .= sprintf(" <a href=\"$req_url\">%s</a>", lang_get('direct_link_on_wrong_version'));
$req_id = null;
}
}
// Third and last step: set cookie and build the link (only if the requested item really was found).
if(!is_null($req_id))
{
$ret['url'] = "lib/requirements/reqView.php?item=requirement&requirement_id=$req_id";
// link to open in requirement frame must include version
if (!is_null($version_id))
{
$ret['url'] .= "&req_version_id=$version_id";
}
$ckCfg = config_get('cookie');
$ckCfg->prefix .= 'requirement_spec';
$cookie = buildCookie($dbHandler,$req_id,$tprojectID,$ckCfg->prefix);
$ckObj = new stdClass();
$ckObj->name = $cookie['value'];
$ckObj->value = $cookie['path'];
tlSetCookie($ckObj);
}
return $ret;
}
/**
* process_reqspec
*
*/
function process_reqspec(&$dbHandler, $docID, $tprojectID, $tprojectPrefix, $version)
{
$ret = array();
$ret['url'] = null;
$ret['msg'] = sprintf(lang_get('req_spec_not_found'), $docID,$tprojectPrefix);
$reqspec_mgr = new requirement_spec_mgr($dbHandler);
$reqSpec = $reqspec_mgr->getByDocID($docID,$tprojectID);
if( !is_null($reqSpec) )
{
$reqSpec = current($reqSpec);
$id = $reqSpec['id'];
$ret['url'] = "lib/requirements/reqSpecView.php?req_spec_id={$id}";
$ckCfg = config_get('cookie');
$ckCfg->prefix .= 'ys-requirement_spec';
$cookie = buildCookie($dbHandler,$id,$tprojectID,$ckCfg->prefix);
$ckObj = new stdClass();
$ckObj->name = $cookie['value'];
$ckObj->value = $cookie['path'];
tlSetCookie($ckObj);
}
return $ret;
}
/**
*
*
*/
function buildCookie(&$dbHandler,$itemID,$tprojectID,$cookiePrefix)
{
$tree_mgr = new tree($dbHandler);
$path = $tree_mgr->get_path($itemID);
$parents = array();
$parents[] = $tprojectID;
foreach($path as $node)
{
$parents[] = $node['id'];
}
array_pop($parents);
$cookieInfo['path'] = 'a:s%3A/' . implode("/", $parents);
$cookieInfo['value'] = $cookiePrefix . $tprojectID . '_ext-comp-1001' ;
return $cookieInfo;
}
/**
* process_testsuite
*
* http://localhost/development/gitorious/testlink/linkto.php?tprojectPrefix=333&item=testsuite&id=2894
*/
function process_testsuite(&$dbHandler,$tsuiteID, $tprojectID, $tprojectPrefix)
{
$ret = array();
$ret['url'] = null;
$ret['msg'] = sprintf(lang_get('testsuite_not_found'), $tsuiteID, $tprojectPrefix);
$ret['url'] = 'lib/testcases/archiveData.php?print_scope=test_specification' .
'&edit=testsuite&level=testsuite&containerType=testsuite&id=' . $tsuiteID;
$ret['msg'] = 'ok';
$ckCfg = config_get('cookie');
$ckCfg->prefix .= 'ys-tproject_';
$cookie = buildCookie($dbHandler,$tsuiteID,$tprojectID,$ckCfg->prefix);
$ckObj = new stdClass();
$ckObj->name = $cookie['value'];
$ckObj->value = $cookie['path'];
tlSetCookie($ckObj);
return $ret;
}