2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
13 $fetchtemplates = array(
18 define('SVN', '$Id$');
20 require_once('./global.php
');
22 if (!can_perform('cansubmitbugs
'))
24 $message->error_permission();
27 // ###################################################################
29 if (empty($_REQUEST['do']))
31 $_REQUEST['do'] = 'add
';
34 // ###################################################################
36 if ($_POST['do'] == 'insert
')
38 // -------------------------------------------------------------------
39 // check permissions on various input values
40 if (!can_perform('canchangestatus
'))
42 $bugsys->in['priority
'] = $bugsys->options['defaultpriority
'];
43 $bugsys->in['status
'] = $bugsys->options['defaultstatus
'];
44 $bugsys->in['resolution
'] = $bugsys->options['defaultresolve
'];
48 if (!$bugsys->datastore['priority
'][ $bugsys->in['priority
'] ])
50 $bugsys->in['priority
'] = $bugsys->options['defaultpriority
'];
52 if (!$bugsys->datastore['status
'][ $bugsys->in['status
'] ])
54 $bugsys->in['status
'] = $bugsys->options['defaultstatus
'];
56 if (!$bugsys->datastore['resolution
'][ $bugsys->in['resolution
'] ])
58 $bugsys->in['resolution
'] = $bugsys->options['defaultresolve
'];
61 if (!can_perform('canassign
'))
63 $bugsys->in['assignedto
'] = $bugsys->options['defaultassign
'];
67 // assigned person is not a dev or a valid user
68 if (!$bugsys->datastore['assignto
'][ $bugsys->in['assignedto
'] ]['userid
'])
70 $bugsys->in['assignedto
'] = $bugsys->options['defaultassign
'];
74 // -------------------------------------------------------------------
75 // product/component/version stuff
76 $pcv = parse_pcv_select($bugsys->in['pcv_select
'], true);
80 // -------------------------------------------------------------------
84 $message->error('there was a problem selecting the product
, component
, or version
');
86 if (!$bugsys->in['summary
'])
88 $message->error('please enter a bug title
');
90 if (!$bugsys->in['comment
'])
92 $message->error('please enter a bug description
');
95 // -------------------------------------------------------------------
96 // data clean and insert
97 $bugsys->in['comment_parsed
'] = $bugsys->in['comment
'];
99 if (!$bugsys->options['allowhtml
'])
101 $bugsys->in['comment_parsed
'] = $bugsys->sanitize($bugsys->in['comment_parsed
']);
104 // create the bug report
106 INSERT INTO " . TABLE_PREFIX . "bug
107 (userid, productid, componentid, versionid, summary, severity, priority, status, assignedto, resolution)
109 (" . $bugsys->userinfo['userid
'] . ", " . $pcv['product
'] . ", " . $pcv['component
'] . ", " . $pcv['version
'] . ",
110 '" . $bugsys->in['summary'] . "', " . intval($bugsys->in['severity
']) . ", " . intval($bugsys->in['priority
']) . ",
111 " . intval($bugsys->in['status
']) . ", " . intval($bugsys->in['assignedto
']) . ", " . intval($bugsys->in['resolution
']) . "
115 $bugid = $db->insert_id();
119 // insert the comment to the database
121 INSERT INTO " . TABLE_PREFIX . "comment
122 (bugid, userid, dateline, comment, comment_parsed)
124 ($bugid, " . $bugsys->userinfo['userid
'] . ",
125 $time, '" . $bugsys->in['comment'] . "',
126 '" . nl2br($bugsys->in['comment_parsed']) . "'
130 $initialreport = $db->insert_id();
133 UPDATE " . TABLE_PREFIX . "bug
134 SET dateline = $time,
135 initialreport = $initialreport,
136 lastposttime = $time,
137 lastpostby = " . $bugsys->userinfo['userid
'] . ",
138 hiddenlastposttime = $time,
139 hiddenlastpostby = " . $bugsys->userinfo['userid
'] . "
140 WHERE bugid = $bugid"
143 $message->redirect('bug is done
!', "showreport.php?bugid=$bugid");
146 // ###################################################################
148 if ($_REQUEST['do'] == 'add
')
150 $select['severity
'] = construct_datastore_select('severity
', 'severity
', 'severityid
');
152 $show['changestatus
'] = ((can_perform('canchangestatus
')) ? true : false);
154 if (can_perform('canchangestatus
'))
156 $select['priority
'] = construct_datastore_select('priority
', 'priority
', 'priorityid
');
157 $select['status
'] = construct_datastore_select('status
', 'status
', 'statusid
');
158 $select['resolution
'] = construct_datastore_select('resolution
', 'resolution
', 'resolutionid
');
161 $show['assign
'] = ((can_perform('canassign
')) ? true : false);
163 if (can_perform('canassign
'))
165 foreach ($bugsys->datastore['assignto
'] AS $dev)
167 $value = $dev['userid
'];
168 $label = construct_user_display($dev, false);
169 eval('$select[dev
] .= "' . $template->fetch('selectoption') . '";');
173 $pcv_select = construct_pcv_select();
175 eval('$template->flush("' . $template->fetch('newreport') . '");');
178 /*=====================================================================*\
179 || ###################################################################
182 || ###################################################################
183 \*=====================================================================*/