2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 define('SVN', '$Id$');
24 $focus['showreport
'] = 'focus
';
26 require_once('./global.php
');
27 require_once('./includes
/functions_product
.php
');
28 require_once('./includes
/api_bug
.php
');
29 require_once('./includes
/api_comment
.php
');
31 $bug = $db->query_first("
32 SELECT bugvaluefill.*, bug.*, user.email, user.displayname, user.showemail
33 FROM " . TABLE_PREFIX . "bug AS bug
34 LEFT JOIN " . TABLE_PREFIX . "user AS user
35 ON (bug.userid = user.userid)
36 LEFT JOIN " . TABLE_PREFIX . "bugvaluefill AS bugvaluefill
37 ON (bug.bugid = bugvaluefill.bugid)
38 WHERE bug.bugid = " . intval($bugsys->in['bugid
'])
41 if (!((can_perform('caneditown
', $bug['productid
']) AND $bugsys->userinfo['userid
'] == $bug['userid
']) OR (can_perform('caneditother
', $bug['productid
']) AND $bugsys->userinfo['userid
'] != $bug['userid
'])) AND !can_perform('canpostcomments
', $bug['productid
']))
43 $message->error_permission();
48 $message->error($lang->getlex('error_invalid_id
'));
51 if ($bug['hidden
'] AND !can_perform('canviewhidden
', $bug['productid
']))
53 $message->error_permission();
57 require_once('./includes
/class_history
.php
');
59 $log->bugid = $bug['bugid
'];
62 require_once('./includes
/class_logging
.php
');
64 $log2->set_bugid($bug['bugid
']);
74 'versionid
' => 'version
',
75 'assignedto
' => 'assignto
',
77 'productid
' => 'product
',
78 'componentid
' => 'component
'
81 // ###################################################################
83 if ($_POST['do'] == 'update
')
85 $bugapi = new BugAPI($bugsys);
86 $bugapi->set('bugid
', $bugsys->in['bugid
']);
87 $bugapi->set_condition();
88 $bugapi->dorelations = array();
91 $log2->add_data(true, $bugapi->objdata, $bugfields);
93 // -------------------------------------------------------------------
95 $autoaction = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "autoaction WHERE actionid = " . $bugsys->input_clean('autoaction
', TYPE_UINT));
98 $autoaction['fields
'] = unserialize($autoaction['fieldchanges
']);
100 foreach ($autoaction['fields
']['builtin
'] AS $field => $value)
102 $bugsys->in["$field"] = $value;
105 foreach ($autoaction['fields
']['custom
'] AS $field => $value)
107 $bugsys->in["field$field"] = $value;
111 // -------------------------------------------------------------------
112 // process comment stuff
113 if ($bugsys->in['comment
'])
115 if (!empty($bugsys->in['comment
']) AND $autoaction['comment
'])
117 $commenttext = $bugsys->in['comment
'] . "\n\n" . $lang->string('--------------- AUTOMATIC RESPONSE
---------------') . "\n" . $autoaction['comment
'];
119 else if (empty($bugsys->in['comment
']) AND $autoaction['comment
'])
121 $commenttext = $autoaction['comment
'];
125 $commenttext = $bugsys->in['comment
'];
128 $comment = new CommentAPI($bugsys);
129 $comment->set('bugid
', $bugsys->in['bugid
']);
130 $comment->set('userid
', $bugsys->userinfo['userid
']);
131 $comment->set('comment
', $commenttext);
134 $bugapi->set('lastposttime
', $comment->values['dateline
']);
135 $bugapi->set('lastpostby
', $bugsys->userinfo['userid
']);
136 $bugapi->set('hiddenlastposttime
', $comment->values['dateline
']);
137 $bugapi->set('hiddenlastpostby
', $bugsys->userinfo['userid
']);
139 if (!((can_perform('caneditown
', $bug['productid
']) AND $bugsys->userinfo['userid
'] == $bug['userid
']) OR (can_perform('caneditother
', $bug['productid
']) AND $bugsys->userinfo['userid
'] != $bug['userid
'])))
142 $message->redirect($lang->string('Your reply has been added to the comment
list.'), "showreport.php?bugid=$bug[bugid]");
146 // -------------------------------------------------------------------
148 $pcv = parse_pcv_select($bugsys->in['pcv_select
'], true);
150 $nocustomfields = true;
151 if ($fields = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]"))
153 $nocustomfields = false;
154 $log2->add_data(true, $fields, array('bugid
'), true, 'custom
');
157 // -------------------------------------------------------------------
160 process_custom_fields($bug['bugid
']);
162 $dependencies = preg_split('#([^0-9].*?)#', $bugsys->in['dependency'], -1, PREG_SPLIT_NO_EMPTY);
163 $dependencies = ((count($dependencies) < 1) ? '' : implode(', ', $dependencies));
165 $bugapi->set('summary', $bugsys->in
['summary']);
166 $bugapi->set('severity', $bugsys->in
['severity']);
167 $bugapi->set('duplicateof', $bugsys->in
['duplicateof']);
168 $bugapi->set('dependency', $dependencies);
169 $bugapi->set('productid', $pcv['product']);
170 $bugapi->set('componentid', $pcv['component']);
171 $bugapi->set('versionid', $pcv['version']);
172 $bugapi->set('hidden', $bugsys->in
['hidden']);
174 if (can_perform('canchangestatus', $bug['productid']))
176 $bugapi->set('priority', $bugsys->in
['priority']);
177 $bugapi->set('status', $bugsys->in
['status']);
178 $bugapi->set('resolution', $bugsys->in
['resolution']);
180 if (can_perform('canassign', $bug['productid']))
182 $bugapi->set('assignedto', $bugsys->in
['assignedto']);
185 $log2->add_data(false, $bugapi->values
, $bugfields);
189 // -------------------------------------------------------------------
192 $fields = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX
. "bugvaluefill WHERE bugid = $bug[bugid]");
193 $log2->add_data(false, $fields, array('bugid'), true, 'custom');
195 print_r($log2); exit;
197 $message->redirect($lang->string('Your changes to the bug have been saved.'), "showreport.php?bugid=$bug[bugid]");
200 /*=====================================================================*\
201 || ###################################################################
204 || ###################################################################
205 \*=====================================================================*/