summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugUrl
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2015-11-18 22:11:39 +0100
committerDylan Hardison <dylan@mozilla.com>2015-11-18 22:11:39 +0100
commited35505e54bc271a930596eb139678b6b4332f28 (patch)
treeba56d1a34aaefd18a470b67b462fc343b16f64bc /Bugzilla/BugUrl
parent36652801f98aacde4e6893a75a7ddeb9c6741782 (diff)
downloadbugzilla-ed35505e54bc271a930596eb139678b6b4332f28.tar.gz
bugzilla-ed35505e54bc271a930596eb139678b6b4332f28.tar.xz
Bug 1223999 - Add See-Also support for aha.io features
Diffstat (limited to 'Bugzilla/BugUrl')
-rw-r--r--Bugzilla/BugUrl/Aha.pm33
1 files changed, 33 insertions, 0 deletions
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;