mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 06:08:34 +01:00
add more redirects :3
This commit is contained in:
parent
c80793cb2e
commit
cdd0cbf72b
1 changed files with 18 additions and 7 deletions
|
@ -108,15 +108,26 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
const poketube_universe_value = "poketube_smart_search";
|
||||
|
||||
if (query?.includes("youtube.com/watch?v=")) {
|
||||
try {
|
||||
var videoid = query?.split("v=");
|
||||
if (query) {
|
||||
let redirectTo = null;
|
||||
|
||||
res.redirect("/watch?v=" + videoid[1]);
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
if (query.includes("youtube.com/watch?v=")) {
|
||||
redirectTo = "/watch?v=";
|
||||
} else if (query.includes("channel:")) {
|
||||
redirectTo = "/channel?id=";
|
||||
} else if (query.includes("video:")) {
|
||||
redirectTo = "/watch?v=";
|
||||
}
|
||||
|
||||
if (redirectTo) {
|
||||
try {
|
||||
const id = query.split(":")[1];
|
||||
res.redirect(`${redirectTo}${id}`);
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (query && query.startsWith("!") && query.length > 2) {
|
||||
res.redirect("https://lite.duckduckgo.com/lite/?q=" + query);
|
||||
|
|
Loading…
Reference in a new issue