pass through urls

This commit is contained in:
Lamp 2025-01-13 02:36:28 -05:00
parent 3ec5c283c9
commit 34c47b0540

11
u2b.js

@ -14,15 +14,22 @@ require("http").createServer(async function (req, res) {
return;
}
var input = decodeURIComponent(req.url.slice(1));
if (/^https?:\/\//i.test(input)) {
res.writeHead(302, {"Location": input});
res.end();
return;
}
if (/\.\w+$/i.test(req.url)) {
res.writeHead(404);
res.end();
return;
}
var input = decodeURIComponent(req.url.slice(1));
var video_id = input.match(/(?:^id\/|(?:https?:\/\/)?(?:(?:www\.|music\.|m\.)?youtube\.com\/(?:watch\?v=|shorts\/|live\/)|youtu\.be\/))([A-Za-z0-9_-]{11})/)?.[1];
if (!video_id) {
var search_input = input.match(/^(.+?)(?:\/(\d*))?$/);
if (!search_input) {