mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 13:14:38 -05:00
whoa cool stuff
This commit is contained in:
parent
d0483d2c73
commit
9ba1da8ae3
1 changed files with 37 additions and 35 deletions
|
@ -194,9 +194,8 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
req.hostname == "poketube.fun" ||
|
req.hostname == "poketube.fun" ||
|
||||||
req.hostname == "poketube.site" ||
|
req.hostname == "poketube.site" ||
|
||||||
req.hostname == "poketube.online" ||
|
req.hostname == "poketube.online" ||
|
||||||
req.hostname == "poketube.xyz" ||
|
req.hostname == "poketube.xyz"
|
||||||
req.hostname == "watch.poketalebot.com"
|
) {
|
||||||
) {
|
|
||||||
secure = true;
|
secure = true;
|
||||||
} else {
|
} else {
|
||||||
secure = false;
|
secure = false;
|
||||||
|
@ -282,14 +281,14 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
res.redirect("/");
|
res.redirect("/?fromerror=24");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
res.redirect("/");
|
res.redirect("/?fromerror=21");
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
res.redirect("/");
|
return res.redirect("/?fromerror=43");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -458,38 +457,41 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
if (!song) {
|
if (!song) {
|
||||||
res.redirect(`/watch?v=${v}`);
|
res.redirect(`/watch?v=${v}`);
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
const lyrics = await lyricsFinder(song.artist + song.title);
|
||||||
|
if (lyrics == undefined)
|
||||||
|
ly = "This Is Where I'd Put The songs lyrics. IF IT HAD ONE ";
|
||||||
|
|
||||||
const lyrics = await lyricsFinder(song.artist + song.title);
|
var ly = "";
|
||||||
if (lyrics == undefined)
|
if (lyrics) {
|
||||||
ly = "This Is Where I'd Put The songs lyrics. IF IT HAD ONE ";
|
ly = lyrics.replace(/\n/g, " <br> ");
|
||||||
|
}
|
||||||
|
|
||||||
var ly = "";
|
renderTemplate(res, req, "poketube-music.ejs", {
|
||||||
if (lyrics) {
|
url: url_e,
|
||||||
ly = lyrics.replace(/\n/g, " <br> ");
|
info: song,
|
||||||
|
color: await modules
|
||||||
|
.getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`)
|
||||||
|
.then((colors) => colors[0].hex()),
|
||||||
|
engagement: engagement,
|
||||||
|
process: process,
|
||||||
|
ip: ip,
|
||||||
|
video: json,
|
||||||
|
date: modules.moment(k.Video.uploadDate).format("LL"),
|
||||||
|
e: e,
|
||||||
|
k: k,
|
||||||
|
sha384: sha384,
|
||||||
|
isMobile: req.useragent.isMobile,
|
||||||
|
tj: tj,
|
||||||
|
r: r,
|
||||||
|
f: f,
|
||||||
|
t: config.t_url,
|
||||||
|
optout: t,
|
||||||
|
lyrics: ly,
|
||||||
|
});
|
||||||
|
} catch {
|
||||||
|
return res.redirect("/?fromerror=43");
|
||||||
}
|
}
|
||||||
|
|
||||||
renderTemplate(res, req, "poketube-music.ejs", {
|
|
||||||
url: url_e,
|
|
||||||
info: song,
|
|
||||||
color: await modules
|
|
||||||
.getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`)
|
|
||||||
.then((colors) => colors[0].hex()),
|
|
||||||
engagement: engagement,
|
|
||||||
process: process,
|
|
||||||
ip: ip,
|
|
||||||
video: json,
|
|
||||||
date: modules.moment(k.Video.uploadDate).format("LL"),
|
|
||||||
e: e,
|
|
||||||
k: k,
|
|
||||||
sha384: sha384,
|
|
||||||
isMobile: req.useragent.isMobile,
|
|
||||||
tj: tj,
|
|
||||||
r: r,
|
|
||||||
f: f,
|
|
||||||
t: config.t_url,
|
|
||||||
optout: t,
|
|
||||||
lyrics: ly,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue