From f3289e9ca4c9194d7c737aa7e63a63573ac480c7 Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Tue, 30 May 2023 14:32:45 +0300 Subject: Tweaked Wayback Classic https://github.com/libredirect/browser_extension/issues/721 --- src/assets/javascripts/services.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/assets/javascripts/services.js') diff --git a/src/assets/javascripts/services.js b/src/assets/javascripts/services.js index c3f6a4e2..28fb334a 100644 --- a/src/assets/javascripts/services.js +++ b/src/assets/javascripts/services.js @@ -477,12 +477,18 @@ function redirect(url, type, initiator, forceRedirection) { return `${randomInstance}${url.pathname}${url.search}` } case "waybackClassic": { - const regex = /^\/\web\/[0-9]+\*\/(.*)/.exec(url.pathname) + const regex = /^\/\web\/(?:[0-9]+)?\*\/(.*)/.exec(url.pathname) if (regex) { const link = regex[1] return `${randomInstance}/cgi-bin/history.cgi?utf8=✓&q=${encodeURIComponent(link)}` } - return `${randomInstance}` + const regex2 = /(^\/\web\/([0-9]+)\/.*)/.exec(url.pathname) + if (regex2) { + let link = regex2[1] + link = link.replace(regex2[2], regex2[2] + 'if_') + return `https://web.archive.org${link}` + } + return } case "gothub": { const regex = /^\/(.*)\/(.*)\/(?:blob|tree)\/(.*)\/(.*)/.exec(url.pathname) -- cgit 1.4.1