post_bug.cgi 8.82 KB
Newer Older
1
#!/usr/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>
24
#                 Gervase Markham <gerv@gerv.net>
25
#                 Marc Schumann <wurblzap@gmail.com>
terry%netscape.com's avatar
terry%netscape.com committed
26

27
use strict;
28 29
use lib qw(.);

30
use Bugzilla;
31
use Bugzilla::Attachment;
32
use Bugzilla::BugMail;
33
use Bugzilla::Constants;
34
use Bugzilla::Util;
35
use Bugzilla::Error;
36
use Bugzilla::Bug;
37
use Bugzilla::User;
38
use Bugzilla::Field;
39
use Bugzilla::Product;
40
use Bugzilla::Component;
41
use Bugzilla::Keyword;
42
use Bugzilla::Token;
43
use Bugzilla::Flag;
44

45
my $user = Bugzilla->login(LOGIN_REQUIRED);
46

47
my $cgi = Bugzilla->cgi;
48
my $dbh = Bugzilla->dbh;
49 50
my $template = Bugzilla->template;
my $vars = {};
51

52 53 54 55
######################################################################
# Main Script
######################################################################

56 57 58 59 60 61 62 63 64
# Detect if the user already used the same form to submit a bug
my $token = trim($cgi->param('token'));
if ($token) {
    my ($creator_id, $date, $old_bug_id) = Bugzilla::Token::GetTokenData($token);
    unless ($creator_id
              && ($creator_id == $user->id)
              && ($old_bug_id =~ "^createbug:"))
    {
        # The token is invalid.
65
        ThrowUserError('token_does_not_exist');
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    }

    $old_bug_id =~ s/^createbug://;

    if ($old_bug_id && (!$cgi->param('ignore_token')
                        || ($cgi->param('ignore_token') != $old_bug_id)))
    {
        $vars->{'bugid'} = $old_bug_id;
        $vars->{'allow_override'} = defined $cgi->param('ignore_token') ? 0 : 1;

        print $cgi->header();
        $template->process("bug/create/confirm-create-dupe.html.tmpl", $vars)
           || ThrowTemplateError($template->error());
        exit;
    }
}    

83 84
# do a match on the fields if applicable

85
&Bugzilla::User::match_field ($cgi, {
86 87
    'cc'            => { 'type' => 'multi'  },
    'assigned_to'   => { 'type' => 'single' },
88
    'qa_contact'    => { 'type' => 'single' },
89
    '^requestee_type-(\d+)$' => { 'type' => 'multi' },
90
});
91

92
if (defined $cgi->param('maketemplate')) {
93
    $vars->{'url'} = $cgi->canonicalise_query('token');
94
    $vars->{'short_desc'} = $cgi->param('short_desc');
terry%netscape.com's avatar
terry%netscape.com committed
95
    
96
    print $cgi->header();
97 98
    $template->process("bug/create/make-template.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
99
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
100 101
}

102
umask 0;
terry%netscape.com's avatar
terry%netscape.com committed
103

104
# get current time
105
my $timestamp = $dbh->selectrow_array(q{SELECT NOW()});
106

107 108 109 110 111
# Group Validation
my @selected_groups;
foreach my $group (grep(/^bit-\d+$/, $cgi->param())) {
    $group =~ /^bit-(\d+)$/;
    push(@selected_groups, $1);
112 113
}

114 115 116 117 118 119 120 121
# The format of the initial comment can be structured by adding fields to the
# enter_bug template and then referencing them in the comment template.
my $comment;
my $format = $template->get_format("bug/create/comment",
                                   scalar($cgi->param('format')), "txt");
$template->process($format->{'template'}, $vars, \$comment)
    || ThrowTemplateError($template->error());

122
# Include custom fields editable on bug creation.
123 124
my @custom_bug_fields = grep {$_->type != FIELD_TYPE_MULTI_SELECT}
        Bugzilla->get_fields({ custom => 1, obsolete => 0, enter_bug => 1 });
125

126 127 128 129
# Undefined custom fields are ignored to ensure they will get their default
# value (e.g. "---" for custom single select fields).
my @bug_fields = grep { defined $cgi->param($_->name) } @custom_bug_fields;
@bug_fields = map { $_->name } @bug_fields;
130 131 132 133 134

# Custom tables must be locked (required when validating custom fields).
my @custom_tables = grep { $_->type == FIELD_TYPE_SINGLE_SELECT } @custom_bug_fields;
@custom_tables = map { $_->name . ' READ' } @custom_tables;

135 136 137 138 139 140 141 142
push(@bug_fields, qw(
    product
    component

    assigned_to
    qa_contact

    alias
143
    blocked
144
    commentprivacy
145 146 147
    bug_file_loc
    bug_severity
    bug_status
148
    dependson
149
    keywords
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
    short_desc
    op_sys
    priority
    rep_platform
    version
    target_milestone
    status_whiteboard

    estimated_time
    deadline
));
my %bug_params;
foreach my $field (@bug_fields) {
    $bug_params{$field} = $cgi->param($field);
}
$bug_params{'creation_ts'} = $timestamp;
166
$bug_params{'cc'}          = [$cgi->param('cc')];
167
$bug_params{'groups'}      = \@selected_groups;
168
$bug_params{'comment'}     = $comment;
169

170 171 172 173 174 175 176
my @multi_selects = Bugzilla->get_fields(
        { type => FIELD_TYPE_MULTI_SELECT, custom => 1, obsolete => 0,
            enter_bug => 1 });
foreach my $field (@multi_selects) {
    $bug_params{$field->name} = [$cgi->param($field->name)];
}

177
my $bug = Bugzilla::Bug->create(\%bug_params);
178

179
# Get the bug ID back.
180
my $id = $bug->bug_id;
terry%netscape.com's avatar
terry%netscape.com committed
181

182 183 184 185 186 187
# Set Version cookie, but only if the user actually selected
# a version on the page.
if (defined $cgi->param('version')) {
    $cgi->send_cookie(-name => "VERSION-" . $bug->product,
                      -value => $bug->version,
                      -expires => "Fri, 01-Jan-2038 00:00:00 GMT");
188 189
}

190 191 192
# We don't have to check if the user can see the bug, because a user filing
# a bug can always see it. You can't change reporter_accessible until
# after the bug is filed.
193

194 195 196
# Add an attachment if requested.
if (defined($cgi->upload('data')) || $cgi->param('attachurl')) {
    $cgi->param('isprivate', $cgi->param('commentprivacy'));
197
    my $attachment = Bugzilla::Attachment->insert_attachment_for_bug(!THROW_ERROR,
198 199
                                                  $bug, $user, $timestamp, \$vars);

200
    if ($attachment) {
201 202 203
        # Update the comment to include the new attachment ID.
        # This string is hardcoded here because Template::quoteUrls()
        # expects to find this exact string.
204 205
        my $new_comment = "Created an attachment (id=" . $attachment->id . ")\n" .
                          $attachment->description . "\n";
206 207 208 209 210 211 212 213 214 215 216
        # We can use $bug->longdescs here because we are sure that the bug
        # description is of type CMT_NORMAL. No need to include it if it's
        # empty, though.
        if ($bug->longdescs->[0]->{'body'} !~ /^\s+$/) {
            $new_comment .= "\n" . $bug->longdescs->[0]->{'body'};
        }
        $bug->update_comment($bug->longdescs->[0]->{'id'}, $new_comment);
    }
    else {
        $vars->{'message'} = 'attachment_creation_failed';
    }
217 218 219 220 221 222 223 224

    # Determine if Patch Viewer is installed, for Diff link
    eval {
        require PatchReader;
        $vars->{'patchviewerinstalled'} = 1;
    };
}

225 226
# Add flags, if any. To avoid dying if something goes wrong
# while processing flags, we will eval() flag validation.
227
# This requires errors to die().
228 229
# XXX: this can go away as soon as flag validation is able to
#      fail without dying.
230 231
my $error_mode_cache = Bugzilla->error_mode;
Bugzilla->error_mode(ERROR_MODE_DIE);
232
eval {
233
    Bugzilla::Flag::validate($cgi, $id, undef, SKIP_REQUESTEE_ON_ERROR);
234 235
    Bugzilla::Flag::process($bug, undef, $timestamp, $cgi);
};
236
Bugzilla->error_mode($error_mode_cache);
237 238 239 240 241
if ($@) {
    $vars->{'message'} = 'flag_creation_failed';
    $vars->{'flag_creation_error'} = $@;
}

242
# Email everyone the details of the new bug 
243
$vars->{'mailrecipients'} = {'changer' => $user->login};
244

245
$vars->{'id'} = $id;
246
$vars->{'bug'} = $bug;
terry%netscape.com's avatar
terry%netscape.com committed
247

248
ThrowCodeError("bug_error", { bug => $bug }) if $bug->error;
249 250 251 252 253 254

$vars->{'sentmail'} = [];

push (@{$vars->{'sentmail'}}, { type => 'created',
                                id => $id,
                              });
255

256
foreach my $i (@{$bug->dependson || []}, @{$bug->blocked || []}) {
257
    push (@{$vars->{'sentmail'}}, { type => 'dep', id => $i, });
258
}
259

260
my @bug_list;
261 262
if ($cgi->cookie("BUGLIST")) {
    @bug_list = split(/:/, $cgi->cookie("BUGLIST"));
263
}
264
$vars->{'bug_list'} = \@bug_list;
265
$vars->{'valid_keywords'} = [map($_->name, Bugzilla::Keyword->get_all)];
266
$vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count();
267

268 269 270 271 272 273
if ($token) {
    trick_taint($token);
    $dbh->do('UPDATE tokens SET eventdata = ? WHERE token = ?', undef, 
             ("createbug:$id", $token));
}

274 275 276 277 278 279 280 281
if (Bugzilla->usage_mode == USAGE_MODE_EMAIL) {
    Bugzilla::BugMail::Send($id, $vars->{'mailrecipients'});
}
else {
    print $cgi->header();
    $template->process("bug/create/created.html.tmpl", $vars)
        || ThrowTemplateError($template->error());
}
282

283
1;