r1389: Forgot to add the template diff
[bugdar.git] / newreport.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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 $fetchtemplates = array(
23 'newreport',
24 );
25
26 define('SVN', '$Id$');
27
28 $focus['newreport'] = 'focus';
29
30 require_once('./global.php');
31 require_once('./includes/functions_product.php');
32 require_once('./includes/class_notification.php');
33 require_once('./includes/api_bug.php');
34 require_once('./includes/api_comment.php');
35
36 require_once('./includes/class_api_error.php');
37 APIError(array(new API_Error_Handler($message), 'user_cumulative'));
38
39 $bugsys->input_clean('product', TYPE_UINT);
40 if (!can_perform('cansubmitbugs', $bugsys->in['product']))
41 {
42 $message->error_permission();
43 }
44
45 // ###################################################################
46
47 if (empty($_REQUEST['do']))
48 {
49 $_REQUEST['do'] = 'add';
50 }
51
52 // ###################################################################
53
54 if ($_POST['do'] == 'insert')
55 {
56 $bug = new BugAPI($bugsys);
57 $comment = new CommentAPI($bugsys);
58
59 $notif = new NotificationCenter;
60
61 $bug->set('userid', $bugsys->userinfo['userid']);
62 $bug->set('username', $bugsys->userinfo['displayname']);
63 $bug->set('summary', $bugsys->in['summary']);
64 $bug->set('severity', $bugsys->in['severity']);
65
66 $comment->set('userid', $bugsys->userinfo['userid']);
67 $comment->set('comment', $bugsys->in['comment']);
68
69 // -------------------------------------------------------------------
70 // check permissions on various input values
71 if (!can_perform('canchangestatus', $bugsys->in['product']))
72 {
73 $bug->set('priority', $bugsys->options['defaultpriority']);
74 $bug->set('status', $bugsys->options['defaultstatus']);
75 $bug->set('resolution', $bugsys->options['defaultresolve']);
76 }
77 else
78 {
79 $bug->set('priority', $bugsys->in['priority']);
80 $bug->set('status', $bugsys->in['status']);
81 $bug->set('resolution', $bugsys->in['resolution']);
82 }
83 if (!can_perform('canassign', $bugsys->in['product']))
84 {
85 $bug->set('assignedto', $bugsys->options['defaultassign']);
86 }
87 else
88 {
89 // assigned person is not a dev or a valid user
90 $bug->set('assignedto', $bugsys->in['assignedto']);
91 }
92
93 // -------------------------------------------------------------------
94 // product/component/version stuff
95 $pcv = parse_pcv_select($bugsys->in['pcv_select'], true);
96 if (!$pcv)
97 {
98 $message->add_error(_('Invalid product/component/version selected.'));
99 }
100 $bug->set('product', $pcv['product']);
101 $bug->set('component', $pcv['component']);
102 $bug->set('version', $pcv['version']);
103
104 $cfields = process_custom_fields(null, $message, true);
105
106 if (!$message->items)
107 {
108 $bug->insert();
109
110 $comment->set('bugid', $bug->insertid);
111 $comment->insert();
112
113 $notif->send_new_bug_notice($bug->values, $comment->values);
114
115 $bug = new BugAPI($bugsys); // need to destroy because update will think the insert fields need to be changed, too
116 $bug->dorelations = array();
117 $bug->set('bugid', $comment->values['bugid']);
118 $bug->set_condition();
119 $bug->fetch();
120 $bug->set('dateline', $comment->values['dateline']);
121 $bug->set('initialreport', $comment->insertid);
122 $bug->set('lastposttime', $comment->values['dateline']);
123 $bug->set('lastpostby', $bugsys->userinfo['userid']);
124 $bug->set('lastpostbyname', $bugsys->userinfo['displayname']);
125 $bug->set('hiddenlastposttime', $comment->values['dateline']);
126 $bug->set('hiddenlastpostby', $bugsys->userinfo['userid']);
127 $bug->set('hiddenlastpostbyname', $bugsys->userinfo['displayname']);
128 $bug->update();
129
130 if ($cfields)
131 {
132 $db->query(sprintf($cfields, $comment->values['bugid']));
133 }
134
135 $notif->set_bug_data($bug->objdata);
136
137 $notif->finalize();
138
139 $message->redirect(_('The bug has been added to the database.'), ($bugsys->in['submit_reload'] == '' ? "showreport.php?bugid=" . $bug->values['bugid'] : 'newreport.php'));
140 }
141 else
142 {
143 $show['errors'] = true;
144 $_REQUEST['do'] = 'add';
145 $message->error_list_process();
146 }
147 }
148
149 // ###################################################################
150
151 if ($_REQUEST['do'] == 'add')
152 {
153 if (!is_array($bugsys->datastore['product']))
154 {
155 $message->error(_('No products have been setup, therefore no bugs can be added.'));
156 }
157 if (!is_array($bugsys->datastore['version']))
158 {
159 $message->error(_('No versions have been setup underneath your product(s), therefore no bugs can be added.'));
160 }
161
162 $select['severity'] = construct_datastore_select('severity', 'severity', 'severityid', ($bugsys->in['severity'] ? $bugsys->in['severity'] : $bugsys->options['defaultseverity']));
163
164 $show['changestatus'] = ((can_perform('canchangestatus')) ? true : false);
165
166 if (can_perform('canchangestatus'))
167 {
168 $select['priority'] = construct_datastore_select('priority', 'priority', 'priorityid', ($bugsys->in['priority'] ? $bugsys->in['priority'] : $bugsys->options['defaultpriority']));
169 $select['status'] = construct_datastore_select('status', 'status', 'statusid', ($bugsys->in['status'] ? $bugsys->in['status'] : $bugsys->options['defaultstatus']));
170 $select['resolution'] = construct_datastore_select('resolution', 'resolution', 'resolutionid', ($bugsys->in['resolution'] ? $bugsys->in['resolution'] : $bugsys->options['defaultresolve']));
171 }
172
173 $show['assign'] = ((can_perform('canassign')) ? true : false);
174
175 if (can_perform('canassign'))
176 {
177 foreach ($bugsys->datastore['assignto'] AS $dev)
178 {
179 $value = $dev['userid'];
180 $label = construct_user_display($dev, false);
181 $selected = ($bugsys->in['assignedto'] ? ($bugsys->in['assignedto'] == $dev['userid']) : ($dev['userid'] == $bugsys->options['defaultassign']));
182 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
183 }
184 }
185
186 // custom fields
187 $fields = construct_custom_fields($bugsys->in, true);
188 $i = 0;
189 foreach ($fields AS $field)
190 {
191 if ($i % 2 == 0)
192 {
193 $customfields['left'] .= $field;
194 }
195 else
196 {
197 $customfields['right'] .= $field;
198 }
199 $i++;
200 }
201
202 $pcv_select = construct_pcv_select('cansubmitbugs', $bugsys->in['pcv_select']);
203
204 $reporter = construct_user_display($bugsys->userinfo);
205
206 eval('$template->flush("' . $template->fetch('newreport') . '");');
207 }
208
209 /*=====================================================================*\
210 || ###################################################################
211 || # $HeadURL$
212 || # $Id$
213 || ###################################################################
214 \*=====================================================================*/
215 ?>