summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2016-04-13 17:57:50 +0200
committerByron Jones <glob@mozilla.com>2016-04-13 18:00:08 +0200
commit197afbecb29bbc96f88c4868541a19172d86e485 (patch)
tree8633d4328553f1bad5620bfbbe26468a2466be30 /Bugzilla
parent33f61556746e1729746342d802ca7ea9cea18caf (diff)
downloadbugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.gz
bugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.xz
Bug 1264207 - add support for the hellosplat tracker to 'see also'
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/BugUrl.pm1
-rw-r--r--Bugzilla/BugUrl/Splat.pm24
2 files changed, 25 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl.pm b/Bugzilla/BugUrl.pm
index c19f771f5..3b05057f8 100644
--- a/Bugzilla/BugUrl.pm
+++ b/Bugzilla/BugUrl.pm
@@ -75,6 +75,7 @@ use constant SUB_CLASSES => qw(
Bugzilla::BugUrl::Aha
Bugzilla::BugUrl::WebCompat
Bugzilla::BugUrl::ServiceNow
+ Bugzilla::BugUrl::Splat
);
###############################
diff --git a/Bugzilla/BugUrl/Splat.pm b/Bugzilla/BugUrl/Splat.pm
new file mode 100644
index 000000000..42918f0d4
--- /dev/null
+++ b/Bugzilla/BugUrl/Splat.pm
@@ -0,0 +1,24 @@
+# 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/.
+#
+# This Source Code Form is "Incompatible With Secondary Licenses", as
+# defined by the Mozilla Public License, v. 2.0.
+
+package Bugzilla::BugUrl::Splat;
+use strict;
+use base qw(Bugzilla::BugUrl);
+
+sub should_handle {
+ my ($class, $uri) = @_;
+ return $uri =~ m#^https?://hellosplat\.com/s/beanbag/tickets/\d+#;
+}
+
+sub _check_value {
+ my ($class, $uri) = @_;
+ $uri = $class->SUPER::_check_value($uri);
+ $uri->scheme('https'); # force https
+ return $uri;
+}
+
+1;