post_bug.cgi 4.07 KB
Newer Older
1 2
#!/usr/bonsaitools/bin/perl -w
# -*- 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 14 15 16 17 18 19 20 21 22
#
# 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 <terry@mozilla.org>


23 24
use diagnostics;
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
25

26
require "CGI.pl";
terry%netscape.com's avatar
terry%netscape.com committed
27

28 29
# 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
30

31 32 33
# use vars qw($::buffer);
my $zz = $::buffer;
$zz = $zz . $zz;
terry%netscape.com's avatar
terry%netscape.com committed
34

35
confirm_login();
terry%netscape.com's avatar
terry%netscape.com committed
36

37 38
print "Set-Cookie: PLATFORM=$::FORM{'product'} ; path=/ ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
print "Set-Cookie: VERSION-$::FORM{'product'}=$::FORM{'version'} ; path=/ ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
39
print "Content-type: text/html\n\n";
terry%netscape.com's avatar
terry%netscape.com committed
40

41
if (defined $::FORM{'maketemplate'}) {
42 43
    print "<TITLE>Bookmarks are your friend.</TITLE>\n";
    print "<H1>Template constructed.</H1>\n";
terry%netscape.com's avatar
terry%netscape.com committed
44
    
45
    my $url = "enter_bug.cgi?$::buffer";
terry%netscape.com's avatar
terry%netscape.com committed
46

47
    print "If you put a bookmark <a href=\"$url\">to this link</a>, it will\n";
48 49 50
    print "bring up the submit-a-new-bug page with the fields initialized\n";
    print "as you've requested.\n";
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
51 52
}

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

55 56
umask 0;
ConnectToDatabase();
terry%netscape.com's avatar
terry%netscape.com committed
57

58 59 60 61 62 63 64
if (!defined $::FORM{'component'} || $::FORM{'component'} eq "") {
    print "You must choose a component that corresponds to this bug.  If\n";
    print "necessary, just guess.  But please hit the <B>Back</B> button\n";
    print "and choose a component.\n";
    exit 0
}
    
terry%netscape.com's avatar
terry%netscape.com committed
65

66 67 68 69 70 71 72
my $forceAssignedOK = 0;
if ($::FORM{'assigned_to'} eq "") {
    SendSQL("select initialowner from components where program=" .
            SqlQuote($::FORM{'product'}) .
            " and value=" . SqlQuote($::FORM{'component'}));
    $::FORM{'assigned_to'} = FetchOneColumn();
    $forceAssignedOK = 1;
terry%netscape.com's avatar
terry%netscape.com committed
73 74
}

75 76
$::FORM{'assigned_to'} = DBNameToIdAndCheck($::FORM{'assigned_to'}, $forceAssignedOK);
$::FORM{'reporter'} = DBNameToIdAndCheck($::FORM{'reporter'});
terry%netscape.com's avatar
terry%netscape.com committed
77 78


79 80 81
my @bug_fields = ("reporter", "product", "version", "rep_platform",
                  "bug_severity", "priority", "op_sys", "assigned_to",
                  "bug_status", "bug_file_loc", "short_desc", "component");
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

if (Param("useqacontact")) {
    SendSQL("select initialqacontact from components where program=" .
            SqlQuote($::FORM{'product'}) .
            " and value=" . SqlQuote($::FORM{'component'}));
    my $qacontact = FetchOneColumn();
    if (defined $qacontact && $qacontact ne "") {
        $::FORM{'qa_contact'} = DBNameToIdAndCheck($qacontact, 1);
        push(@bug_fields, "qa_contact");
    }
}





98 99 100 101
my $query = "insert into bugs (\n" . join(",\n", @bug_fields) . ",
creation_ts, long_desc )
values (
";
terry%netscape.com's avatar
terry%netscape.com committed
102 103


104 105
foreach my $field (@bug_fields) {
    $query .= SqlQuote($::FORM{$field}) . ",\n";
terry%netscape.com's avatar
terry%netscape.com committed
106 107
}

108
$query .= "now(), " . SqlQuote($::FORM{'comment'}) . " )\n";
terry%netscape.com's avatar
terry%netscape.com committed
109 110


111
my %ccids;
terry%netscape.com's avatar
terry%netscape.com committed
112 113


114 115 116 117
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
118 119 120 121 122
        }
    }
}


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

125
SendSQL($query);
terry%netscape.com's avatar
terry%netscape.com committed
126

127 128
SendSQL("select LAST_INSERT_ID()");
my $id = FetchOneColumn();
terry%netscape.com's avatar
terry%netscape.com committed
129

130 131
foreach my $person (keys %ccids) {
    SendSQL("insert into cc (bug_id, who) values ($id, $person)");
terry%netscape.com's avatar
terry%netscape.com committed
132 133
}

134 135 136
print "<H2>Changes Submitted</H2>\n";
print "<A HREF=\"show_bug.cgi?id=$id\">Show BUG# $id</A>\n";
print "<BR><A HREF=\"query.cgi\">Back To Query Page</A>\n";
terry%netscape.com's avatar
terry%netscape.com committed
137

138 139
system("./processmail $id < /dev/null > /dev/null 2> /dev/null &");
exit;