r811: More logging... man this must be bad for the environment. End deforestation...
[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 // setup new logging
62 require_once('./includes/class_logging.php');
63 $log2 = new Logging;
64 $log2->set_bugid($bug['bugid']);
65
66 $bugfields = array(
67 'duplicateof',
68 'dependency',
69 'hidden',
70 'summary',
71 'status',
72 'severity',
73 'priority',
74 'versionid' => 'version',
75 'assignedto' => 'assignto',
76 'resolution',
77 'productid' => 'product',
78 'componentid' => 'component'
79 );
80
81 // ###################################################################
82
83 if ($_POST['do'] == 'update')
84 {
85 $bugapi = new BugAPI($bugsys);
86 $bugapi->set('bugid', $bugsys->in['bugid']);
87 $bugapi->set_condition();
88 $bugapi->dorelations = array();
89 $bugapi->fetch();
90
91 $log2->add_data(true, $bugapi->objdata, $bugfields);
92
93 // -------------------------------------------------------------------
94 // handle autoaction
95 $autoaction = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "autoaction WHERE actionid = " . $bugsys->input_clean('autoaction', TYPE_UINT));
96 if ($autoaction)
97 {
98 $autoaction['fields'] = unserialize($autoaction['fieldchanges']);
99
100 foreach ($autoaction['fields']['builtin'] AS $field => $value)
101 {
102 $bugsys->in["$field"] = $value;
103 }
104
105 foreach ($autoaction['fields']['custom'] AS $field => $value)
106 {
107 $bugsys->in["field$field"] = $value;
108 }
109 }
110
111 // -------------------------------------------------------------------
112 // process comment stuff
113 if ($bugsys->in['comment'])
114 {
115 if (!empty($bugsys->in['comment']) AND $autoaction['comment'])
116 {
117 $commenttext = $bugsys->in['comment'] . "\n\n" . $lang->string('--------------- AUTOMATIC RESPONSE ---------------') . "\n" . $autoaction['comment'];
118 }
119 else if (empty($bugsys->in['comment']) AND $autoaction['comment'])
120 {
121 $commenttext = $autoaction['comment'];
122 }
123 else
124 {
125 $commenttext = $bugsys->in['comment'];
126 }
127
128 $comment = new CommentAPI($bugsys);
129 $comment->set('bugid', $bugsys->in['bugid']);
130 $comment->set('userid', $bugsys->userinfo['userid']);
131 $comment->set('comment', $commenttext);
132 $comment->insert();
133
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']);
138
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'])))
140 {
141 $bugapi->update();
142 $message->redirect($lang->string('Your reply has been added to the comment list.'), "showreport.php?bugid=$bug[bugid]");
143 }
144 }
145
146 // -------------------------------------------------------------------
147 // do update stuff
148 $pcv = parse_pcv_select($bugsys->in['pcv_select'], true);
149
150 $nocustomfields = true;
151 if ($fields = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]"))
152 {
153 $nocustomfields = false;
154 $log2->add_data(true, $fields, array('bugid'), true, 'custom', '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 $log2->add_data(false, $bugapi->values, $bugfields);
186
187
188 //$bugapi->update();
189
190 // -------------------------------------------------------------------
191 // do diff history
192
193 $hist[1] = (array)$db->query_first("SELECT * FROM " . TABLE_PREFIX . "bugvaluefill WHERE bugid = $bug[bugid]");
194
195 if ($noinitialcustom === false)
196 {
197 $canallowempty = true;
198 $checkbox = $db->query("SELECT * FROM " . TABLE_PREFIX . "bugfield WHERE type = 'input_checkbox'");
199 while ($box = $db->fetch_array($checkbox))
200 {
201 $boxlist[] = 'field' . $box['fieldid'];
202 }
203 }
204
205 $log2->add_data(false, $hist[1], array('bugid'), true, 'custom', 'custom');
206
207 print_r($log2); exit;
208
209 $message->redirect($lang->string('Your changes to the bug have been saved.'), "showreport.php?bugid=$bug[bugid]");
210 }
211
212 /*=====================================================================*\
213 || ###################################################################
214 || # $HeadURL$
215 || # $Id$
216 || ###################################################################
217 \*=====================================================================*/
218 ?>