-
Notifications
You must be signed in to change notification settings - Fork 625
Expand file tree
/
Copy pathgetrequirementnodes.php
More file actions
160 lines (134 loc) · 6.3 KB
/
Copy pathgetrequirementnodes.php
File metadata and controls
160 lines (134 loc) · 6.3 KB
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
<?php
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
*
* @filesource getrequirementnodes.php
* @author Francisco Mancardi
*
* **** IMPORTANT *****
* Created using Ext JS example code
*
* Is the tree loader, will be called via AJAX.
* Ext JS automatically will pass $_REQUEST['node']
* Other arguments will be added by TL php code that needs the tree.
*
* This tree is used to navigate ...
*
* @internal revision
*
*/
require_once('../../config.inc.php');
require_once('common.php');
testlinkInitPage($db);
$root_node=isset($_REQUEST['root_node']) ? intval($_REQUEST['root_node']): null;
$node=isset($_REQUEST['node']) ? intval($_REQUEST['node']) : $root_node;
$filter_node=isset($_REQUEST['filter_node']) ? intval($_REQUEST['filter_node']) : null;
$show_children=isset($_REQUEST['show_children']) ? intval($_REQUEST['show_children']) : 1;
$operation=isset($_REQUEST['operation']) ? $_REQUEST['operation']: 'manage';
$mode=isset($_REQUEST['mode']) ? $_REQUEST['mode'] : 'reqspec';
$nodes = display_children($db,$root_node,$node,$filter_node,$show_children,$operation,$mode);
echo json_encode($nodes);
/*
*/
function display_children($dbHandler,$root_node,$parent,$filter_node,
$show_children=ON,$operation='manage',$mode='reqspec')
{
$tables = tlObjectWithDB::getDBTables(array('requirements','nodes_hierarchy','node_types','req_specs'));
$cfg = config_get('req_cfg');
$forbidden_parent['testproject'] = 'none';
$forbidden_parent['requirement'] = 'testproject';
$forbidden_parent['requirement_spec'] = 'requirement_spec';
if($cfg->child_requirements_mgmt)
{
$forbidden_parent['requirement_spec'] = 'none';
}
$fn = array();
$fn['print']['reqspec'] = array('testproject' => 'TPROJECT_PTP_RS',
'requirement_spec' =>'TPROJECT_PRS', 'requirement' => 'openLinkedReqWindow');
$fn['manage']['reqspec'] = array('testproject' => 'TPROJECT_REQ_SPEC_MGMT',
'requirement_spec' =>'REQ_SPEC_MGMT', 'requirement' => 'REQ_MGMT');
$fn['print']['addtc'] = array('testproject' => 'TPROJECT_PTP',
'requirement_spec' =>'TPROJECT_PRS', 'requirement' => 'TPROJECT_PRS');
$fn['manage']['addtc'] = array('testproject' => 'EP','requirement_spec' =>'ERS', 'requirement' => 'ER');
switch($operation)
{
case 'print':
case 'manage':
$js_function=$fn[$operation][$mode];
break;
default:
$js_function=$fn['manage'][$mode];
break;
}
$nodes = null;
$filter_node_type = $show_children ? '' : ",'requirement'";
$sql = " SELECT NHA.*, NT.description AS node_type, RSPEC.doc_id " .
" FROM {$tables['nodes_hierarchy']} NHA JOIN {$tables['node_types']} NT " .
" ON NHA.node_type_id=NT.id " .
" AND NT.description NOT IN " .
" ('testcase','testsuite','testcase_version','testplan','requirement_spec_revision' {$filter_node_type}) " .
" LEFT OUTER JOIN {$tables['req_specs']} RSPEC " .
" ON RSPEC.id = NHA.id " .
" WHERE NHA.parent_id = " . intval($parent);
if(!is_null($filter_node) && $filter_node > 0 && $parent == $root_node)
{
$sql .= " AND NHA.id = " . intval($filter_node);
}
$sql .= " ORDER BY NHA.node_order ";
$nodeSet = $dbHandler->get_recordset($sql);
if(!is_null($nodeSet))
{
$sql = " SELECT DISTINCT req_doc_id AS doc_id,NHA.id" .
" FROM {$tables['requirements']} REQ JOIN {$tables['nodes_hierarchy']} NHA ON NHA.id = REQ.id " .
" JOIN {$tables['nodes_hierarchy']} NHB ON NHA.parent_id = NHB.id " .
" JOIN {$tables['node_types']} NT ON NT.id = NHA.node_type_id " .
" WHERE NHB.id = " . intval($parent) . " AND NT.description = 'requirement'";
$requirements = $dbHandler->fetchRowsIntoMap($sql,'id');
$treeMgr = new tree($dbHandler);
$ntypes = $treeMgr->get_available_node_types();
$peerTypes = array('target' => $ntypes['requirement'], 'container' => $ntypes['requirement_spec']);
foreach($nodeSet as $key => $row)
{
$path['text'] = htmlspecialchars($row['name']);
$path['id'] = $row['id'];
// this attribute/property is used on custom code on drag and drop
$path['position'] = $row['node_order'];
$path['leaf'] = false;
$path['cls'] = 'folder';
// Important:
// We can add custom keys, and will be able to access it using
// public property 'attributes' of object of Class Ext.tree.TreeNode
//
$path['testlink_node_type'] = $row['node_type'];
$path['testlink_node_name'] = $path['text']; // already htmlspecialchars() done
$path['forbidden_parent'] = 'none';
switch($row['node_type'])
{
case 'testproject':
$path['href'] = "javascript:EP({$path['id']})";
$path['forbidden_parent'] = $forbidden_parent[$row['node_type']];
break;
case 'requirement_spec':
$req_list = array();
$treeMgr->getAllItemsID($row['id'],$req_list,$peerTypes);
$path['href'] = "javascript:" . $js_function[$row['node_type']]. "({$path['id']})";
$path['text'] = htmlspecialchars($row['doc_id'] . ":") . $path['text'];
$path['forbidden_parent'] = $forbidden_parent[$row['node_type']];
if(!is_null($req_list))
{
$item_qty = count((array)$req_list);
$path['text'] .= " ({$item_qty})";
}
break;
case 'requirement':
$path['href'] = "javascript:" . $js_function[$row['node_type']]. "({$path['id']})";
$path['text'] = htmlspecialchars($requirements[$row['id']]['doc_id'] . ":") . $path['text'];
$path['leaf'] = true;
$path['forbidden_parent'] = $forbidden_parent[$row['node_type']];
break;
}
$nodes[] = $path;
} // foreach
}
return $nodes;
}