r1576: Dumping the latest settings file
[bugdar.git] / search.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 'search',
24 'search_results',
25 'search_update',
26 'search_save',
27 'trackerhome_bits',
28 'list_head',
29 'pagenav_bit',
30 'pagenav'
31 );
32
33 define('SVN', '$Id$');
34
35 $focus['search'] = 'focus';
36
37 require_once('./global.php');
38 require_once('./includes/functions_product.php');
39 require_once('./includes/class_sort.php');
40 require_once('./includes/class_logging.php');
41 require_once('./includes/api_bug.php');
42 require_once('./includes/class_api_error.php');
43
44 APIError(array($message, 'error'));
45
46 if (!can_perform('cansearch'))
47 {
48 $message->errorPermission();
49 }
50
51 define('MODE_ANY', 1);
52 define('MODE_ALL', 2);
53 define('MODE_RAW', 3);
54
55 $var = $db->query_first("SHOW VARIABLES LIKE 'ft_min_word_len'");
56 define('SEARCH_WORD_MIN', $var['Value']);
57
58 $db->query("DELETE FROM " . TABLE_PREFIX . "search WHERE userid = 0 AND dateline < " . (TIMENOW - 3600));
59
60 $show['search'] = true;
61
62 // ###################################################################
63
64 if (empty($_REQUEST['do']))
65 {
66 $_REQUEST['do'] = 'search';
67 }
68
69 // ###################################################################
70
71 if ($_REQUEST['do'] == 'search')
72 {
73 if ($bugsys->in['new'])
74 {
75 $newsearch = true;
76 }
77 else if ($bugsys->in['searchid'])
78 {
79 $cachedsearch = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE searchid = " . $bugsys->input_clean('searchid', TYPE_UINT) . " AND userid = " . $bugsys->userinfo['userid']);
80 }
81 else if ($bugsys->userinfo['userid'])
82 {
83 $cachedsearch = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE name IS NULL AND userid = " . $bugsys->userinfo['userid']);
84 }
85 else
86 {
87 $newsearch = true;
88 }
89
90 if ($cachedsearch)
91 {
92 $show['cached'] = true;
93 if ($cachedsearch['dateline'] < TIMENOW - 900 OR $bugsys->in['rerun'])
94 {
95 $_REQUEST['do'] = 'process';
96 $bugsys->in = array_merge(unserialize($cachedsearch['query']), $bugsys->in);
97 $bugsys->debug('rerunning the search');
98 }
99 else
100 {
101 $search = $cachedsearch;
102 $_POST['do'] = 'results';
103 }
104 }
105 else
106 {
107 $newsearch = true;
108 }
109
110 if ($newsearch)
111 {
112 if (!is_array($bugsys->datastore['product']))
113 {
114 $message->error(_('No products are setup, therefore there can be no bugs and thus search cannot function.'));
115 }
116
117 if (!is_array($bugsys->datastore['version']))
118 {
119 $message->error(_('No versions have been added underneath your product(s), there can be no bugs and thus search cannot function.'));
120 }
121
122 $productSelect = ConstructProductSelect();
123
124 // -------------------------------------------------------------------
125 // custom fields
126 $fields = construct_custom_fields(null, true, false, true);
127 $i = 0;
128 foreach ($fields AS $field)
129 {
130 if ($i % 2 == 0)
131 {
132 $customfields['left'] .= $field;
133 }
134 else
135 {
136 $customfields['right'] .= $field;
137 }
138 $i++;
139 }
140
141 // -------------------------------------------------------------------
142 // built-in fields
143 $select['severity'] = construct_datastore_select('severity', 'severity', 'severityid');
144 $select['priority'] = construct_datastore_select('priority', 'priority', 'priorityid');
145 $select['status'] = construct_datastore_select('status', 'status', 'statusid');
146 $select['resolution'] = construct_datastore_select('resolution', 'resolution', 'resolutionid');
147
148 $searches = '';
149 if ($bugsys->userinfo['userid'])
150 {
151 $searchesFetch = $db->query("SELECT * FROM " . TABLE_PREFIX . "search WHERE name IS NOT NULL AND userid = " . $bugsys->userinfo['userid']);
152 while ($search = $db->fetch_array($searchesFetch))
153 {
154 $value = $search['searchid'];
155 $label = $search['name'];
156 eval('$searches .= "' . $template->fetch('selectoption') . '";');
157 }
158 }
159
160 $select['dev'] = '';
161 foreach ($bugsys->datastore['assignto'] AS $dev)
162 {
163 $value = $dev['userid'];
164 $label = construct_user_display($dev, false);
165 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
166 }
167
168 eval('$template->flush("' . $template->fetch('search') . '");');
169 }
170 }
171
172 // ###################################################################
173
174 if ($_REQUEST['do'] == 'process')
175 {
176 // -------------------------------------------------------------------
177 // handle keywords
178 if ($bugsys->in['summary'])
179 {
180 $keywords = preg_split('#\s+#', $bugsys->in['summary']);
181
182 // TODO - need to have some str to bool conversions
183
184 foreach ($keywords AS $word)
185 {
186 if (strlen($word) < SEARCH_WORD_MIN)
187 {
188 continue;
189 }
190
191 if ($bugsys->in['mode'] == MODE_ALL)
192 {
193 $querybuild['text'] .= " +$word";
194 }
195 else
196 {
197 $querybuild['text'] .= " $word";
198 }
199
200 if (!preg_match('#-(.+?)#', trim($word)))
201 {
202 $hilight .= " $word";
203 }
204 }
205
206 $hilight = preg_replace('#[^0-9a-zA-Z_ ]#', '', $hilight);
207 $hilight = trim($hilight);
208 $hilight = preg_replace('#\s#', '+', $hilight);
209
210 $temp = trim($querybuild['text']);
211
212 if ($bugsys->in['mode'] == MODE_ALL OR $bugsys->in['mode'] == MODE_RAW)
213 {
214 $bool_flag = ' IN BOOLEAN MODE';
215 }
216
217 $querybuild['text'] = "AND\n\t\t\t(\n\t\t\t\tMATCH (bug.summary) AGAINST ('$temp'$bool_flag)\n\t\t\t\tOR MATCH (comment.comment) AGAINST ('$temp'$bool_flag)\n\t\t\t)";
218 }
219
220 // -------------------------------------------------------------------
221 // reporter
222 if ($bugsys->in['reporter'])
223 {
224 // force email or name?? make a distinction?
225 // more elegant way to do this? probably
226 $user = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE email LIKE '%" . str_replace('%', '\%', $bugsys->input_escape('reporter')) . "' OR displayname LIKE '%" . str_replace('%', '\%', $bugsys->input_escape('reporter')) . "%'");
227 if ($user['userid'])
228 {
229 $querybuild['reporter'] = "AND bug.userid = $user[userid] OR comment.userid = $user[userid]";
230 }
231 }
232
233 // -------------------------------------------------------------------
234 // product/component/version stuff
235 if (is_array($bugsys->in['product']))
236 {
237 foreach ($bugsys->in['product'] AS $prod)
238 {
239 $product = explode(',', $prod);
240 $product = $bugsys->clean($product, TYPE_UINT);
241 $products[] = $product[0];
242 $components[] = $product[1];
243 $versions[] = $product[2];
244 }
245 $querybuild['pcv'] = "AND bug.product IN (" . implode(',', $products) . ") AND bug.component IN (" . implode(',', $components) . ") AND bug.version IN (" . implode(',', $versions) . ")";
246 }
247
248 // -------------------------------------------------------------------
249 // severity, priority, status, resolution, assignedto
250
251 // severity
252 if ($bugsys->in['severity'])
253 {
254 $bugsys->input_clean('severity', TYPE_UINT);
255 $querybuild['severity'] = "AND bug.severity IN (" . implode(',', $bugsys->in['severity']) . ")";
256 }
257
258 // priority
259 if ($bugsys->in['priority'])
260 {
261 $bugsys->input_clean('priority', TYPE_UINT);
262 $querybuild['priority'] = "AND bug.priority IN (" . implode(',', $bugsys->in['priority']) . ")";
263 }
264
265 // status
266 if ($bugsys->in['status'])
267 {
268 $bugsys->input_clean('status', TYPE_UINT);
269 $querybuild['status'] = "AND bug.status IN (" . implode(',', $bugsys->in['status']) . ")";
270 }
271
272 // resolution
273 if ($bugsys->in['resolution'])
274 {
275 $bugsys->input_clean('resolution', TYPE_UINT);
276 $querybuild['resolution'] = "AND bug.resolution IN (" . implode(',', $bugsys->in['resolution']) . ")";
277 }
278
279 // assignment
280 if ($bugsys->in['assignedto'])
281 {
282 $bugsys->input_clean('assignedto', TYPE_UINT);
283 $querybuild['assignedto'] = "AND bug.assignedto IN (" . implode(',', $bugsys->in['assignedto']) . ")";
284 }
285
286 // -------------------------------------------------------------------
287 // date
288 if ($bugsys->in['date'])
289 {
290 // now - (seconds/day * number of days)
291 $dateline = time() - ($bugsys->input_clean('date', TYPE_INT) * 3600);
292 $querybuild['date'] = "AND bug.dateline >= $dateline";
293 }
294
295 // -------------------------------------------------------------------
296 // favorites
297 $bugsys->input_clean('favorite', TYPE_INT);
298 if ($bugsys->in['favorite'] != 0 AND $bugsys->userinfo['userid'])
299 {
300 $favorites = $db->query("SELECT * FROM " . TABLE_PREFIX . "favorite WHERE userid = " . $bugsys->userinfo['userid']);
301 while ($favorite = $db->fetch_array($favorites))
302 {
303 $ids[] = $favorite['bugid'];
304 }
305 $querybuild['favorites'] = "AND bug.bugid " . ($bugsys->in['favorite'] > 0 ? "IN" : "NOT IN") . " (" . implode(', ', $ids) . ")";
306 }
307
308 // -------------------------------------------------------------------
309 // sort by
310 $sortby = array('bugid', 'severity', 'priority', 'status', 'resolution', 'dateline');
311 $orderby = array('ASC', 'DESC');
312 $bugsys->in['orderby'] = strtoupper($bugsys->in['orderby']);
313 if (in_array($bugsys->in['sortby'], $sortby) AND in_array($bugsys->in['orderby'], $orderby))
314 {
315 $sortclause = "ORDER BY " . $bugsys->in['sortby'] . ' ' . $bugsys->in['orderby'];
316 }
317 else if ($bugsys->in['sortby'] == 'relevance')
318 {
319 $sortclause = '';
320 }
321 else
322 {
323 $sortclause = '';
324 }
325
326 // -------------------------------------------------------------------
327 // custom fields
328 $fields_fetch = $bugsys->db->query("
329 SELECT bugfield.*, MAX(permission.mask) AS mask
330 FROM " . TABLE_PREFIX . "bugfield AS bugfield
331 LEFT JOIN " . TABLE_PREFIX . "bugfieldpermission AS permission
332 ON (bugfield.fieldid = permission.fieldid)
333 WHERE mask <> 0
334 AND permission.usergroupid IN ({$bugsys->userinfo['usergroupid']}" . (sizeof($bugsys->userinfo['groupids']) != 0 ? ',' . implode(',', $bugsys->userinfo['groupids']) : '') . ")
335 AND bugfield.cansearch = 1
336 GROUP BY (bugfield.fieldid)"
337 );
338 while ($field = $bugsys->db->fetch_array($fields_fetch))
339 {
340 if (!empty($bugsys->in["custom$field[fieldid]"]) OR ($field['type'] == 'select_single' AND isset($bugsys->in["custom$field[fieldid]"])))
341 {
342 if ($field['type'] == 'input_checkbox' AND $bugsys->input_clean("custom$field[fieldid]", TYPE_INT) != 0)
343 {
344 $querybuild[] = "AND bug.custom$field[fieldid] = " . ($bugsys->in["custom$field[fieldid]"] > 0 ? 1 : 0);
345 }
346 else if ($field['type'] == 'input_text')
347 {
348 $querybuild[] = "AND bug.custom$field[fieldid] LIKE '%" . $bugsys->in["custom$field[fieldid]"] . "%'";
349 }
350 else if ($field['type'] == 'select_single' AND $bugsys->in["custom$field[fieldid]"] != -1)
351 {
352 $temp = unserialize($field['selects']);
353 $querybuild[] = "AND bug.custom$field[fieldid] = '" . trim($temp[ intval($bugsys->in["custom$field[fieldid]"]) ]) . "'";
354 }
355 }
356 }
357
358 // -------------------------------------------------------------------
359 // have to search something
360 if (sizeof($querybuild) < 1)
361 {
362 $message->error(sprintf(_('You have to enter some criteria to search for. Note that words less than %1$d characters are ignored by the search engine (and some other very common words, too).'), SEARCH_WORD_MIN));
363 }
364
365 // -------------------------------------------------------------------
366 // do the search
367
368 $search = $db->query("
369 SELECT bug.*, comment.commentid
370 FROM " . TABLE_PREFIX . "bug AS bug
371 LEFT JOIN " . TABLE_PREFIX . "comment AS comment
372 ON (bug.bugid = comment.bugid)
373 WHERE bug.bugid <> 0
374 AND bug.product IN (" . fetch_on_bits('canviewbugs') . ")
375 AND
376 (
377 !bug.hidden
378 OR
379 (bug.hidden AND bug.product IN (" . fetch_on_bits('canviewhidden') . "))" . (can_perform('canviewownhidden') ? "
380 OR
381 (bug.hidden AND bug.userid = " . $bugsys->userinfo['userid'] . " AND bug.product IN (" . fetch_on_bits('canviewonhidden') . "))" : "") . "
382 )
383 " . implode("\n\t\t", $querybuild) . "
384 GROUP BY bug.bugid
385 $sortclause
386 ");
387
388 $numrows = $db->num_rows($search);
389
390 if ($numrows < 1)
391 {
392 $message->error(_('No search results were returned that matched your criteria.'));
393 }
394
395 while ($result = $db->fetch_array($search))
396 {
397 $ids[] = $result['bugid'];
398 $results[] = $result;
399 }
400
401 if ($bugsys->userinfo['userid'] AND !$cachedsearch AND !$bugsys->in['rerun'])
402 {
403 $db->query("DELETE FROM " . TABLE_PREFIX . "search WHERE userid = " . $bugsys->userinfo['userid'] . " AND name IS NULL");
404 }
405
406 // store the search params
407 $params = $bugsys->in;
408 foreach ($_COOKIE AS $key => $value)
409 {
410 unset($params["$key"]);
411 }
412
413 if ($cachedsearch)
414 {
415 $db->query("UPDATE " . TABLE_PREFIX . "search SET ids = '" . implode(',', $ids) . "', resultcount = " . sizeof($results) . ", dateline = " . TIMENOW . " WHERE searchid = " . $cachedsearch['searchid']);
416 $search = $cachedsearch;
417 }
418 else
419 {
420 $db->query("
421 INSERT INTO " . TABLE_PREFIX . "search
422 (userid, dateline, query, ids, orderby, hilight, resultcount)
423 VALUES
424 (" . $bugsys->userinfo['userid'] . ",
425 " . TIMENOW . ", '" . $bugsys->escape(serialize($params)) . "',
426 '" . implode(',', $ids) . "', '" . $bugsys->escape($sortclause) . "',
427 '" . $bugsys->escape($hilight) . "',
428 " . sizeof($results) . "
429 )"
430 );
431 $search = array('searchid' => $db->insert_id(), 'ids' => implode(',', $ids), 'orderby' => $sortclause, 'hilight' => $hilight, 'resultcount' => sizeof($results));
432 }
433
434 $_POST['do'] = 'results';
435 }
436
437 // ###################################################################
438
439 if ($_REQUEST['do'] == 'update')
440 {
441 $search = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE searchid = " . $bugsys->input_clean('searchid', TYPE_UINT) . " AND userid = " . $bugsys->userinfo['userid']);
442 if (!$search OR !can_perform('caneditother'))
443 {
444 $message->errorPermission();
445 }
446
447 $productSelect = ConstructProductSelect();
448
449 $show['update'] = true;
450
451 // -------------------------------------------------------------------
452 // custom fields
453 $fields = construct_custom_fields(null, true, false, true);
454 $i = 0;
455 foreach ($fields AS $field)
456 {
457 if ($i % 2 == 0)
458 {
459 $customfields['left'] .= $field;
460 }
461 else
462 {
463 $customfields['right'] .= $field;
464 }
465 $i++;
466 }
467
468 // -------------------------------------------------------------------
469 // built-in fields
470 $select['severity'] = construct_datastore_select('severity', 'severity', 'severityid', 0, 0);
471 $select['priority'] = construct_datastore_select('priority', 'priority', 'priorityid', 0, 0);
472 $select['status'] = construct_datastore_select('status', 'status', 'statusid', 0, 0);
473 $select['resolution'] = construct_datastore_select('resolution', 'resolution', 'resolutionid', 0, 0);
474
475 $select['dev'] = '';
476 $value = '0';
477 $label = '';
478 $selected = true;
479 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
480 $selected = false;
481 foreach ($bugsys->datastore['assignto'] AS $dev)
482 {
483 $value = $dev['userid'];
484 $label = construct_user_display($dev, false);
485 eval('$select[dev] .= "' . $template->fetch('selectoption') . '";');
486 }
487
488 eval('$template->flush("' . $template->fetch('search_update') . '");');
489 }
490
491 // ###################################################################
492
493 if ($_POST['do'] == 'doupdate')
494 {
495 $search = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE searchid = " . $bugsys->input_clean('searchid', TYPE_UINT) . " AND userid = " . $bugsys->userinfo['userid']);
496 if (!$search OR !can_perform('caneditother'))
497 {
498 $message->errorPermission();
499 }
500
501 // find all the bugs that we can edit
502 $bugs = $db->query("
503 SELECT * FROM " . TABLE_PREFIX . "bug
504 WHERE bugid IN ($search[ids])
505 AND product IN (" . fetch_on_bits('canviewbugs') . ")
506 AND
507 (
508 product IN (" . fetch_on_bits('caneditother') . ")
509 OR
510 (userid = " . $bugsys->userinfo['userid'] . " AND product IN (" . fetch_on_bits('caneditown') . "))
511 )
512 ");
513 while ($bug = $db->fetch_array($bugs))
514 {
515 if (!((can_perform('caneditown', $bug['product']) AND $bugsys->userinfo['userid'] == $bug['userid']) OR (can_perform('caneditother', $bug['product']) AND $bugsys->userinfo['userid'] != $bug['userid'])) AND !can_perform('canpostcomments', $bug['product']))
516 {
517 continue;
518 }
519
520 $api = new BugApi($bugsys);
521 $api->set('bugid', $bug['bugid']);
522 $api->set_condition();
523 $api->values = $bug;
524
525 $log = new Logging();
526 $log->set_bugid($bug['bugid']);
527 $log->add_data(true, $bug, $log->getCommonFields(), true);
528
529 if ($bugsys->in['status'] AND can_perform('canchangestatus', $bug['product']))
530 {
531 $api->set('status', $bugsys->in['status']);
532 }
533 if ($bugsys->in['priority'] AND can_perform('canchangestatus', $bug['product']))
534 {
535 $api->set('priority', $bugsys->in['priority']);
536 }
537 if ($bugsys->in['severity'])
538 {
539 $api->set('severity', $bugsys->in['severity']);
540 }
541 if ($bugsys->in['resolution'] AND can_perform('canchangestatus', $bug['product']))
542 {
543 $api->set('resolution', $bugsys->in['resolution']);
544 }
545 if ($bugsys->in['assignedto'] AND can_perform('canassign', $bug['product']))
546 {
547 $api->set('assignedto', $bugsys->in['assignedto']);
548 }
549 if ($bugsys->in['product'])
550 {
551 $product = explode(',', $bugsys->in['product']);
552 $api->set('product', $product[0]);
553 $api->set('component', $product[1]);
554 $api->set('version', $product[2]);
555 }
556
557 process_custom_fields($api, $message, false, true);
558
559 $log->add_data(false, $api->values, $log->getCommonFields(), true);
560
561 $api->update();
562 $log->update_history();
563 }
564
565 $message->redirect(_('The specified bugs have been updated and you will now return to your search results.'), 'search.php?searchid=' . $bugsys->in['searchid']);
566 }
567
568 // ###################################################################
569
570 if ($_REQUEST['do'] == 'export')
571 {
572 if (!$bugsys->in['searchid'] AND $bugsys->userinfo['userid'])
573 {
574 $search = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE name IS NULL AND userid = " . $bugsys->userinfo['userid']);
575 }
576 else if ($bugsys->in['searchid'])
577 {
578 $search = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE searchid = " . $bugsys->input_clean('searchid', TYPE_UINT) . " AND userid = " . $bugsys->userinfo['userid']);
579 }
580 else
581 {
582 $message->error(_('The search results are trying to export are invalid. Please start over <a href="search.php?new=1">here</a> and try again.'));
583 }
584
585 if (!$search)
586 {
587 $message->error(_('Your search has expired because it is older than one hour. Please start over <a href="search.php?new=1">here</a>.'));
588 }
589
590 $bugs = $db->query("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid IN ($search[ids]) $search[orderby]");
591
592 $xml = '<?xml version="1.0" encoding="' . $language['charset'] . '"?>
593
594 <bugdarExport user="' . $bugsys->unsanitize(construct_user_display($bugsys->userinfo, false)) . '" date="' . $datef->format('r', TIMENOW) . '" searchid="' . $search['searchid'] . '">';
595
596 while ($bug = $db->fetch_array($bugs))
597 {
598 $xml .= "\n\t<bug>";
599
600 ProcessBugDataForDisplay(&$bug);
601
602 $xml .= "\n\t\t<id>" . $bug['bugid'] . "</id>";
603 $xml .= "\n\t\t<dateReported>" . $datef->format('r', $bug['dateline']) . "</dateReported>";
604 if ($bug['userid'])
605 {
606 $xml .= "\n\t\t<reporter>" . construct_user_display($db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $bug[userid]"), false) . "</reporter>";
607 }
608 $xml .= "\n\t\t<summary>" . $bug['summary'] . "</summary>";
609 $xml .= "\n\t\t<product>" . $bug['product'] . "</product>";
610 if ($bug['component'])
611 {
612 $xml .= "\n\t\t<component>" . $bug['component'] . "</component>";
613 }
614 $xml .= "\n\t\t<version>" . $bug['version'] . "</version>";
615 $xml .= "\n\t\t<status>" . $bug['status'] . "</status>";
616 if ($bug['assignedto'])
617 {
618 $xml .= "\n\t\t<assignedTo>" . construct_user_display($bugsys->datastore['assignto']["$bug[assignedto]"], false) . "</assignedTo>";
619 }
620 $xml .= "\n\t\t<resolution>" . $bug['resolution'] . "</resolution>";
621 $xml .= "\n\t\t<severity>" . $bug['severity'] . "</severity>";
622 $xml .= "\n\t\t<priority>" . $bug['priority'] . "</priority>";
623
624 $xml .= "\n\t</bug>";
625 }
626
627 $xml .= "\n</bugdarExport>";
628
629 $funct->download_file($xml, _('bugdar-search-' . $search['searchid'] . '.xml'), true);
630 }
631
632 // ###################################################################
633
634 if ($_POST['do'] == 'dosave')
635 {
636 $search = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "search WHERE searchid = " . $bugsys->input_clean('searchid', TYPE_UINT) . " AND userid = " . $bugsys->userinfo['userid']);
637 if (!$search)
638 {
639 $message->addError(_('The search does not exist.'));
640 }
641 if ($search['name'])
642 {
643 $message->addError(sprintf(_('This search has already been named "%1$s".'), $search['name']));
644 }
645 if (empty($bugsys->in['name']))
646 {
647 $message->addError(_('The name cannot be empty.'));
648 }
649
650 if (!$message->hasErrors())
651 {
652 $db->query("UPDATE " . TABLE_PREFIX . "search SET name = '" . $bugsys->input_escape('name') . "' WHERE searchid = " . $bugsys->in['searchid']);
653 $message->redirect(_('Your search has been saved.'), 'search.php?searchid=' . $search['searchid']);
654 }
655 else
656 {
657 $_REQUEST['do'] = 'save';
658 $show['errors'] = true;
659 }
660 }
661
662 // ###################################################################
663
664 if ($_REQUEST['do'] == 'save')
665 {
666 if (!$bugsys->userinfo['userid'])
667 {
668 $message->errorPermission();
669 }
670
671 eval('$template->flush("' . $template->fetch('search_save') . '");');
672 }
673
674 // ###################################################################
675
676 if ($_POST['do'] == 'results')
677 {
678 if (!$search['ids'])
679 {
680 $message->error(_('No bugs matched your search criteria. Please <a href="search.php?new=1">try again</a> with different search requirements.'));
681 }
682
683 $searchid = $search['searchid'];
684 $hilight = $search['hilight'];
685
686 LoadPaginationFramework();
687 $pagination->setTotal($search['resultcount']);
688 $pagination->splitPages();
689
690 $sort = new ListSorter('search');
691
692 $show['save'] = ($bugsys->userinfo['userid'] AND !$search['name']);
693 $show['update'] = can_perform('caneditother');
694
695 $bugs = '';
696 $search = $db->query("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid IN ($search[ids]) $search[orderby] LIMIT " . $pagination->fetchLimit($pagination->getPage() - 1) . ", " . $pagination->getPerPage());
697 while ($bug = $db->fetch_array($search))
698 {
699 $funct->exec_swap_bg('altcolor', '');
700 $bug = ProcessBugDataForDisplay($bug, $funct->bgcolour);
701 $bugs .= $sort->constructRow($bug, "&amp;hilight=$hilight");
702 }
703
704 $columnHeads = $sort->constructColumnHeaders(false);
705 $show['pagenav'] = ($pagination->getPageCount() > 1);
706 $pagenav = $pagination->constructPageNav('search.php?searchid=' . $searchid);
707
708 eval('$template->flush("' . $template->fetch('search_results') . '");');
709 }
710
711 /*=====================================================================*\
712 || ###################################################################
713 || # $HeadURL$
714 || # $Id$
715 || ###################################################################
716 \*=====================================================================*/
717 ?>