From 197afbecb29bbc96f88c4868541a19172d86e485 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 13 Apr 2016 23:57:50 +0800 Subject: Bug 1264207 - add support for the hellosplat tracker to 'see also' --- Bugzilla/BugUrl.pm | 1 + Bugzilla/BugUrl/Splat.pm | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 Bugzilla/BugUrl/Splat.pm (limited to 'Bugzilla') 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; -- cgit v1.2.3-24-g4f1b