summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Attachment.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-12-02 00:55:24 +0100
committerlpsolit%gmail.com <>2006-12-02 00:55:24 +0100
commit94149638cfe0e9cf217f62dc5ffff78ffd446def (patch)
treeeffeca461c2ffec97cb56b30581950d774773768 /Bugzilla/Attachment.pm
parentfc40faf0fed86fe453675320a3f7451686181843 (diff)
downloadbugzilla-94149638cfe0e9cf217f62dc5ffff78ffd446def.tar.gz
bugzilla-94149638cfe0e9cf217f62dc5ffff78ffd446def.tar.xz
Bug 356395: On bug creation, an error is thrown when the requestee of a private attachment is not in the insidergroup, or when the requestee is not in the grant group (for attachment flags) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'Bugzilla/Attachment.pm')
-rw-r--r--Bugzilla/Attachment.pm29
1 files changed, 21 insertions, 8 deletions
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm
index c1b3a8a28..95d4026ad 100644
--- a/Bugzilla/Attachment.pm
+++ b/Bugzilla/Attachment.pm
@@ -779,12 +779,6 @@ sub insert_attachment_for_bug {
$$hr_vars->{'message'} = 'user_match_multiple';
}
- # Flag::validate() should not detect any reference to existing flags
- # when creating a new attachment. Setting the third param to -1 will
- # force this function to check this point.
- # XXX needs $throw_error treatment
- Bugzilla::Flag::validate($cgi, $bug->bug_id, -1);
-
# Escape characters in strings that will be used in SQL statements.
my $description = $cgi->param('description');
trick_taint($description);
@@ -854,9 +848,28 @@ sub insert_attachment_for_bug {
$timestamp, $fieldid, 0, 1));
}
- # Create flags.
my $attachment = Bugzilla::Attachment->get($attachid);
- Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi);
+
+ # 1. Add flags, if any. To avoid dying if something goes wrong
+ # while processing flags, we will eval() flag validation.
+ # This requires errors to die().
+ # XXX: this can go away as soon as flag validation is able to
+ # fail without dying.
+ #
+ # 2. Flag::validate() should not detect any reference to existing flags
+ # when creating a new attachment. Setting the third param to -1 will
+ # force this function to check this point.
+ my $error_mode_cache = Bugzilla->error_mode;
+ Bugzilla->error_mode(ERROR_MODE_DIE);
+ eval {
+ Bugzilla::Flag::validate($cgi, $bug->bug_id, -1);
+ Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi);
+ };
+ Bugzilla->error_mode($error_mode_cache);
+ if ($@) {
+ $$hr_vars->{'message'} = 'flag_creation_failed';
+ $$hr_vars->{'flag_creation_error'} = $@;
+ }
# Return the ID of the new attachment.
return $attachid;