post_bug.cgi 8.77 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
use lib qw(. lib);
29

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::Hook;
40
use Bugzilla::Product;
41
use Bugzilla::Component;
42
use Bugzilla::Keyword;
43
use Bugzilla::Token;
44
use Bugzilla::Flag;
45

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

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

53 54 55 56
######################################################################
# Main Script
######################################################################

57
# redirect to enter_bug if no field is passed.
58 59 60 61
unless ($cgi->param()) {
    print $cgi->redirect(correct_urlbase() . 'enter_bug.cgi');
    exit;
}
62

63 64 65 66 67 68 69 70 71
# 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.
72
        ThrowUserError('token_does_not_exist');
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    }

    $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;
    }
}    

90
# do a match on the fields if applicable
91
Bugzilla::User::match_field ({
92 93
    'cc'            => { 'type' => 'multi'  },
    'assigned_to'   => { 'type' => 'single' },
94
    'qa_contact'    => { 'type' => 'single' },
95
});
96

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

107
umask 0;
terry%netscape.com's avatar
terry%netscape.com committed
108

109 110 111 112 113 114 115 116
# 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());

117
# Include custom fields editable on bug creation.
118 119
my @custom_bug_fields = grep {$_->type != FIELD_TYPE_MULTI_SELECT && $_->enter_bug}
                             Bugzilla->active_custom_fields;
120

121 122 123 124
# 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;
125

126 127 128 129 130 131 132 133
push(@bug_fields, qw(
    product
    component

    assigned_to
    qa_contact

    alias
134
    blocked
135
    comment_is_private
136 137 138
    bug_file_loc
    bug_severity
    bug_status
139
    dependson
140
    keywords
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
    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);
}
156 157 158 159 160
foreach my $field (qw(cc groups)) {
    next if !$cgi->should_set($field);
    $bug_params{$field} = [$cgi->param($field)];
}
$bug_params{'comment'} = $comment;
161

162 163 164
my @multi_selects = grep {$_->type == FIELD_TYPE_MULTI_SELECT && $_->enter_bug}
                         Bugzilla->active_custom_fields;

165
foreach my $field (@multi_selects) {
166
    next if !$cgi->should_set($field->name);
167 168 169
    $bug_params{$field->name} = [$cgi->param($field->name)];
}

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

172
# Get the bug ID back.
173
my $id = $bug->bug_id;
174 175 176 177
# We do this directly from the DB because $bug->creation_ts has the seconds
# formatted out of it (which should be fixed some day).
my $timestamp = $dbh->selectrow_array(
    'SELECT creation_ts FROM bugs WHERE bug_id = ?', undef, $id);
terry%netscape.com's avatar
terry%netscape.com committed
178

179 180 181 182 183 184
# 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");
185 186
}

187 188 189
# 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.
190

191
# Add an attachment if requested.
192
if (defined($cgi->upload('data')) || $cgi->param('attach_text')) {
193
    $cgi->param('isprivate', $cgi->param('comment_is_private'));
194 195 196 197 198 199 200 201 202 203 204 205 206

    # Must be called before create() as it may alter $cgi->param('ispatch').
    my $content_type = Bugzilla::Attachment::get_content_type();
    my $attachment;

    # If the attachment cannot be successfully added to the bug,
    # we notify the user, but we don't interrupt the bug creation process.
    my $error_mode_cache = Bugzilla->error_mode;
    Bugzilla->error_mode(ERROR_MODE_DIE);
    eval {
        $attachment = Bugzilla::Attachment->create(
            {bug           => $bug,
             creation_ts   => $timestamp,
207
             data          => scalar $cgi->param('attach_text') || $cgi->upload('data'),
208
             description   => scalar $cgi->param('description'),
209
             filename      => $cgi->param('attach_text') ? "file_$id.txt" : scalar $cgi->upload('data'),
210 211 212 213 214 215
             ispatch       => scalar $cgi->param('ispatch'),
             isprivate     => scalar $cgi->param('isprivate'),
             mimetype      => $content_type,
            });
    };
    Bugzilla->error_mode($error_mode_cache);
216

217
    if ($attachment) {
218
        # Set attachment flags.
219 220 221 222
        my ($flags, $new_flags) = Bugzilla::Flag->extract_flags_from_cgi(
                                      $bug, $attachment, $vars, SKIP_REQUESTEE_ON_ERROR);
        $attachment->set_flags($flags, $new_flags);
        $attachment->update($timestamp);
223
        my $comment = $bug->comments->[0];
224 225
        $comment->set_all({ type => CMT_ATTACHMENT_CREATED, 
                            extra_data => $attachment->id });
226
        $comment->update();
227 228 229 230
    }
    else {
        $vars->{'message'} = 'attachment_creation_failed';
    }
231 232
}

233
# Set bug flags.
234 235 236 237
my ($flags, $new_flags) = Bugzilla::Flag->extract_flags_from_cgi($bug, undef, $vars,
                                                             SKIP_REQUESTEE_ON_ERROR);
$bug->set_flags($flags, $new_flags);
$bug->update($timestamp);
238

239
$vars->{'id'} = $id;
240
$vars->{'bug'} = $bug;
terry%netscape.com's avatar
terry%netscape.com committed
241

242
Bugzilla::Hook::process('post_bug_after_creation', { vars => $vars });
243

244
ThrowCodeError("bug_error", { bug => $bug }) if $bug->error;
245

246 247 248 249 250 251
if ($token) {
    trick_taint($token);
    $dbh->do('UPDATE tokens SET eventdata = ? WHERE token = ?', undef, 
             ("createbug:$id", $token));
}

252
my $recipients = { changer => $user };
253 254 255 256 257 258 259 260 261 262 263 264
my $bug_sent = Bugzilla::BugMail::Send($id, $recipients);
$bug_sent->{type} = 'created';
$bug_sent->{id}   = $id;
my @all_mail_results = ($bug_sent);
foreach my $dep (@{$bug->dependson || []}, @{$bug->blocked || []}) {
    my $dep_sent = Bugzilla::BugMail::Send($dep, $recipients);
    $dep_sent->{type} = 'dep';
    $dep_sent->{id}   = $dep;
    push(@all_mail_results, $dep_sent);
}
$vars->{sentmail} = \@all_mail_results;

265 266 267
$format = $template->get_format("bug/create/created",
                                 scalar($cgi->param('created-format')),
                                 "html");
268
print $cgi->header();
269
$template->process($format->{'template'}, $vars)
270
    || ThrowTemplateError($template->error());
271

272
1;