r141: Convert some $show[] stuff to use the ternary operator rather than a full-blown...
[bugdar.git] / showreport.php
1 <?php
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 \*=====================================================================*/
12
13 $fetchtemplates = array(
14 'SHOWREPORT',
15 'showreport_attachment',
16 'showreport_comment'
17 );
18
19 require_once('./global.php');
20
21 if (!can_perform('canviewbugs'))
22 {
23 echo 'no permission';
24 exit;
25 }
26
27 // ###################################################################
28
29 // -------------------------------------------------------------------
30 // get the report
31 $bug = $db->query_first("
32 SELECT bug.*, user.displayname, user.email, user.showemail
33 FROM " . TABLE_PREFIX . "bug AS bug
34 LEFT JOIN " . TABLE_PREFIX . "user AS user
35 ON (bug.userid = user.userid)
36 WHERE bug.bugid = " . intval($bugsys->in['bugid'])
37 );
38
39 if (!is_array($bug))
40 {
41 echo 'alert: bad bug';
42 exit;
43 }
44
45 // -------------------------------------------------------------------
46 // prep display
47 $bug['userinfo'] = construct_user_display($bug);
48 $bug['product'] = $bugsys->datastore['product']["$bug[productid]"]['title'];
49 $bug['component'] = (($bug['componentid']) ? $bugsys->datastore['product']["$bug[componentid]"]['title'] : '');
50 $bug['version'] = $bugsys->datastore['version']["$bug[versionid]"]['version'];
51 $bug['status'] = $bugsys->datastore['status']["$bug[status]"]['status'];
52 $bug['resolution'] = $bugsys->datastore['resolution']["$bug[resolution]"]['resolution'];
53 $bug['severity'] = $bugsys->datastore['severity']["$bug[severity]"]['severity'];
54 $bug['priority'] = $bugsys->datastore['priority']["$bug[priority]"]['priority'];
55
56 $assigninfo = $bugsys->datastore['assignto']["$bug[assignedto]"];
57 $bug['assigninfo'] = ((is_array($assigninfo)) ? construct_user_display($assigninfo) : '');
58
59 $show['editreport'] = ((((can_perform('caneditown') AND $bugsys->userinfo['userid'] == $comment['userid']) OR can_perform('caneditothers')) AND can_perform('caneditinfo')) ? true : false);
60
61 // -------------------------------------------------------------------
62 // hilight
63 $words = explode(' ', $bugsys->in['hilight']);
64 foreach ($words AS $word)
65 {
66 if (trim($word))
67 {
68 $word = preg_quote($bugsys->unsanitize($word));
69 $hilight[] = $temp = trim(preg_replace('#[^0-9a-zA-Z_ ]#', '', $word));
70 }
71 }
72
73 // -------------------------------------------------------------------
74 // attachments
75 $show['getattachments'] = ((can_perform('cangetattach') OR can_perform('caneditattach')) ? true : false);
76 $show['putattachments'] = ((can_perform('canputattach') OR can_perform('caneditattach')) ? true : false);
77
78 if ($show['getattachments'] OR $show['putattachments'])
79 {
80 $attachments_fetch = $db->query("
81 SELECT attachment.*, user.email, user.showemail,
82 user.displayname
83 FROM " . TABLE_PREFIX . "attachment AS attachment
84 LEFT JOIN " . TABLE_PREFIX . "user AS user
85 ON (attachment.userid = user.userid)
86 WHERE attachment.bugid = $bug[bugid]
87 ORDER BY attachment.dateline"
88 );
89 while ($attachment = $db->fetch_array($attachments_fetch))
90 {
91 $show['editattach'] = ((can_perform('caneditattach') OR ($attachment['userid'] == $bugsys->userinfo['userid'] AND can_perform('canputattach'))) ? true : false);
92 $attachment['date'] = datelike('standard', $attachment['dateline']);
93 $attachment['user'] = construct_user_display($attachment, false);
94 eval('$attachments .= "' . $template->fetch('showreport_attachment') . '";');
95 }
96 }
97
98 // -------------------------------------------------------------------
99 // get comments
100 $comments_fetch = $db->query("
101 SELECT comment.*, user.email, user.showemail, user.displayname
102 FROM " . TABLE_PREFIX . "comment AS comment
103 LEFT JOIN " . TABLE_PREFIX . "user AS user
104 ON (comment.userid = user.userid)
105 WHERE comment.bugid = $bug[bugid]
106 ORDER BY comment.dateline ASC"
107 );
108 while ($comment = $db->fetch_array($comments_fetch))
109 {
110 $comment['posttime'] = datelike('standard', $comment['dateline']);
111 $comment['postby'] = construct_user_display($comment);
112 $show['editcomment'] = (((can_perform('caneditown') AND $bugsys->userinfo['userid'] == $comment['userid']) OR can_perform('caneditothers')) ? true : false);
113
114 if (is_array($hilight))
115 {
116 foreach ($hilight AS $id => $find)
117 {
118 $find = "#($find)#";
119 $replace = "<span style=\"background-color: yellow; font-weight: bold; color: red;\">\\1</span>";
120 $comment['comment_parsed'] = preg_replace($find, $replace, $comment['comment_parsed']);
121 }
122 }
123
124 eval('$comments .= "' . $template->fetch('showreport_comment') . '";');
125 }
126
127 $show['newreply'] = ((can_perform('canpostcomments')) ? true : false);
128
129 if (is_array($hilight))
130 {
131 foreach ($hilight AS $id => $find)
132 {
133 $find = "#($find)#";
134 $replace = "<span style=\"background-color: yellow; font-weight: bold; color: red;\">\\1</span>";
135 $bug['summary'] = preg_replace($find, $replace, $bug['summary']);
136 }
137 }
138
139 eval('$template->flush("' . $template->fetch('SHOWREPORT') . '");');
140
141 /*=====================================================================*\
142 || ###################################################################
143 || # $HeadURL$
144 || # $Id$
145 || ###################################################################
146 \*=====================================================================*/
147 ?>