diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-01-25 21:19:51 +0100 |
---|---|---|
committer | Tiago Mello <timello@gmail.com> | 2012-01-25 21:19:51 +0100 |
commit | e330e0c5d27ad77ca2c9839609cbf88ffd4efef9 (patch) | |
tree | a63ddc682a96b3adf0f6a466b522f65c663e5b8c /Bugzilla/BugUrl | |
parent | 15f7b4a8742210c2722f27e8ae7184f7be4da4f1 (diff) | |
download | bugzilla-e330e0c5d27ad77ca2c9839609cbf88ffd4efef9.tar.gz bugzilla-e330e0c5d27ad77ca2c9839609cbf88ffd4efef9.tar.xz |
Bug 617802: Add see also support for Rietveld installations on appspot.com
r=timello, a=LpSolit
Diffstat (limited to 'Bugzilla/BugUrl')
-rw-r--r-- | Bugzilla/BugUrl/Rietveld.pm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl/Rietveld.pm b/Bugzilla/BugUrl/Rietveld.pm new file mode 100644 index 000000000..9baf85d8d --- /dev/null +++ b/Bugzilla/BugUrl/Rietveld.pm @@ -0,0 +1,45 @@ +# 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::Rietveld; +use strict; +use base qw(Bugzilla::BugUrl); + +############################### +#### Methods #### +############################### + +sub should_handle { + my ($class, $uri) = @_; + return ($uri->authority =~ /\.appspot\.com$/i + and $uri->path =~ m#^/\d+(?:/|/show)?$#) ? 1 : 0; +} + +sub _check_value { + my ($class, $uri) = @_; + + $uri = $class->SUPER::_check_value($uri); + + # Rietveld URLs have three forms: + # http(s)://example.appspot.com/1234 + # http(s)://example.appspot.com/1234/ + # http(s)://example.appspot.com/1234/show + if ($uri->path =~ m#^/(\d+)(?:/|/show)$#) { + # This is the shortest standard URL form for Rietveld issues, + # and so we reduce all URLs to this. + $uri->path('/' . $1); + } + + # Make sure there are no query parameters. + $uri->query(undef); + # And remove any # part if there is one. + $uri->fragment(undef); + + return $uri; +} + +1; |