1
Fork 0

Improvements owowowowowo

This commit is contained in:
Ashley 2022-11-07 20:33:46 +01:00
parent c1e016ff5e
commit 6766406ef7

161
server.js
View file

@ -130,73 +130,85 @@ app.get("/watch", async function (req, res) {
const jj = await info.text(); const jj = await info.text();
const ip = JSON.parse(jj); const ip = JSON.parse(jj);
core.video(v).then((data) => { for (let i = 0; i < 2; i++) {
const k = data.video; try {
const json = data.json; core.video(v).then((data) => {
const engagement = data.engagement; const k = data.video;
var inv_comments = data.comments; const json = data.json;
const inv_vid = data.vid; const engagement = data.engagement;
var inv_comments = data.comments;
const inv_vid = data.vid;
if (!data.comments) inv_comments = "Disabled"; if (!data.comments) inv_comments = "Disabled";
if (!core.video(v).b) { if (!core.video(v).b) {
var nnn = ""; var nnn = "";
var badges = ""; var badges = "";
var comments = ""; var comments = "";
}
if (!v) res.redirect("/");
if (q === "medium") {
var url = `https://inv.vern.cc/latest_version?id=${v}&itag=18&local=true`;
}
// encryption
const url_e =
url +
"?e=" +
sha384(k.Video.Channel.id) +
sha384(k.Video.Channel.id) +
"Piwik" +
sha384(config.t_url);
const desc = data.desc;
var d = desc.toString().replace(/\n/g, " <br> ");
if (d === "[object Object]") {
var d = false;
}
renderTemplate(res, req, "poketube.ejs", {
url: url_e,
color: data.color,
engagement: engagement,
video: json,
date: k.Video.uploadDate,
e: e,
k: k,
process: process,
sha384: sha384,
isMobile: req.useragent.isMobile,
tj: data.channel,
r: r,
qua: q,
inv: inv_comments,
ip: ip,
convert: convert,
wiki: data.wiki,
f: f,
t: config.t_url,
optout: t,
badges: badges,
desc: desc,
comments: comments,
n: nnn,
inv_vid,
lyrics: "",
});
});
break;
} catch (err) {
if (err.status === 503) {
// retry after a bit
await new Promise((resolve) => setTimeout(resolve, 1000));
} else {
return "";
}
} }
}
if (!v) res.redirect("/");
if (q === "medium") {
var url = `https://inv.vern.cc/latest_version?id=${v}&itag=18&local=true`;
}
// encryption
const url_e =
url +
"?e=" +
sha384(k.Video.Channel.id) +
sha384(k.Video.Channel.id) +
"Piwik" +
sha384(config.t_url);
const desc = data.desc;
var d = desc.toString().replace(/\n/g, " <br> ");
if (d === "[object Object]") {
var d = false;
}
renderTemplate(res, req, "poketube.ejs", {
url: url_e,
color: data.color,
engagement: engagement,
video: json,
date: k.Video.uploadDate,
e: e,
k: k,
process: process,
sha384: sha384,
isMobile: req.useragent.isMobile,
tj: data.channel,
r: r,
qua: q,
inv: inv_comments,
ip: ip,
convert: convert,
wiki: data.wiki,
f: f,
t: config.t_url,
optout: t,
badges: badges,
desc: desc,
comments: comments,
n: nnn,
inv_vid,
lyrics: "",
});
});
}); });
app.get("/music", async function (req, res) { app.get("/music", async function (req, res) {
@ -588,7 +600,6 @@ app.get("/api/instances.json", async (req, res) => {
///////////// REDIRECTS / DEPRACATED ///////////// ///////////// REDIRECTS / DEPRACATED /////////////
app.get("/discover", async function (req, res) { app.get("/discover", async function (req, res) {
const trends = await modules.fetch(config.tubeApi + `trending`); const trends = await modules.fetch(config.tubeApi + `trending`);
const h = await trends.text(); const h = await trends.text();
const k = JSON.parse(modules.toJson(h)); const k = JSON.parse(modules.toJson(h));
@ -631,7 +642,6 @@ app.get("/discover", async function (req, res) {
continuation, continuation,
j, j,
}); });
}); });
app.get("/hashtag/:id", (req, res) => { app.get("/hashtag/:id", (req, res) => {
@ -648,22 +658,17 @@ app.get("/video/upload", (req, res) => {
///////////// 404 AND MAIN PAGES ETC ///////////// ///////////// 404 AND MAIN PAGES ETC /////////////
app.get("/:v*?", async function (req, res) { app.get("/:v*?", async function (req, res) {
if (req.params.v) {
const isvld = await core.isvalidvideo(req.params.v);
if(req.params.v) {
const isvld = await core.isvalidvideo(req.params.v); if (isvld) {
return res.redirect(`/watch?v=${req.params.v}`);
if(isvld) {
return res.redirect(`/watch?v=${req.params.v}`)
} else { } else {
return res.redirect("/discover"); return res.redirect("/discover");
} }
} else { } else {
return res.redirect("/discover"); return res.redirect("/discover");
} }
}); });
app.get("/*", function (req, res) { app.get("/*", function (req, res) {