2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
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 // ###################################################################
24 * Constructs HTML code <select>s from an array. You use they keys when
25 * you need to access a multi-dimensional array of data.
29 * @param string HTML name of the select
30 * @param array Array of <option>s
31 * @param integer ID of the selected item, 0 for none
32 * @param string Name of the index where values are stored in the $array
33 * @param string Name of the iddex where the labels are stored in $array
34 * @param bool Value of the blank option, FALSE turns it off
35 * @param bool Construct a multiple-selection <select> menu and append "[]" to the end of the name
37 * @return string Constructed HTML output
39 function construct_option_select($name, $array, $selected = 0, $valuekey = '', $labelkey = '', $includenil = false, $multiple = false)
45 $selected = explode(',', $selected);
48 // if we're not working on a boolean false, we use it for the value (allows -1 and 0)
49 if ($includenil !== false)
51 $opts[] = '<option value="' . $includenil . '"' . ((!$selected OR (is_array($selected) AND in_array($includenil, $selected))) ? ' selected="selected"' : '') . '> ---------</option>';
53 foreach ($array AS $value => $label)
55 $newval = ($valuekey ? $label["$valuekey"] : $value);
56 $newlab = ($labelkey ? $label["$labelkey"] : $label);
57 $opts[] = '<option value="' . $newval . '"' . (($selected == $newval OR (is_array($selected) AND in_array($newval, $selected))) ? ' selected="selected"' : '') . '>' . $newlab . '</option>';
59 return '<select class="input" name="' . $name . ($multiple ? '[]' : '') . '"' . ($multiple ? ' multiple="multiple" size="' . (sizeof($array) < 8 ? sizeof($array) +
1 : 8) . '"' : '') . '>' . implode("\n\t", $opts) . "\r</select>";
62 // ################### Start construct_user_display ##################
63 // $userinfo needs userid, email, displayname, and showemail
64 function construct_user_display($userinfo, $html = true)
68 if (!$userinfo['userid'])
70 $userinfo['displayname'] = $bugsys->lang
->string('Guest');
71 $userinfo['showemail'] = false;
76 eval('$username = "' . $bugsys->template
->fetch('username_display') . '";');
80 if ($userinfo['showemail'])
82 $username = sprintf($bugsys->lang
->string('%1$s <%2$s>'), $userinfo['displayname'], $userinfo['email']);
86 $username = $userinfo['displayname'];
93 // ######################## Start can_perform ########################
94 // short-hand for bitwise &
95 function can_perform($bitmask, $productid = 0, $userinfo = null)
99 if ($userinfo == null)
101 $userinfo =& $bugsys->userinfo
;
104 if (!isset($bugsys->permissions
["$bitmask"]))
106 trigger_error('Invalid bitmask "' . $bitmask . '" specified for can_perform() [includes/functions.php]', E_USER_WARNING);
109 if (!$userinfo['permissions'])
111 $userinfo['permissions'] = (int)$bugsys->datastore['usergroup']["$userinfo[usergroupid
]"]['permissions'];
114 if ($productid AND isset($bugsys->datastore['permission']["$userinfo[usergroupid
]"]["$productid"]))
116 $inspecific = array('cansearch', 'canbeassignedto', 'canadminpanel', 'canadminbugs', 'canadminfields', 'canadminversions', 'canadminusers', 'canadmingroups', 'canadmintools');
118 if (!in_array($bitmask, $inspecific))
120 $bugsys->debug("verdict* on can_perform($bitmask, $productid, $userinfo[userid]) = " . ($bugsys->datastore
['permission']["$userinfo[usergroupid]"]["$productid"] & $bugsys->permissions["$bitmask"]));
121 return ($bugsys->datastore
['permission']["$userinfo[usergroupid]"]["$productid"] & $bugsys->permissions["$bitmask"]);
125 $bugsys->debug("verdict on can_perform($bitmask, $productid, $userinfo[userid]) = " . ($userinfo['permissions'] & $bugsys->permissions
["$bitmask"]));
126 return ($userinfo['permissions'] & $bugsys->permissions["$bitmask"]);
129 // ###################################################################
131 * Runs through a given datastore item and creates a series of <select>
136 * @param string Datastore name
137 * @param string Array index for the label
138 * @param string Array index for the value
139 * @param mixed The selected value(s)
140 * @param bool Include a blank option? TRUE will set a null value, FALSE turns it off, anything else is used as the value for the blank option
141 * @param bool Generate it using admin printers?
143 * @return string Unelss in admin mode, returns the constructed options
145 function construct_datastore_select($datastore, $labelname, $valuename, $selectedvalue = 0, $includeblank = false, $adminmode = false)
156 if ($includeblank === true OR $includeblank !== false)
158 $newval = ($inclueblank === true ? '' : $includeblank);
161 $admin->list_item('', '', ((!$selectedvalue OR (is_array($selectedvalue) AND in_array($newval, $selectedvalue))) ? true : false));
167 $selected = ((!$selectedvalue OR (is_array($selectedvalue) AND in_array($newval, $selectedvalue))) ? true : false);
168 eval('$select .= "' . $bugsys->template
->fetch('selectoption') . '";');
172 foreach ($bugsys->datastore
["$datastore"] AS $item)
174 $label = $item["$labelname"];
175 $value = $item["$valuename"];
176 $selected = (($value == $selectedvalue OR (is_array($selectedvalue) AND in_array($value, $selectedvalue))) ? true : false);
180 $admin->list_item($label, $value, $selected);
184 eval('$select .= "' . $bugsys->template->fetch('selectoption
') . '";');
194 // ################## Start construct_custom_fields ##################
195 function construct_custom_fields($bug = array(), $ignore21mask = false, $nodefault = false)
200 if (!is_array($fields))
203 $fields_fetch = $bugsys->db->query("
204 SELECT bugfield
.*, permission
.mask
205 FROM
" . TABLE_PREFIX . "bugfield
AS bugfield
206 LEFT JOIN
" . TABLE_PREFIX . "bugfieldpermission
AS permission
207 ON (bugfield
.fieldid
= permission
.fieldid
)
208 WHERE (permission
.mask
= 2 OR permission
.mask
= 1)
209 AND permission
.usergroupid
= {$bugsys
->userinfo
['usergroupid']}"
211 while ($field = $bugsys->db->fetch_array($fields_fetch))
213 $fields["$field[fieldid
]"] = $field;
217 $fieldvalues = $bugsys->db->query_first("SELECT
* FROM
" . TABLE_PREFIX . "bugvaluefill WHERE bugid
= " . $bugsys->clean($bug['bugid'], TYPE_UINT));
219 $fieldbits = array();
221 foreach ($fields AS $field)
225 $field['defaultvalue'] = '';
228 if (!is_null($bug["field
$field[fieldid
]"]))
230 $bugsys->debug("not
null: $field[fieldid
]");
231 $value = $bug["field
$field[fieldid
]"];
235 $value = $field['defaultvalue'];
238 if ($ignore21mask AND $field['mask'] != 0)
243 if ($field['mask'] == 2)
245 switch ($field['type'])
248 eval('$tempfield = "' . $bugsys->template->fetch('bugfield_input_text
') . '";');
251 case 'input_checkbox':
252 $selected = (($value) ? ' checked="checked
"' : '');
253 eval('$tempfield = "' . $bugsys->template->fetch('bugfield_input_checkbox
') . '";');
256 case 'select_single':
257 $selects = unserialize($field['selects']);
258 $value = trim($value);
264 if (!$field['usedefault'] AND !trim($value))
266 $selected = ' selected="selected
"';
272 eval('$options .= "' . $bugsys->template->fetch('bugfield_select_single_option
') . '";');
274 foreach ($selects AS $id => $select)
277 $select = stripslashes(trim($select));
278 if ($select == $value)
280 $selected = ' selected="selected
"';
282 else if ($field['usedefault'] AND $id == 0)
284 $selected = ' selected="selected
"';
286 eval('$options .= "' . $bugsys->template->fetch('bugfield_select_single_option
') . '";');
288 eval('$tempfield = "' . $bugsys->template->fetch('bugfield_select_single
') . '";');
294 $bugsys->debug('mask 1 processing');
295 if (is_null($fieldvalues["field
$field[fieldid
]"]))
297 $bugsys->debug("is
null: $field[fieldid
]");
298 if ($field['type'] == 'select_single')
300 if ($field['usedefault'])
302 $temp = unserialize($field['selects']);
303 $value = trim($temp[0]);
307 $value = $fieldvalues["field
$field[fieldid
]"];
312 $value = $field['defaultvalue'];
317 $value = $fieldvalues["field
$field[fieldid
]"];
320 if ($field['type'] == 'input_checkbox')
322 $value = (($value) ? 'True' : 'False');
324 $field['value'] = $value;
325 eval('$tempfield = "' . $bugsys->template->fetch('bugfield_static_text
') . '";');
327 $fieldbits[] = $tempfield;
333 // ################### Start process_custom_fields ###################
334 function process_custom_fields($bugid, $inputdata = array())
340 $inputdata =& $bugsys->in;
343 $fields = $bugsys->db->query("
345 FROM
" . TABLE_PREFIX . "bugfield
AS bugfield
346 LEFT JOIN
" . TABLE_PREFIX . "bugfieldpermission
AS permission
347 ON (bugfield
.fieldid
= permission
.fieldid
)
348 WHERE permission
.mask
= 2
349 AND permission
.usergroupid
= {$bugsys
->userinfo
['usergroupid']}"
351 while ($field = $bugsys->db->fetch_array($fields))
353 if ($field['type'] == 'input_checkbox')
355 $fieldbuild[] = 'field' . $field['fieldid'];
356 if (isset($inputdata["field
$field[fieldid
]"]))
367 if ($field['required'] AND empty($inputdata["field
$field[fieldid
]"]))
369 $errorlist[] = sprintf($bugsys->lang->string('The "%
1$s" field is a required field
.'), $field['name
']);
373 if (isset($inputdata["field$field[fieldid]"]))
375 $fieldbuild[] = 'field
' . $field['fieldid
'];
377 if ($field['type
'] == 'input_text
')
379 $fieldvalue[] = "'" . $inputdata["field
$field[fieldid
]"] . "'";
383 if ($inputdata["field$field[fieldid]"] == -1)
385 $fieldvalue[] = "''";
389 $temp = unserialize($field['selects
']);
390 $fieldvalue[] = "'" . trim($temp[ intval($inputdata["field
$field[fieldid
]"]) ]) . "'";
400 if (sizeof($fieldbuild) < 1)
405 $bugsys->db->query("REPLACE INTO " . TABLE_PREFIX . "bugvaluefill (bugid, " . implode(', ', $fieldbuild) . ") VALUES ($bugid, " . implode(', ', $fieldvalue) . ")");
408 // ####################### Start fetch_on_bits #######################
409 function fetch_on_bits($mask, $userinfo = null)
413 if ($userinfo == null)
415 $userinfo =& $bugsys->userinfo;
420 $usergroupid = $userinfo['usergroupid
'];
422 if ($bugsys->datastore['usergroup
']["$usergroupid"]['permissions
'] & $bugsys->permissions["$mask"] AND is_array($bugsys->datastore['product
']))
424 foreach ($bugsys->datastore['product
'] AS $id => $product)
426 if (!$product['componentmother
'])
428 $onbits["$id"] = $id;
433 if (is_array($bugsys->datastore['permission
']["$usergroupid"]))
435 foreach ($bugsys->datastore['permission
']["$usergroupid"] AS $productid => $bit)
437 if ($bit & $bugsys->permissions["$mask"])
439 $onbits["$productid"] = $productid;
443 if ($onbits["$productid"])
445 unset($onbits["$productid"]);
451 if (sizeof($onbits) < 1)
456 return implode(',', $onbits);
459 // #################### Start isso_pre_parse_hook ####################
460 // the pre-parse hook for ISSO's template engine
461 function isso_pre_parse_hook($template)
463 $template = preg_replace('#\$help\[(.*)\]#', '" . fetch_help_link("\1") . "', $template);
467 // ###################### Start fetch_help_link ######################
468 // returns a prepared link to insert into templates that opens up a
469 // help popup in the user-end
470 function fetch_help_link($topic)
474 if (isset($bugsys->datastore
['help']["$topic"]))
476 eval('$temp = "' . $bugsys->template->fetch('help_link
') . '";');
483 return "[[INVALID TOPIC
: $topic]]";
488 return eval('$temp = "' . $bugsys->template->fetch('help_link
') . '";');
493 // ###################################################################
495 * Returns a user array of information that is specific to all visiting
496 * users (guests). This can then be passed to any function that requires
501 * @return array User information array
503 function fetch_guest_user()
513 'permissions' => $bugsys->datastore['usergroup'][1]['permissions'],
514 'displaytitle' => $bugsys->datastore['usergroup'][1]['displaytitle'],
518 // ###################################################################
520 * Does an exhaustive permissions check on the bug. It checks for hidden
521 * bug status and ability to view hidden bugs. This normally was done
522 * at the top of each page, but it got so big, it was moved to a function.
526 * @param array Bug array
527 * @param array Alternate user array
529 * @return bool Does the user have permission
531 function check_bug_permissions($bug, $userinfo = null)
534 if ($userinfo == null)
536 $userinfo = $bugsys->userinfo;
539 $bugsys->debug("checking permissions
for $userinfo[userid
] on bug
$bug[bugid
]");
541 $bugsys->debug('*** START VERBOSE CHECK ***');
543 $bugsys->debug('* !can_perform(canviewbugs, $bug[product], $userinfo) = ' . (int)(!can_perform('canviewbugs', $bug['product'], $userinfo)));
544 $bugsys->debug('* $bug[hidden] = ' . (int)$bug['hidden']);
545 $bugsys->debug('* $userinfo[userid] (' . $userinfo['userid'] . ') == $bug[userid] (' . $bug['userid'] . ') = ' . (int)($userinfo['userid'] == $bug['userid']));
546 $bugsys->debug('* can_perform(canviewownhidden, $bug[product], $userinfo) = ' . (int)(!!can_perform('canviewownhidden', $bug['product'], $userinfo)));
547 $bugsys->debug('* can_perform(canviewhidden, $bug[product], $userinfo) = ' . (int)(!!can_perform('canviewhidden', $bug['product'], $userinfo)));
548 $bugsys->debug('* !$bug[hidden] = ' . (int)(!$bug['hidden']));
550 $bugsys->debug('*** END PERMISSIONS CHECK ***');
554 !can_perform('canviewbugs', $bug['product'], $userinfo)
561 ($userinfo['userid'] == $bug['userid'] AND can_perform('canviewownhidden', $bug['product'], $userinfo))
563 can_perform('canviewhidden', $bug['product'], $userinfo)
571 $bugsys->debug('*** DONE WITH REAL CALLS ***');
575 $bugsys->debug('*** DONE WITH REAL CALLS ***');
580 /*=====================================================================*\
581 || ###################################################################
584 || ###################################################################
585 \*=====================================================================*/