From: ilmari-lauhakangas Date: Wed, 11 Sep 2024 16:53:13 +0000 (+0300) Subject: Bug 1523814 - Add missing WineHQForums.pm (#199) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec8da3c92f29c5a2421ffac2ff6cf7bb5139a419;p=thirdparty%2Fbugzilla.git Bug 1523814 - Add missing WineHQForums.pm (#199) Co-authored-by: Olivier F. R. Dierick --- diff --git a/extensions/MoreBugUrl/lib/WineHQForums.pm b/extensions/MoreBugUrl/lib/WineHQForums.pm new file mode 100644 index 0000000000..42e6d99ca0 --- /dev/null +++ b/extensions/MoreBugUrl/lib/WineHQForums.pm @@ -0,0 +1,46 @@ +# 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::Extension::MoreBugUrl::WineHQForums; + +use 5.14.0; +use strict; +use warnings; + +use base qw(Bugzilla::BugUrl); + +############################### +#### Methods #### +############################### + +sub should_handle { + my ($class, $uri) = @_; + + # WineHQ Forums URLs only have one form: + # http(s)://forum.winehq.org/viewtopic.php?f=1234&t=1234 + return (lc($uri->authority) eq 'forum.winehq.org' + and $uri->path =~ m|^/viewtopic\.php$| + and $uri->query_param('f') =~ /^\d+$/ + and $uri->query_param('t') =~ /^\d+$/) ? 1 : 0; +} + +sub _check_value { + my $class = shift; + + my $uri = $class->SUPER::_check_value(@_); + + # WineHQ Forums HTTP URLs redirect to HTTPS, so just use the HTTPS + # scheme. + $uri->scheme('https'); + + # Remove any # part if there is one. + $uri->fragment(undef); + + return $uri; +} + +1; \ No newline at end of file