2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
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.
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
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 \*=====================================================================*/
22 $fetchtemplates = array(
26 define('SVN', '$Id$');
28 $focus['newreport
'] = 'focus
';
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
');
36 if (!can_perform('cansubmitbugs
', intval($bugsys->in['productid
'])))
38 $message->error_permission();
41 // ###################################################################
43 if (empty($_REQUEST['do']))
45 $_REQUEST['do'] = 'add
';
48 // ###################################################################
50 if ($_POST['do'] == 'insert
')
52 $bug = new BugAPI($bugsys);
53 $comment = new CommentAPI($bugsys);
55 $notif = new NotificationCenter;
57 $bug->set('userid
', $bugsys->userinfo['userid
']);
58 $bug->set('username
', $bugsys->userinfo['displayname
']);
59 $bug->set('summary
', $bugsys->in['summary
']);
60 $bug->set('severity
', $bugsys->in['severity
']);
62 $comment->set('userid
', $bugsys->userinfo['userid
']);
63 $comment->set('comment
', $bugsys->in['comment
']);
65 // -------------------------------------------------------------------
66 // check permissions on various input values
67 if (!can_perform('canchangestatus
', intval($bugsys->in['productid
'])))
69 $bug->set('priority
', $bugsys->options['defaultpriority
']);
70 $bug->set('status
', $bugsys->options['defaultstatus
']);
71 $bug->set('resolution
', $bugsys->options['defaultresolve
']);
75 $bug->set('priority
', $bugsys->in['priority
']);
76 $bug->set('status
', $bugsys->in['status
']);
77 $bug->set('resolution
', $bugsys->in['resolution
']);
79 if (!can_perform('canassign
', intval($bugsys->in['productid
'])))
81 $bug->set('assignedto
', $bugsys->options['defaultassign
']);
85 // assigned person is not a dev or a valid user
86 $bug->set('assignedto
', $bugsys->in['assignedto
']);
89 // -------------------------------------------------------------------
90 // product/component/version stuff
91 $pcv = parse_pcv_select($bugsys->in['pcv_select
'], true);
94 $message->add_error($lang->string('Invalid product
/component
/version selected
.'));
96 $bug->set('productid
', $pcv['product
']);
97 $bug->set('componentid
', $pcv['component
']);
98 $bug->set('versionid
', $pcv['version
']);
100 if (!$message->items)
104 $comment->set('bugid
', $bug->insertid);
107 $notif->send_new_bug_notice($bug->values, $comment->values);
109 $bug = new BugAPI($bugsys); // need to destroy because update will think the insert fields need to be changed, too
110 $bug->set('bugid
', $comment->values['bugid
']);
111 $bug->set_condition();
112 $bug->set('dateline
', $comment->values['dateline
']);
113 $bug->set('initialreport
', $comment->insertid);
114 $bug->set('lastposttime
', $comment->values['dateline
']);
115 $bug->set('lastpostby
', $bugsys->userinfo['userid
']);
116 $bug->set('lastpostbyname
', $bugsys->userinfo['displayname
']);
117 $bug->set('hiddenlastposttime
', $comment->values['dateline
']);
118 $bug->set('hiddenlastpostby
', $bugsys->userinfo['userid
']);
119 $bug->set('hiddenlastpostbyname
', $bugsys->userinfo['displayname
']);
122 $message->redirect($lang->string('The bug has been added to the database
.'), ($bugsys->in['submit_reload
'] == '' ? "showreport.php?bugid=" . $bug->values['bugid
'] : 'newreport
.php
'));
126 $show['errors
'] = true;
127 $_REQUEST['do'] = 'add
';
128 $message->error_list_process();
132 // ###################################################################
134 if ($_REQUEST['do'] == 'add
')
136 $select['severity
'] = construct_datastore_select('severity
', 'severity
', 'severityid
', ($bugsys->in['severity
'] ? $bugsys->in['severity
'] : $bugsys->options['defaultseverity
']));
138 $show['changestatus
'] = ((can_perform('canchangestatus
')) ? true : false);
140 if (can_perform('canchangestatus
'))
142 $select['priority
'] = construct_datastore_select('priority
', 'priority
', 'priorityid
', ($bugsys->in['priority
'] ? $bugsys->in['priority
'] : $bugsys->options['defaultpriority
']));
143 $select['status
'] = construct_datastore_select('status
', 'status
', 'statusid
', ($bugsys->in['status
'] ? $bugsys->in['status
'] : $bugsys->options['defaultstatus
']));
144 $select['resolution
'] = construct_datastore_select('resolution
', 'resolution
', 'resolutionid
', ($bugsys->in['resolution
'] ? $bugsys->in['resolution
'] : $bugsys->options['defaultresolve
']));
147 $show['assign
'] = ((can_perform('canassign
')) ? true : false);
149 if (can_perform('canassign
'))
151 foreach ($bugsys->datastore['assignto
'] AS $dev)
153 $value = $dev['userid
'];
154 $label = construct_user_display($dev, false);
155 $selected = ($bugsys->in['assignedto
'] ? ($bugsys->in['assignedto
'] == $dev['userid
']) : ($dev['userid
'] == $bugsys->options['defaultassign
']));
156 eval('$select[dev
] .= "' . $template->fetch('selectoption') . '";');
161 $fields = construct_custom_fields(null, true);
163 foreach ($fields AS $field)
167 $customfields['left
'] .= $field;
171 $customfields['right
'] .= $field;
176 $pcv_select = construct_pcv_select('cansubmitbugs
', $bugsys->in['pcv_select
']);
178 $reporter = construct_user_display($bugsys->userinfo);
180 eval('$template->flush("' . $template->fetch('newreport') . '");');
183 /*=====================================================================*\
184 || ###################################################################
187 || ###################################################################
188 \*=====================================================================*/