summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/Extension.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-05-22 07:33:40 +0200
committerByron Jones <glob@mozilla.com>2015-05-22 07:33:40 +0200
commit0677733f0afbf6e4b5b414e8ae928dea34bff893 (patch)
tree8f836f9da7745f0bbc25f8ecd70cebe26d054cba /extensions/BMO/Extension.pm
parentb09be15c170b39ec2c1553efcfd8f795e4847ad5 (diff)
downloadbugzilla-0677733f0afbf6e4b5b414e8ae928dea34bff893.tar.gz
bugzilla-0677733f0afbf6e4b5b414e8ae928dea34bff893.tar.xz
Bug 1135164: display a warning on show_bug when an unassigned bug has a patch attached
Diffstat (limited to 'extensions/BMO/Extension.pm')
-rw-r--r--extensions/BMO/Extension.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm
index 02824f471..1c25da749 100644
--- a/extensions/BMO/Extension.pm
+++ b/extensions/BMO/Extension.pm
@@ -65,6 +65,8 @@ our $VERSION = '0.1';
BEGIN {
*Bugzilla::Bug::last_closed_date = \&_last_closed_date;
*Bugzilla::Bug::reporters_hw_os = \&_bug_reporters_hw_os;
+ *Bugzilla::Bug::is_unassigned = \&_bug_is_unassigned;
+ *Bugzilla::Bug::has_patch = \&_bug_has_patch;
*Bugzilla::Product::default_security_group = \&_default_security_group;
*Bugzilla::Product::default_security_group_obj = \&_default_security_group_obj;
*Bugzilla::Product::group_always_settable = \&_group_always_settable;
@@ -761,6 +763,23 @@ sub _bug_reporters_hw_os {
return $self->{ua_hw_os} = $hw_os;
}
+sub _bug_is_unassigned {
+ my ($self) = @_;
+ my $assignee = $self->assigned_to->login;
+ return $assignee eq 'nobody@mozilla.org' || $assignee =~ /\.bugs$/;
+}
+
+sub _bug_has_patch {
+ my ($self) = @_;
+ foreach my $attachment (@{ $self->attachments }) {
+ return 1 if
+ $attachment->ispatch
+ || $attachment->contenttype eq 'text/x-github-pull-request'
+ || $attachment->contenttype eq 'text/x-review-board-request';
+ }
+ return 0;
+}
+
sub _product_default_platform_id { $_[0]->{default_platform_id} }
sub _product_default_op_sys_id { $_[0]->{default_op_sys_id} }