r859: - Adding some notification implementation to the notice_*() functions
[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/class_notification.php');
29 require_once('./includes/api_bug.php');
30 require_once('./includes/api_comment.php');
31
32 $bug = $db->query_first("
33 SELECT bugvaluefill.*, bug.*, user.email, user.displayname, user.showemail
34 FROM " . TABLE_PREFIX . "bug AS bug
35 LEFT JOIN " . TABLE_PREFIX . "user AS user
36 ON (bug.userid = user.userid)
37 LEFT JOIN " . TABLE_PREFIX . "bugvaluefill AS bugvaluefill
38 ON (bug.bugid = bugvaluefill.bugid)
39 WHERE bug.bugid = " . intval($bugsys->in['bugid'])
40 );
41
42 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 {
44 $message->error_permission();
45 }
46
47 if (!$bug)
48 {
49 $message->error($lang->getlex('error_invalid_id'));
50 }
51
52 if ($bug['hidden'] AND !can_perform('canviewhidden', $bug['productid']))
53 {
54 $message->error_permission();
55 }
56
57 // setup logging
58 require_once('./includes/class_logging.php');
59 $log = new Logging;
60 $log->set_bugid($bug['bugid']);
61
62 $bugfields = array(
63 'duplicateof',
64 'dependency',
65 'hidden',
66 'summary',
67 'status',
68 'severity',
69 'priority',
70 'versionid' => 'version',
71 'assignedto' => 'assignto',
72 'resolution',
73 'productid' => 'product',
74 'componentid' => 'component'
75 );
76
77 $notif = new NotificationCenter;
78
79 // ###################################################################
80
81 if ($_POST['do'] == 'update')
82 {
83 $bugapi = new BugAPI($bugsys);
84 $bugapi->set('bugid', $bugsys->in['bugid']);
85 $bugapi->set_condition();
86 $bugapi->dorelations = array();
87 $bugapi->fetch();
88
89 $log->add_data(true, $bugapi->objdata, $bugfields);
90
91 // -------------------------------------------------------------------
92 // handle autoaction
93 $autoaction = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "autoaction WHERE actionid = " . $bugsys->input_clean('autoaction', TYPE_UINT));
94 if ($autoaction)
95 {
96 $autoaction['fields'] = unserialize($autoaction['fieldchanges']);
97
98 foreach ($autoaction['fields']['builtin'] AS $field => $value)
99 {
100 $bugsys->in["$field"] = $value;
101 }
102
103 foreach ($autoaction['fields']['custom'] AS $field => $value)
104 {
105 $bugsys->in["field$field"] = $value;
106 }
107 }
108
109 // -------------------------------------------------------------------
110 // process comment stuff
111 if ($bugsys->in['comment'])
112 {
113 if (!empty($bugsys->in['comment']) AND $autoaction['comment'])
114 {
115 $commenttext = $bugsys->in['comment'] . "\n\n" . $lang->string('--------------- AUTOMATIC RESPONSE ---------------') . "\n" . $autoaction['comment'];
116 }
117 else if (empty($bugsys->in['comment']) AND $autoaction['comment'])
118 {
119 $commenttext = $autoaction['comment'];
120 }
121 else
122 {
123 $commenttext = $bugsys->in['comment'];
124 }
125
126 $comment = new CommentAPI($bugsys);
127 $comment->set('bugid', $bugsys->in['bugid']);
128 $comment->set('userid', $bugsys->userinfo['userid']);
129 $comment->set('comment', $commenttext);
130 $comment->insert();
131
132 $notif->send_new_comment_notice($comment->values);
133
134 $bugapi->set('lastposttime', $comment->values['dateline']);
135 $bugapi->set('lastpostby', $bugsys->userinfo['userid']);
136 $bugapi->set('lastpostbyname', $bugsys->userinfo['displayname']);
137 $bugapi->set('hiddenlastposttime', $comment->values['dateline']);
138 $bugapi->set('hiddenlastpostby', $bugsys->userinfo['userid']);
139 $bugapi->set('hiddenlastpostbyname', $bugsys->userinfo['displayname']);
140
141 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 {
143 $bugapi->update();
144 $message->redirect($lang->string('Your reply has been added to the comment list.'), "showreport.php?bugid=$bug[bugid]");
145 }
146 }
147
148 // -------------------------------------------------------------------
149 // do update stuff
150 $pcv = parse_pcv_select($bugsys->in['pcv_select'], true);
151
152 if ($fields = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]"))
153 {
154 $log->add_data(true, $fields, array('bugid'), true, 'custom');
155 }
156
157 // -------------------------------------------------------------------
158 // start updates
159
160 process_custom_fields($bug['bugid']);
161
162 $dependencies = preg_split('#([^0-9].*?)#', $bugsys->in['dependency'], -1, PREG_SPLIT_NO_EMPTY);
163 $dependencies = ((count($dependencies) < 1) ? '' : implode(', ', $dependencies));
164
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']);
173
174 if (can_perform('canchangestatus', $bug['productid']))
175 {
176 $bugapi->set('priority', $bugsys->in['priority']);
177 $bugapi->set('status', $bugsys->in['status']);
178 $bugapi->set('resolution', $bugsys->in['resolution']);
179 }
180 if (can_perform('canassign', $bug['productid']))
181 {
182 $bugapi->set('assignedto', $bugsys->in['assignedto']);
183 }
184
185 $log->add_data(false, $bugapi->values, $bugfields);
186
187 $bugapi->update();
188
189 // -------------------------------------------------------------------
190 // do diff history
191
192 $fields = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]");
193 $log->add_data(false, $fields, array('bugid'), true, 'custom');
194
195 $log->update_history();
196
197 $notif->send_bug_changes_notice($bugapi->objdata, $bugapi->values);
198
199 print_r($notif);
200
201 $message->redirect($lang->string('Your changes to the bug have been saved.'), "showreport.php?bugid=$bug[bugid]");
202 }
203
204 /*=====================================================================*\
205 || ###################################################################
206 || # $HeadURL$
207 || # $Id$
208 || ###################################################################
209 \*=====================================================================*/
210 ?>