r775: Implementing the comment API
[bugdar.git] / editreport.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
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.
10 || #
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
14 || # more details.
15 || #
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 \*=====================================================================*/
21
22 define('SVN', '$Id$');
23
24 $focus['showreport'] = 'focus';
25
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');
30
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'])
39 );
40
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']))
42 {
43 $message->error_permission();
44 }
45
46 if (!$bug)
47 {
48 $message->error($lang->getlex('error_invalid_id'));
49 }
50
51 if ($bug['hidden'] AND !can_perform('canviewhidden', $bug['productid']))
52 {
53 $message->error_permission();
54 }
55
56 // setup logging
57 require_once('./includes/class_history.php');
58 $log = new History();
59 $log->bugid = $bug['bugid'];
60
61 // ###################################################################
62
63 if ($_POST['do'] == 'update')
64 {
65 // -------------------------------------------------------------------
66 // process comment stuff
67 if (!((can_perform('caneditown', $bug['productid']) AND $bugsys->userinfo['userid'] == $bug['userid']) OR (can_perform('caneditother', $bug['productid']) AND $bugsys->userinfo['userid'] != $bug['userid'])))
68 {
69 $hascomment = (!empty($bugsys->in['comment'])) ? true : false;
70
71 if ($hascomment OR $autoaction['comment'])
72 {
73 if ($hascomment AND $autoaction['comment'])
74 {
75 $bugsys->in['comment'] .= "\n\n" . $lang->string('--------------- AUTOMATIC RESPONSE ---------------') . "\n" . $autoaction['comment'];
76 }
77 else if (!$hascomment AND $autoaction['comment'])
78 {
79 $bugsys->in['comment'] = $autoaction['comment'];
80 }
81
82 $comment = new CommentAPI($bugsys);
83 $comment->set('bugid', $bugsys->in['bugid']);
84 $comment->set('userid', $bugsys->userinfo['userid']);
85 $comment->set('comment', $_POST['comment']);
86 $comment->insert();
87
88 $time = $comment->values['dateline'];
89 $commentid = $comment->insertid;
90
91 $db->query("
92 UPDATE " . TABLE_PREFIX . "bug
93 SET lastposttime = $time,
94 lastpostby = " . $bugsys->userinfo['userid'] . ",
95 hiddenlastposttime = $time,
96 hiddenlastpostby = " . $bugsys->userinfo['userid'] . "
97 WHERE bugid = " . intval($bugsys->in['bugid'])
98 );
99
100 if ($hascomment)
101 {
102 $log->arguments = array($commentid);
103 $log->log();
104 }
105 }
106
107 $message->redirect($lang->string('Your reply has been added to the comment list.'), "showreport.php?bugid=$bug[bugid]");
108 }
109
110 // -------------------------------------------------------------------
111 // do update stuff
112 $pcv = parse_pcv_select($bugsys->in['pcv_select'], true);
113
114 if (!$bugsys->in['summary'])
115 {
116 $message->error($lang->string('You need to enter a summary for this bug.'));
117 }
118 if (!$pcv)
119 {
120 $message->error($lang->string('Invalid product/component/version selected.'));
121 }
122
123 $hist[0] = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $bug[bugid]");
124 $hist2[0] = (array)$temp = $noinitialcustom = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]");
125
126 // -------------------------------------------------------------------
127 // start updates
128
129 // auto action
130 $autoaction = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "autoaction WHERE actionid = " . intval($bugsys->in['autoaction']));
131 if ($autoaction)
132 {
133 $autoaction['fields'] = unserialize($autoaction['fieldchanges']);
134
135 foreach ($autoaction['fields']['builtin'] AS $field => $value)
136 {
137 $bugsys->in["$field"] = $value;
138 }
139
140 foreach ($autoaction['fields']['custom'] AS $field => $value)
141 {
142 $bugsys->in["field$field"] = $value;
143 }
144 }
145
146 process_custom_fields($bug['bugid']);
147
148 $dependencies = preg_split('#([^0-9].*?)#', $bugsys->in['dependency'], -1, PREG_SPLIT_NO_EMPTY);
149 $dependencies = ((count($dependencies) < 1) ? '' : implode(', ', $dependencies));
150
151 $db->query("
152 UPDATE " . TABLE_PREFIX . "bug
153 SET summary = '" . $bugsys->in['summary'] . "',
154 severity = " . intval($bugsys->in['severity']) . "," .
155 (can_perform('canchangestatus', $bug['productid']) ? "
156 priority = " . intval($bugsys->in['priority']) . ",
157 status = " . intval($bugsys->in['status']) . ",
158 resolution = " . intval($bugsys->in['resolution']) . ","
159 : '') . "
160 " . (can_perform('canassign', $bug['productid']) ? "assignedto = " . intval($bugsys->in['assignedto']) . "," : '') . "
161 duplicateof = " . intval($bugsys->in['duplicateof']) . ",
162 dependency = '$dependencies',
163 productid = " . $pcv['product'] . ",
164 componentid = " . $pcv['component'] . ",
165 versionid = " . $pcv['version'] . ",
166 hidden = " . intval($bugsys->in['hidden']) . "
167 WHERE bugid = $bug[bugid]"
168 );
169
170 // -------------------------------------------------------------------
171 // do diff history
172
173 $hist[1] = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $bug[bugid]");
174 $hist2[1] = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]");
175
176 $diff[0] = array_diff_assoc($hist[0], $hist[1]);
177 $diff[1] = array_diff_assoc($hist[1], $hist[0]);
178
179 $lookupindex = array(
180 'status' => 'status',
181 'severity' => 'severity',
182 'priority' => 'priority',
183 'versionid' => 'version',
184 'assignedto' => 'assignto',
185 'resolution' => 'resolution',
186 'productid' => 'product',
187 'componentid' => 'product'
188 );
189
190 foreach ($diff AS $num => $diffs)
191 {
192 foreach ($diffs AS $key => $value)
193 {
194 if (!isset($lookupindex["$key"]))
195 {
196 continue;
197 }
198
199 $ref = $lookupindex["$key"];
200 $temp =& $bugsys->datastore["$ref"]["$value"];
201 $thevalue = $temp["$ref"];
202 $idbit = ' (id: ' . $temp["$ref" . 'id'] . ')';
203
204 if ($key == 'assignedto')
205 {
206 $thevalue = (($temp['userid']) ? construct_user_display($temp) : '');
207 $idbit = '';
208 }
209 else if ($key == 'productid' OR $key == 'componentid')
210 {
211 $ref = 'product';
212 $thevalue = $temp['title'];
213 }
214
215 $diff["$num"]["$key"] = (($thevalue) ? $thevalue . $idbit : '');
216 }
217 }
218
219 foreach ($diff[1] AS $key => $value)
220 {
221 $log->log($log->diff($key, $diff[0]["$key"], $diff[1]["$key"]));
222 }
223
224 $diff2[0] = array_diff_assoc($hist2[0], $hist2[1]);
225 $diff2[1] = array_diff_assoc($hist2[1], $hist2[0]);
226
227 if ($noinitialcustom === false)
228 {
229 $canallowempty = true;
230 $checkbox = $db->query("SELECT * FROM " . TABLE_PREFIX . "bugfield WHERE type = 'input_checkbox'");
231 while ($box = $db->fetch_array($checkbox))
232 {
233 $boxlist[] = 'field' . $box['fieldid'];
234 }
235 }
236
237 foreach ($diff2[1] AS $key => $value)
238 {
239 if (in_array($key, $boxlist) AND $canallowempty)
240 {
241 $log->allowempty = true;
242 }
243 else
244 {
245 $log->allowempty = false;
246 }
247
248 if ($key == 'bugid')
249 {
250 continue;
251 }
252
253 $log->log($log->diff('custom_' . $key, $diff2[0]["$key"], $diff2[1]["$key"]));
254 }
255
256 $log->allowempty = false;
257
258 // -------------------------------------------------------------------
259 // more comment
260 $hascomment = (!empty($bugsys->in['comment'])) ? true : false;
261
262 if ($hascomment OR $autoaction['comment'])
263 {
264 if ($hascomment AND $autoaction['comment'])
265 {
266 $bugsys->in['comment'] .= "\n\n" . $lang->string('--------------- AUTOMATIC RESPONSE ---------------') . "\n" . $autoaction['comment'];
267 }
268 else if (!$hascomment AND $autoaction['comment'])
269 {
270 $bugsys->in['comment'] = $autoaction['comment'];
271 }
272
273 $comment = new CommentAPI($bugsys);
274 $comment->set('bugid', $bugsys->in['bugid']);
275 $comment->set('userid', $bugsys->userinfo['userid']);
276 $comment->set('comment', $bugsys->in['comment']);
277 $comment->insert();
278
279 $time = $comment->values['dateline'];
280 $commentid = $comment->insertid;
281
282 $db->query("
283 UPDATE " . TABLE_PREFIX . "bug
284 SET lastposttime = $time,
285 lastpostby = " . $bugsys->userinfo['userid'] . ",
286 hiddenlastposttime = $time,
287 hiddenlastpostby = " . $bugsys->userinfo['userid'] . "
288 WHERE bugid = " . intval($bugsys->in['bugid'])
289 );
290 }
291
292
293 $message->redirect($lang->string('Your changes to the bug have been saved.'), "showreport.php?bugid=$bug[bugid]");
294 }
295
296 /*=====================================================================*\
297 || ###################################################################
298 || # $HeadURL$
299 || # $Id$
300 || ###################################################################
301 \*=====================================================================*/
302 ?>