From ed35505e54bc271a930596eb139678b6b4332f28 Mon Sep 17 00:00:00 2001 From: Dylan Hardison Date: Wed, 18 Nov 2015 16:11:39 -0500 Subject: Bug 1223999 - Add See-Also support for aha.io features --- Bugzilla/BugUrl/Aha.pm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Bugzilla/BugUrl/Aha.pm (limited to 'Bugzilla/BugUrl') diff --git a/Bugzilla/BugUrl/Aha.pm b/Bugzilla/BugUrl/Aha.pm new file mode 100644 index 000000000..a37af3b67 --- /dev/null +++ b/Bugzilla/BugUrl/Aha.pm @@ -0,0 +1,33 @@ +# 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::Aha; +use strict; +use base qw(Bugzilla::BugUrl); + +############################### +#### Methods #### +############################### + +sub should_handle { + my ($class, $uri) = @_; + + return $uri =~ m!^https?://[^.]+\.aha\.io/features/(\w+)-(\d+)!; +} + +sub _check_value { + my ($class, $uri) = @_; + + $uri = $class->SUPER::_check_value($uri); + + # Aha HTTP URLs redirect to HTTPS, so just use the HTTPS scheme. + $uri->scheme('https'); + + return $uri; +} + +1; -- cgit v1.2.3-24-g4f1b