From c6f80310afc00cf7d5114e638cbaaefde3914da0 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 8 Oct 1999 06:54:47 +0000 Subject: Added the ability for users to "vote" on which bugs they think should be fixed. --- showvotes.cgi | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100755 showvotes.cgi (limited to 'showvotes.cgi') diff --git a/showvotes.cgi b/showvotes.cgi new file mode 100755 index 000000000..1d03ae191 --- /dev/null +++ b/showvotes.cgi @@ -0,0 +1,120 @@ +#!/usr/bonsaitools/bin/perl -w +# -*- Mode: perl; indent-tabs-mode: nil -*- +# +# The contents of this file are subject to the Mozilla Public License +# Version 1.0 (the "License"); you may not use this file except in +# compliance with the License. You may obtain a copy of the License at +# http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +# License for the specific language governing rights and limitations +# under the License. +# +# The Original Code is the Bugzilla Bug Tracking System. +# +# The Initial Developer of the Original Code is Netscape Communications +# Corporation. Portions created by Netscape are Copyright (C) 1998 +# Netscape Communications Corporation. All Rights Reserved. +# +# Contributor(s): Terry Weissman + +use diagnostics; +use strict; + +require "CGI.pl"; + +if (defined $::FORM{'voteon'} || (!defined $::FORM{'bug_id'} && + !defined $::FORM{'user'})) { + confirm_login(); + ConnectToDatabase(); + $::FORM{'user'} = DBNameToIdAndCheck($::COOKIE{'Bugzilla_login'}); +} + +print "Content-type: text/html\n\n"; + +if (defined $::FORM{'bug_id'}) { + my $id = $::FORM{'bug_id'}; + my $linkedid = qq{$id}; + PutHeader("Show votes", "Show votes", "Bug $linkedid"); + ConnectToDatabase(); + SendSQL("select profiles.login_name, votes.who, votes.count from votes, profiles where votes.bug_id = " . SqlQuote($id) . " and profiles.userid = votes.who"); + print "\n"; + print "\n"; + my $sum = 0; + while (MoreSQLData()) { + my ($name, $userid, $count) = (FetchSQLData()); + print qq{\n}; + $sum += $count; + } + print "
WhoNumber of votes
$name$count
"; + print "

Total votes: $sum

\n"; +} elsif (defined $::FORM{'user'}) { + ConnectToDatabase(); + quietly_check_login(); + GetVersionTable(); + my $who = $::FORM{'user'}; + my $name = DBID_to_name($who); + PutHeader("Show votes", "Show votes", $name); + print qq{

\n}; + print "\n"; + SendSQL("lock tables bugs read, votes write"); + if (defined($::FORM{'voteon'})) { + # Oh, boy, what a hack. Make sure there is an entry for this bug + # in the vote table, just so that things display right. + # Yuck yuck yuck.### + SendSQL("select votes.count from votes where votes.bug_id = $::FORM{'voteon'} and votes.who = $who"); + if (!MoreSQLData()) { + SendSQL("insert into votes (who, bug_id, count) values ($who, $::FORM{'voteon'}, 0)"); + } + } + my $canedit = (defined $::COOKIE{'Bugzilla_login'} && + $::COOKIE{'Bugzilla_login'} eq $name); + foreach my $product (sort(keys(%::prodmaxvotes))) { + if ($::prodmaxvotes{$product} <= 0) { + next; + } + my $qprod = value_quote($product); + SendSQL("select votes.bug_id, votes.count, bugs.short_desc, bugs.bug_status from votes, bugs where votes.who = $who and votes.bug_id = bugs.bug_id and bugs.product = " . SqlQuote($product) . "order by votes.bug_id"); + my $sum = 0; + print ""; + while (MoreSQLData()) { + my ($id, $count, $summary, $status) = (FetchSQLData()); + my $opened = ($status eq "NEW" || $status eq "ASSIGNED" || + $status eq "REOPENED"); + my $strike = $opened ? "" : ""; + my $endstrike = $opened ? "" : ""; + $summary = html_quote($summary); + $sum += $count; + if ($canedit) { + $count = ""; + } + print qq{ + + + + + + +}; + } + my $plural = (($sum == 1) ? "" : "s"); + print "\n"; + } + print "
Bug \#SummaryVotes
$product
$id$strike$summary$endstrike$count
$sum vote$plural used out of\n"; + print "$::prodmaxvotes{$product} allowed.
\n"; + if ($canedit) { + print qq{\n}; + print "
To change your votes, type in new numbers (using zero to\n"; + print "mean no votes), and then click Submit.\n"; + } + print ""; + print "
\n"; + SendSQL("delete from votes where count <= 0"); + SendSQL("unlock tables"); +} + +print qq{Help! I don't understand this voting stuff}; + +navigation_header(); + -- cgit v1.2.3-24-g4f1b