r844: Removing the complex joins for bugs by caching user information on
[bugdar.git] / newreport.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 $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/api_bug.php');
33 require_once('./includes/api_comment.php');
34
35 if (!can_perform('cansubmitbugs', intval($bugsys->in['productid'])))
36 {
37 $message->error_permission();
38 }
39
40 // ###################################################################
41
42 if (empty($_REQUEST['do']))
43 {
44 $_REQUEST['do'] = 'add';
45 }
46
47 // ###################################################################
48
49 if ($_POST['do'] == 'insert')
50 {
51 $bug = new BugAPI($bugsys);
52 $comment = new CommentAPI($bugsys);
53
54 $bug->set('userid', $bugsys->userinfo['userid']);
55 $bug->set('username', $bugsys->userinfo['displayname']);
56 $bug->set('summary', $bugsys->in['summary']);
57 $bug->set('severity', $bugsys->in['severity']);
58
59 $comment->set('userid', $bugsys->userinfo['userid']);
60 $comment->set('comment', $bugsys->in['comment']);
61
62 // -------------------------------------------------------------------
63 // check permissions on various input values
64 if (!can_perform('canchangestatus', intval($bugsys->in['productid'])))
65 {
66 $bug->set('priority', $bugsys->options['defaultpriority']);
67 $bug->set('status', $bugsys->options['defaultstatus']);
68 $bug->set('resolution', $bugsys->options['defaultresolve']);
69 }
70 else
71 {
72 $bug->set('priority', $bugsys->in['priority']);
73 $bug->set('status', $bugsys->in['status']);
74 $bug->set('resolution', $bugsys->in['resolution']);
75 }
76 if (!can_perform('canassign', intval($bugsys->in['productid'])))
77 {
78 $bug->set('assignedto', $bugsys->options['defaultassign']);
79 }
80 else
81 {
82 // assigned person is not a dev or a valid user
83 $bug->set('assignedto', $bugsys->in['assignedto']);
84 }
85
86 // -------------------------------------------------------------------
87 // product/component/version stuff
88 $pcv = parse_pcv_select($bugsys->in['pcv_select'], true);
89 if (!$pcv)
90 {
91 $message->add_error($lang->string('Invalid product/component/version selected.'));
92 }
93 $bug->set('productid', $pcv['product']);
94 $bug->set('componentid', $pcv['component']);
95 $bug->set('versionid', $pcv['version']);
96
97 if (!$message->items)
98 {
99 $bug->insert();
100
101 $comment->set('bugid', $bug->insertid);
102 $comment->insert();
103
104 $bug = new BugAPI($bugsys); // need to destroy because update will think the insert fields need to be changed, too
105 $bug->set('bugid', $comment->values['bugid']);
106 $bug->set_condition();
107 $bug->set('dateline', $comment->values['dateline']);
108 $bug->set('initialreport', $comment->insertid);
109 $bug->set('lastposttime', $comment->values['dateline']);
110 $bug->set('lastpostby', $bugsys->userinfo['userid']);
111 $bug->set('lastpostbyname', $bugsys->userinfo['displayname']);
112 $bug->set('hiddenlastposttime', $comment->values['dateline']);
113 $bug->set('hiddenlastpostby', $bugsys->userinfo['userid']);
114 $bug->set('hiddenlastpostbyname', $bugsys->userinfo['displayname']);
115 $bug->update();
116
117 $message->redirect($lang->string('The bug has been added to the database.'), ($bugsys->in['submit_reload'] == '' ? "showreport.php?bugid=" . $bug->values['bugid'] : 'newreport.php'));
118 }
119 else
120 {
121 $show['errors'] = true;
122 $_REQUEST['do'] = 'add';
123 $message->error_list_process();
124 }
125 }
126
127 // ###################################################################
128
129 if ($_REQUEST['do'] == 'add')
130 {
131 $select['severity'] = construct_datastore_select('severity', 'severity', 'severityid', ($bugsys->in['severity'] ? $bugsys->in['severity'] : $bugsys->options['defaultseverity']));
132
133 $show['changestatus'] = ((can_perform('canchangestatus')) ? true : false);
134
135 if (can_perform('canchangestatus'))
136 {
137 $select['priority'] = construct_datastore_select('priority', 'priority', 'priorityid', ($bugsys->in['priority'] ? $bugsys->in['priority'] : $bugsys->options['defaultpriority']));
138 $select['status'] = construct_datastore_select('status', 'status', 'statusid', ($bugsys->in['status'] ? $bugsys->in['status'] : $bugsys->options['defaultstatus']));
139 $select['resolution'] = construct_datastore_select('resolution', 'resolution', 'resolutionid', ($bugsys->in['resolution'] ? $bugsys->in['resolution'] : $bugsys->options['defaultresolve']));
140 }
141
142 $show['assign'] = ((can_perform('canassign')) ? true : false);
143
144 if (can_perform('canassign'))
145 {
146 foreach ($bugsys->datastore['assignto'] AS $dev)
147 {
148 $value = $dev['userid'];
149 $label = construct_user_display($dev, false);
150 $selected = ($bugsys->in['assignedto'] ? ($bugsys->in['assignedto'] == $dev['userid']) : ($dev['userid'] == $bugsys->options['defaultassign']));
151 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
152 }
153 }
154
155 // custom fields
156 $fields = construct_custom_fields(null, true);
157 $i = 0;
158 foreach ($fields AS $field)
159 {
160 if ($i % 2 == 0)
161 {
162 $customfields['left'] .= $field;
163 }
164 else
165 {
166 $customfields['right'] .= $field;
167 }
168 $i++;
169 }
170
171 $pcv_select = construct_pcv_select('cansubmitbugs', $bugsys->in['pcv_select']);
172
173 $reporter = construct_user_display($bugsys->userinfo);
174
175 eval('$template->flush("' . $template->fetch('newreport') . '");');
176 }
177
178 /*=====================================================================*\
179 || ###################################################################
180 || # $HeadURL$
181 || # $Id$
182 || ###################################################################
183 \*=====================================================================*/
184 ?>