post_bug.cgi 8.54 KB
Newer Older
1
#!/usr/bonsaitools/bin/perl -wT
2
# -*- Mode: perl; indent-tabs-mode: nil -*-
terry%netscape.com's avatar
terry%netscape.com committed
3
#
4 5 6 7 8 9 10 11 12 13
# 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.
#
terry%netscape.com's avatar
terry%netscape.com committed
14
# The Original Code is the Bugzilla Bug Tracking System.
15
#
terry%netscape.com's avatar
terry%netscape.com committed
16
# The Initial Developer of the Original Code is Netscape Communications
17 18 19 20
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
terry%netscape.com's avatar
terry%netscape.com committed
21
# Contributor(s): Terry Weissman <terry@mozilla.org>
22
#                 Dan Mosedale <dmose@mozilla.org>
23
#                 Joe Robins <jmrobins@tgix.com>
terry%netscape.com's avatar
terry%netscape.com committed
24

25 26
use diagnostics;
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
27

28 29
use lib qw(.);

30
require "CGI.pl";
terry%netscape.com's avatar
terry%netscape.com committed
31

32 33
# Shut up misguided -w warnings about "used only once".  For some reason,
# "use vars" chokes on me when I try it here.
terry%netscape.com's avatar
terry%netscape.com committed
34

35 36 37
sub sillyness {
    my $zz;
    $zz = $::buffer;
38
    $zz = $::usergroupset;
39
    $zz = %::COOKIE;
40 41 42 43 44 45 46 47
    $zz = %::components;
    $zz = %::versions;
    $zz = @::legal_bug_status;
    $zz = @::legal_opsys;
    $zz = @::legal_platform;
    $zz = @::legal_priority;
    $zz = @::legal_product;
    $zz = @::legal_severity;
48
    $zz = %::target_milestone;
49
}
50

51
confirm_login();
terry%netscape.com's avatar
terry%netscape.com committed
52

53 54 55
my $cookiepath = Param("cookiepath");
print "Set-Cookie: PLATFORM=$::FORM{'product'} ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n" if ( exists $::FORM{'product'} );
print "Set-Cookie: VERSION-$::FORM{'product'}=$::FORM{'version'} ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n" if ( exists $::FORM{'product'} && exists $::FORM{'version'} );
dmose%mozilla.org's avatar
dmose%mozilla.org committed
56

57
print "Content-type: text/html\n\n";
terry%netscape.com's avatar
terry%netscape.com committed
58

59
if (defined $::FORM{'maketemplate'}) {
60 61
    print "<TITLE>Bookmarks are your friend.</TITLE>\n";
    print "<H1>Template constructed.</H1>\n";
terry%netscape.com's avatar
terry%netscape.com committed
62
    
63
    my $url = "enter_bug.cgi?$::buffer";
terry%netscape.com's avatar
terry%netscape.com committed
64

65
    print "If you put a bookmark <a href=\"$url\">to this link</a>, it will\n";
66 67
    print "bring up the submit-a-new-bug page with the fields initialized\n";
    print "as you've requested.\n";
68
    PutFooter();
69
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
70 71
}

72
PutHeader("Posting Bug -- Please wait", "Posting Bug", "One moment please...");
terry%netscape.com's avatar
terry%netscape.com committed
73

74 75
umask 0;
ConnectToDatabase();
terry%netscape.com's avatar
terry%netscape.com committed
76

77 78 79 80 81 82 83 84 85 86 87 88 89
my $product = $::FORM{'product'};

if(Param("usebuggroupsentry") && GroupExists($product)) {
  if(!UserInGroup($product)) {
    print "<H1>Permission denied.</H1>\n";
    print "Sorry; you do not have the permissions necessary to enter\n";
    print "a bug against this product.\n";
    print "<P>\n";
    PutFooter();
    exit;
  }
}

90
if (!defined $::FORM{'component'} || $::FORM{'component'} eq "") {
91 92
    PuntTryAgain("You must choose a component that corresponds to this bug. " .
                 "If necessary, just guess.");
93
}
terry%netscape.com's avatar
terry%netscape.com committed
94

95
if (!defined $::FORM{'short_desc'} || trim($::FORM{'short_desc'}) eq "") {
96
    PuntTryAgain("You must enter a summary for this bug.");
97 98
}

99 100 101 102 103
if ($::FORM{'assigned_to'} eq "") {
    SendSQL("select initialowner from components where program=" .
            SqlQuote($::FORM{'product'}) .
            " and value=" . SqlQuote($::FORM{'component'}));
    $::FORM{'assigned_to'} = FetchOneColumn();
104 105
} else {
    $::FORM{'assigned_to'} = DBNameToIdAndCheck($::FORM{'assigned_to'});
terry%netscape.com's avatar
terry%netscape.com committed
106 107
}

108
my @bug_fields = ("product", "version", "rep_platform",
109
                  "bug_severity", "priority", "op_sys", "assigned_to",
110 111
                  "bug_status", "bug_file_loc", "short_desc", "component",
                  "target_milestone");
112 113 114 115 116 117

if (Param("useqacontact")) {
    SendSQL("select initialqacontact from components where program=" .
            SqlQuote($::FORM{'product'}) .
            " and value=" . SqlQuote($::FORM{'component'}));
    my $qacontact = FetchOneColumn();
118 119
    if (defined $qacontact && $qacontact != 0) {
        $::FORM{'qa_contact'} = $qacontact;
120 121 122 123
        push(@bug_fields, "qa_contact");
    }
}

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
if (exists $::FORM{'bug_status'}) {
    if (!UserInGroup("canedit") && !UserInGroup("canconfirm")) {
        delete $::FORM{'bug_status'};
    }
}

if (!exists $::FORM{'bug_status'}) {
    $::FORM{'bug_status'} = $::unconfirmedstate;
    SendSQL("SELECT votestoconfirm FROM products WHERE product = " .
            SqlQuote($::FORM{'product'}));
    if (!FetchOneColumn()) {
        $::FORM{'bug_status'} = "NEW";
    }
}

139 140 141 142 143 144
if (!exists $::FORM{'target_milestone'}) {
    SendSQL("SELECT defaultmilestone FROM products " .
            "WHERE product = " . SqlQuote($::FORM{'product'}));
    $::FORM{'target_milestone'} = FetchOneColumn();
}

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
GetVersionTable();
CheckFormField(\%::FORM, 'product', \@::legal_product);
CheckFormField(\%::FORM, 'version', \@{$::versions{$::FORM{'product'}}});
CheckFormField(\%::FORM, 'target_milestone',
               \@{$::target_milestone{$::FORM{'product'}}});
CheckFormField(\%::FORM, 'rep_platform', \@::legal_platform);
CheckFormField(\%::FORM, 'bug_severity', \@::legal_severity);
CheckFormField(\%::FORM, 'priority', \@::legal_priority);
CheckFormField(\%::FORM, 'op_sys', \@::legal_opsys);
CheckFormFieldDefined(\%::FORM, 'assigned_to');
CheckFormField(\%::FORM, 'bug_status', \@::legal_bug_status);
CheckFormFieldDefined(\%::FORM, 'bug_file_loc');
CheckFormField(\%::FORM, 'component', 
               \@{$::components{$::FORM{'product'}}});
CheckFormFieldDefined(\%::FORM, 'comment');
160

161 162 163 164 165 166
my @used_fields;
foreach my $f (@bug_fields) {
    if (exists $::FORM{$f}) {
        push (@used_fields, $f);
    }
}
167 168 169 170
if (exists $::FORM{'bug_status'} && $::FORM{'bug_status'} ne $::unconfirmedstate) {
    push(@used_fields, "everconfirmed");
    $::FORM{'everconfirmed'} = 1;
}
171

172
my $query = "INSERT INTO bugs (\n" . join(",\n", @used_fields) . ",
173
reporter, creation_ts, groupset)
174
VALUES (
175
";
terry%netscape.com's avatar
terry%netscape.com committed
176

177
foreach my $field (@used_fields) {
178 179 180
# fix for 42609. if there is a http:// only in bug_file_loc, strip
# it out and send an empty value. 
    if ($field eq 'bug_file_loc') {
181 182 183 184 185 186 187 188
        if ($::FORM{$field} eq 'http://') {
            $::FORM{$field} = "";
            $query .= SqlQuote($::FORM{$field}) . ",\n";
            next;
        }
        else {
            $query .= SqlQuote($::FORM{$field}) . ",\n";
        }
189 190
    }
    else {
191
        $query .= SqlQuote($::FORM{$field}) . ",\n";
192
    }
terry%netscape.com's avatar
terry%netscape.com committed
193 194
}

195 196 197 198
my $comment = $::FORM{'comment'};
$comment =~ s/\r\n/\n/g;     # Get rid of windows-style line endings.
$comment =~ s/\r/\n/g;       # Get rid of mac-style line endings.
$comment = trim($comment);
199 200 201
# If comment is all whitespace, it'll be null at this point.  That's
# OK except for the fact that it causes e-mail to be suppressed.
$comment = $comment ? $comment : " ";
202

203
$query .= "$::userid, now(), (0";
204 205 206 207

foreach my $b (grep(/^bit-\d*$/, keys %::FORM)) {
    if ($::FORM{$b}) {
        my $v = substr($b, 4);
208 209 210 211 212 213 214 215 216 217 218
        $v =~ /^(\d+)$/
          || PuntTryAgain("One of the group bits submitted was invalid.");
        if (!GroupIsActive($v)) {
            # Prevent the user from adding the bug to an inactive group.
            # Should only happen if there is a bug in Bugzilla or the user
            # hacked the "enter bug" form since otherwise the UI 
            # for adding the bug to the group won't appear on that form.
            PuntTryAgain("You can't add this bug to the inactive group " . 
                         "identified by the bit '$v'. This shouldn't happen, " . 
                         "so it may indicate a bug in Bugzilla.");
        }
219 220 221 222 223 224 225 226
        $query .= " + $v";    # Carefully written so that the math is
                                # done by MySQL, which can handle 64-bit math,
                                # and not by Perl, which I *think* can not.
    }
}



227
$query .= ") & $::usergroupset)\n";
terry%netscape.com's avatar
terry%netscape.com committed
228 229


230
my %ccids;
terry%netscape.com's avatar
terry%netscape.com committed
231 232


233 234 235 236
if (defined $::FORM{'cc'}) {
    foreach my $person (split(/[ ,]/, $::FORM{'cc'})) {
        if ($person ne "") {
            $ccids{DBNameToIdAndCheck($person)} = 1;
terry%netscape.com's avatar
terry%netscape.com committed
237 238 239 240 241
        }
    }
}


242
# print "<PRE>$query</PRE>\n";
terry%netscape.com's avatar
terry%netscape.com committed
243

244
SendSQL($query);
terry%netscape.com's avatar
terry%netscape.com committed
245

246 247
SendSQL("select LAST_INSERT_ID()");
my $id = FetchOneColumn();
terry%netscape.com's avatar
terry%netscape.com committed
248

249
SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext) VALUES " .
250
        "($id, $::userid, now(), " . SqlQuote($comment) . ")");
251

252 253
foreach my $person (keys %ccids) {
    SendSQL("insert into cc (bug_id, who) values ($id, $person)");
terry%netscape.com's avatar
terry%netscape.com committed
254 255
}

256
print "<TABLE BORDER=1><TD><H2>Bug $id posted</H2>\n";
257
system("./processmail", $id, $::COOKIE{'Bugzilla_login'});
258
print "<TD><A HREF=\"show_bug.cgi?id=$id\">Back To BUG# $id</A></TABLE>\n";
terry%netscape.com's avatar
terry%netscape.com committed
259

260
print "<BR><A HREF=\"attachment.cgi?bugid=$id&action=enter\">Attach a file to this bug</a>\n";
261

262
navigation_header();
263

264
PutFooter();
265
exit;