post_bug.cgi 7.42 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3 4
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
terry%netscape.com's avatar
terry%netscape.com committed
5
#
6 7
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
terry%netscape.com's avatar
terry%netscape.com committed
8

9
use 5.10.1;
10
use strict;
11
use lib qw(. lib);
12

13
use Bugzilla;
14
use Bugzilla::Attachment;
15
use Bugzilla::BugMail;
16
use Bugzilla::Constants;
17
use Bugzilla::Util;
18
use Bugzilla::Error;
19
use Bugzilla::Bug;
20
use Bugzilla::User;
21
use Bugzilla::Hook;
22
use Bugzilla::Token;
23
use Bugzilla::Flag;
24

25 26
use List::MoreUtils qw(uniq);

27
my $user = Bugzilla->login(LOGIN_REQUIRED);
28

29
my $cgi = Bugzilla->cgi;
30
my $dbh = Bugzilla->dbh;
31 32
my $template = Bugzilla->template;
my $vars = {};
33

34 35 36 37
######################################################################
# Main Script
######################################################################

38
# redirect to enter_bug if no field is passed.
39 40 41 42
unless ($cgi->param()) {
    print $cgi->redirect(correct_urlbase() . 'enter_bug.cgi');
    exit;
}
43

44 45
# Detect if the user already used the same form to submit a bug
my $token = trim($cgi->param('token'));
46
check_token_data($token, 'create_bug', 'index.cgi');
47

48
# do a match on the fields if applicable
49
Bugzilla::User::match_field ({
50 51
    'cc'            => { 'type' => 'multi'  },
    'assigned_to'   => { 'type' => 'single' },
52
    'qa_contact'    => { 'type' => 'single' },
53
});
54

55
if (defined $cgi->param('maketemplate')) {
56
    $vars->{'url'} = $cgi->canonicalise_query('token');
57
    $vars->{'short_desc'} = $cgi->param('short_desc');
terry%netscape.com's avatar
terry%netscape.com committed
58
    
59
    print $cgi->header();
60 61
    $template->process("bug/create/make-template.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
62
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
63 64
}

65
umask 0;
terry%netscape.com's avatar
terry%netscape.com committed
66

67 68 69 70 71 72 73 74
# 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());

75
# Include custom fields editable on bug creation.
76 77
my @custom_bug_fields = grep {$_->type != FIELD_TYPE_MULTI_SELECT && $_->enter_bug}
                             Bugzilla->active_custom_fields;
78

79 80 81 82
# 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;
83

84 85 86 87 88 89 90 91
push(@bug_fields, qw(
    product
    component

    assigned_to
    qa_contact

    alias
92
    blocked
93
    comment_is_private
94 95 96
    bug_file_loc
    bug_severity
    bug_status
97
    dependson
98
    keywords
99 100 101 102 103 104 105
    short_desc
    op_sys
    priority
    rep_platform
    version
    target_milestone
    status_whiteboard
106
    see_also
107 108 109 110 111 112 113
    estimated_time
    deadline
));
my %bug_params;
foreach my $field (@bug_fields) {
    $bug_params{$field} = $cgi->param($field);
}
114 115 116 117 118
foreach my $field (qw(cc groups)) {
    next if !$cgi->should_set($field);
    $bug_params{$field} = [$cgi->param($field)];
}
$bug_params{'comment'} = $comment;
119

120 121 122
my @multi_selects = grep {$_->type == FIELD_TYPE_MULTI_SELECT && $_->enter_bug}
                         Bugzilla->active_custom_fields;

123
foreach my $field (@multi_selects) {
124
    next if !$cgi->should_set($field->name);
125 126 127
    $bug_params{$field->name} = [$cgi->param($field->name)];
}

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

130
# Get the bug ID back and delete the token used to create this bug.
131
my $id = $bug->bug_id;
132 133
delete_token($token);

134 135 136 137
# 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
138

139 140 141 142 143 144
# 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");
145 146
}

147 148 149
# 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.
150

151
# Add an attachment if requested.
152
if (defined($cgi->upload('data')) || $cgi->param('attach_text')) {
153
    $cgi->param('isprivate', $cgi->param('comment_is_private'));
154 155 156 157 158 159 160 161 162 163 164 165 166

    # 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,
167
             data          => scalar $cgi->param('attach_text') || $cgi->upload('data'),
168
             description   => scalar $cgi->param('description'),
169
             filename      => $cgi->param('attach_text') ? "file_$id.txt" : scalar $cgi->upload('data'),
170 171 172 173 174 175
             ispatch       => scalar $cgi->param('ispatch'),
             isprivate     => scalar $cgi->param('isprivate'),
             mimetype      => $content_type,
            });
    };
    Bugzilla->error_mode($error_mode_cache);
176

177
    if ($attachment) {
178
        # Set attachment flags.
179 180 181 182
        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);
183
        my $comment = $bug->comments->[0];
184 185
        $comment->set_all({ type => CMT_ATTACHMENT_CREATED, 
                            extra_data => $attachment->id });
186
        $comment->update();
187 188 189 190
    }
    else {
        $vars->{'message'} = 'attachment_creation_failed';
    }
191 192
}

193
# Set bug flags.
194 195 196 197
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);
198

199
$vars->{'id'} = $id;
200
$vars->{'bug'} = $bug;
terry%netscape.com's avatar
terry%netscape.com committed
201

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

204
my $recipients = { changer => $user };
205 206 207 208
my $bug_sent = Bugzilla::BugMail::Send($id, $recipients);
$bug_sent->{type} = 'created';
$bug_sent->{id}   = $id;
my @all_mail_results = ($bug_sent);
209

210 211 212 213 214 215
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);
}
216 217 218 219 220 221 222 223

# Sending emails for any referenced bugs.
foreach my $ref_bug_id (uniq @{ $bug->{see_also_changes} || [] }) {
    my $ref_sent = Bugzilla::BugMail::Send($ref_bug_id, $recipients);
    $ref_sent->{id} = $ref_bug_id;
    push(@all_mail_results, $ref_sent);
}

224 225
$vars->{sentmail} = \@all_mail_results;

226 227 228
$format = $template->get_format("bug/create/created",
                                 scalar($cgi->param('created-format')),
                                 "html");
229
print $cgi->header();
230
$template->process($format->{'template'}, $vars)
231
    || ThrowTemplateError($template->error());
232

233
1;