quips.cgi 4.06 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (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): Owen Taylor <otaylor@redhat.com>
22
#                 Gervase Markham <gerv@gerv.net>
23
#                 David Fallon <davef@tetsubo.com>
24
#                 Tobias Burnus <burnus@net-b.de>
25 26

use strict;
27 28

use vars qw(
29
  $userid
30 31 32
  $template
  $vars
);
33

34 35
use lib qw(.);

36 37
require "CGI.pl";

38 39 40
use Bugzilla::Constants;

Bugzilla->login(LOGIN_REQUIRED);
41

42 43
my $cgi = Bugzilla->cgi;

44 45 46 47
if (Param('enablequips') eq "off") {
    ThrowUserError("quips_disabled");
}
    
48
my $action = $cgi->param('action') || "";
49

50
if ($action eq "show") {
51
    # Read in the entire quip list
52
    SendSQL("SELECT quipid, userid, quip, approved FROM quips");
53 54 55 56

    my $quips;
    my @quipids;
    while (MoreSQLData()) {
57 58 59
        my ($quipid, $userid, $quip, $approved) = FetchSQLData();
        $quips->{$quipid} = {'userid' => $userid, 'quip' => $quip, 
                             'approved' => $approved};
60 61 62 63 64
        push(@quipids, $quipid);
    }

    my $users;
    foreach my $quipid (@quipids) {
65
        my $userid = $quips->{$quipid}{'userid'};
66 67
        if (not defined $users->{$userid}) {
            SendSQL("SELECT login_name FROM profiles WHERE userid = $userid");
68
            $users->{$userid} = FetchOneColumn();
69 70 71 72 73
        }
    }
    $vars->{'quipids'} = \@quipids;
    $vars->{'quips'} = $quips;
    $vars->{'users'} = $users;
74
    $vars->{'show_quips'} = 1;
75 76
}

77
if ($action eq "add") {
78 79
    (Param('enablequips') eq "on" or Param('enablequips') eq "approved")
      || ThrowUserError("no_new_quips");
80
    
81
    # Add the quip 
82 83
    my $approved = (Param('enablequips') eq "on") ? '1' : '0';
    $approved = 1 if(UserInGroup('admin'));
84
    my $comment = $cgi->param("quip");
85 86
    $comment || ThrowUserError("need_quip");
    $comment !~ m/</ || ThrowUserError("no_html_in_quips");
87

88 89
    SendSQL("INSERT INTO quips (userid, quip, approved) VALUES " .
           '(' . $userid . ', ' . SqlQuote($comment) . ', ' . $approved . ')');
90 91 92 93

    $vars->{'added_quip'} = $comment;
}

94 95 96 97 98 99 100 101 102 103 104 105 106
if ($action eq 'approve') {
    # Read in the entire quip list
    SendSQL("SELECT quipid, approved FROM quips");
 
    my %quips;
    while (MoreSQLData()) {
        my ($quipid, $approved) = FetchSQLData();
        $quips{$quipid} = $approved;
    }

    my @approved;
    my @unapproved;
    foreach my $quipid (keys %quips) {
107
       my $form = $cgi->param('quipid_'.$quipid) ? 1 : 0;
108 109 110 111 112 113 114 115 116 117 118 119 120
       if($quips{$quipid} ne $form) {
           if($form) { push(@approved, $quipid); }
           else { push(@unapproved, $quipid); }
       }
    }
    SendSQL("UPDATE quips SET approved = 1 WHERE quipid IN (" .
            join(",", @approved) . ")") if($#approved > -1);
    SendSQL("UPDATE quips SET approved = 0 WHERE quipid IN (" .
            join(",", @unapproved) . ")") if($#unapproved > -1);
    $vars->{ 'approved' }   = \@approved;
    $vars->{ 'unapproved' } = \@unapproved;
}

121 122 123 124
if ($action eq "delete") {
    if (!UserInGroup('admin')) {
        ThrowUserError("quips_edit_denied");
    }
125
    my $quipid = $cgi->param("quipid");
126 127 128 129 130 131 132 133
    ThrowCodeError("need_quipid") unless $quipid =~ /(\d+)/; 
    $quipid = $1;

    SendSQL("SELECT quip FROM quips WHERE quipid = $quipid");
    $vars->{'deleted_quip'} = FetchSQLData();
    SendSQL("DELETE FROM quips WHERE quipid = $quipid");
}

134
print $cgi->header();
135 136
$template->process("list/quips.html.tmpl", $vars)
  || ThrowTemplateError($template->error());