r1048: Converting all $lang->string() stuff to use the gettext call
[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 if (!$message->items)
105 {
106 $bug->insert();
107
108 $comment->set('bugid', $bug->insertid);
109 $comment->insert();
110
111 $notif->send_new_bug_notice($bug->values, $comment->values);
112
113 $bug = new BugAPI($bugsys); // need to destroy because update will think the insert fields need to be changed, too
114 $bug->dorelations = array();
115 $bug->set('bugid', $comment->values['bugid']);
116 $bug->set_condition();
117 $bug->fetch();
118 $bug->set('dateline', $comment->values['dateline']);
119 $bug->set('initialreport', $comment->insertid);
120 $bug->set('lastposttime', $comment->values['dateline']);
121 $bug->set('lastpostby', $bugsys->userinfo['userid']);
122 $bug->set('lastpostbyname', $bugsys->userinfo['displayname']);
123 $bug->set('hiddenlastposttime', $comment->values['dateline']);
124 $bug->set('hiddenlastpostby', $bugsys->userinfo['userid']);
125 $bug->set('hiddenlastpostbyname', $bugsys->userinfo['displayname']);
126 $bug->update();
127
128 $notif->set_bug_data($bug->objdata);
129
130 $notif->finalize();
131
132 $message->redirect(_('The bug has been added to the database.'), ($bugsys->in['submit_reload'] == '' ? "showreport.php?bugid=" . $bug->values['bugid'] : 'newreport.php'));
133 }
134 else
135 {
136 $show['errors'] = true;
137 $_REQUEST['do'] = 'add';
138 $message->error_list_process();
139 }
140 }
141
142 // ###################################################################
143
144 if ($_REQUEST['do'] == 'add')
145 {
146 $select['severity'] = construct_datastore_select('severity', 'severity', 'severityid', ($bugsys->in['severity'] ? $bugsys->in['severity'] : $bugsys->options['defaultseverity']));
147
148 $show['changestatus'] = ((can_perform('canchangestatus')) ? true : false);
149
150 if (can_perform('canchangestatus'))
151 {
152 $select['priority'] = construct_datastore_select('priority', 'priority', 'priorityid', ($bugsys->in['priority'] ? $bugsys->in['priority'] : $bugsys->options['defaultpriority']));
153 $select['status'] = construct_datastore_select('status', 'status', 'statusid', ($bugsys->in['status'] ? $bugsys->in['status'] : $bugsys->options['defaultstatus']));
154 $select['resolution'] = construct_datastore_select('resolution', 'resolution', 'resolutionid', ($bugsys->in['resolution'] ? $bugsys->in['resolution'] : $bugsys->options['defaultresolve']));
155 }
156
157 $show['assign'] = ((can_perform('canassign')) ? true : false);
158
159 if (can_perform('canassign'))
160 {
161 foreach ($bugsys->datastore['assignto'] AS $dev)
162 {
163 $value = $dev['userid'];
164 $label = construct_user_display($dev, false);
165 $selected = ($bugsys->in['assignedto'] ? ($bugsys->in['assignedto'] == $dev['userid']) : ($dev['userid'] == $bugsys->options['defaultassign']));
166 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
167 }
168 }
169
170 // custom fields
171 $fields = construct_custom_fields(null, true);
172 $i = 0;
173 foreach ($fields AS $field)
174 {
175 if ($i % 2 == 0)
176 {
177 $customfields['left'] .= $field;
178 }
179 else
180 {
181 $customfields['right'] .= $field;
182 }
183 $i++;
184 }
185
186 $pcv_select = construct_pcv_select('cansubmitbugs', $bugsys->in['pcv_select']);
187
188 $reporter = construct_user_display($bugsys->userinfo);
189
190 eval('$template->flush("' . $template->fetch('newreport') . '");');
191 }
192
193 /*=====================================================================*\
194 || ###################################################################
195 || # $HeadURL$
196 || # $Id$
197 || ###################################################################
198 \*=====================================================================*/
199 ?>