summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Static.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Quantum/Static.pm')
-rw-r--r--Bugzilla/Quantum/Static.pm32
1 files changed, 32 insertions, 0 deletions
diff --git a/Bugzilla/Quantum/Static.pm b/Bugzilla/Quantum/Static.pm
new file mode 100644
index 000000000..2a4ed1988
--- /dev/null
+++ b/Bugzilla/Quantum/Static.pm
@@ -0,0 +1,32 @@
+# 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::Quantum::Static;
+use Mojo::Base 'Mojolicious::Static';
+use Bugzilla::Constants qw(bz_locations);
+
+my $LEGACY_RE = qr{
+ ^ (?:static/v[0-9]+\.[0-9]+/) ?
+ ( (?:extensions/[^/]+/web|(?:image|skin|j)s)/.+)
+ $
+}xs;
+
+sub file {
+ my ($self, $rel) = @_;
+
+ if (my ($legacy_rel) = $rel =~ $LEGACY_RE) {
+ local $self->{paths} = [ bz_locations->{cgi_path} ];
+ warn "legacy $legacy_rel\n";
+ return $self->SUPER::file($legacy_rel);
+ }
+ else {
+ warn "legacy $rel\n";
+ return $self->SUPER::file($rel);
+ }
+}
+
+1; \ No newline at end of file