mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 01:38:03 +01:00
encryption url
This commit is contained in:
parent
914f9d386b
commit
f203ada478
1 changed files with 6 additions and 5 deletions
11
server.js
11
server.js
|
@ -141,11 +141,12 @@ app.get("/watch", async function (req, res) {
|
|||
if (!v) res.redirect("/");
|
||||
|
||||
// video
|
||||
const j = fetching.video.Player.Formats.Format,
|
||||
j_ = Array.isArray(j) ? j[j.length - 1] : j;
|
||||
let url;
|
||||
if (j_.URL != undefined) url = j_.URL;
|
||||
const url = `https://tube.kuylar.dev/proxy/media/${v}/18`
|
||||
|
||||
// encryption
|
||||
|
||||
const url_e = url + "?e="+ sha384(json.id) + sha384(json.Title)
|
||||
|
||||
// channel info
|
||||
const engagement = fetching.engagement;
|
||||
const channel = await fetch(config.tubeApi + `channel?id=${json.Channel.id}&tab=videos`);
|
||||
|
@ -159,7 +160,7 @@ app.get("/watch", async function (req, res) {
|
|||
|
||||
|
||||
renderTemplate(res, req, "poketube.ejs", {
|
||||
url: url,
|
||||
url: url_e,
|
||||
color: await getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`).then((colors) => colors[0].hex()),
|
||||
engagement: engagement,
|
||||
video: json,
|
||||
|
|
Loading…
Reference in a new issue