r1587: Adding the release preparation script
[bugdar.git] / vote.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright ©2002-2007 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 2 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 define('SVN', '$Id$');
23
24 $focus['showreport'] = 'focus';
25
26 require_once('./global.php');
27
28 // ###################################################################
29
30 if (empty($_REQUEST['do']))
31 {
32 $message->error(L_INVALID_ID);
33 }
34
35 // ###################################################################
36
37 if ($_REQUEST['do'] == 'vote')
38 {
39 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . $bugsys->input_clean('bugid', TYPE_UINT));
40 $vote = $db->query_first("SELECT *, FIND_IN_SET(" . $bugsys->userinfo['userid'] . ", userids) AS uservote FROM " . TABLE_PREFIX . "vote WHERE bugid = $bug[bugid]");
41
42 if (!check_bug_permissions($bug))
43 {
44 $message->errorPermission();
45 }
46
47 if (!can_perform('canvote', $bug['product']))
48 {
49 $message->errorPermission();
50 }
51
52 if (!$bug)
53 {
54 $message->error(L_INVALID_ID);
55 }
56
57 if ($vote['uservote'])
58 {
59 $message->error(_('You have already voted on this bug.'));
60 }
61
62 // handle userids
63 $userids = $vote['userids'];
64 if ($bugsys->userinfo['userid'])
65 {
66 if (trim($vote['userids']))
67 {
68 $userids .= ',' . $bugsys->userinfo['userid'];
69 }
70 else
71 {
72 $userids = $bugsys->userinfo['userid'];
73 }
74 }
75
76 $uservote = $bugsys->input_clean('vote', TYPE_INT);
77
78 $votefor = $vote['votefor'];
79 $voteagainst = $vote['voteagainst'];
80
81 if ($uservote > 0)
82 {
83 $votefor++;
84 }
85 else if ($uservote < 0)
86 {
87 $voteagainst++;
88 }
89 else
90 {
91 $message->error(_('You need to specify whether you want to vote for or against this bug.'));
92 }
93
94 $db->query("UPDATE " . TABLE_PREFIX . "vote SET userids = '$userids', votefor = $votefor, voteagainst = $voteagainst WHERE bugid = $bug[bugid]");
95
96 $message->redirect(_('Your vote has been added.'), "showreport.php?bugid=$bug[bugid]");
97 }
98
99 /*=====================================================================*\
100 || ###################################################################
101 || # $HeadURL$
102 || # $Id$
103 || ###################################################################
104 \*=====================================================================*/
105 ?>