mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 03:08:38 +01:00
Improvements owowowowowo
This commit is contained in:
parent
c1e016ff5e
commit
6766406ef7
1 changed files with 83 additions and 78 deletions
21
server.js
21
server.js
|
@ -130,6 +130,8 @@ app.get("/watch", async function (req, res) {
|
|||
const jj = await info.text();
|
||||
const ip = JSON.parse(jj);
|
||||
|
||||
for (let i = 0; i < 2; i++) {
|
||||
try {
|
||||
core.video(v).then((data) => {
|
||||
const k = data.video;
|
||||
const json = data.json;
|
||||
|
@ -197,6 +199,16 @@ app.get("/watch", async function (req, res) {
|
|||
lyrics: "",
|
||||
});
|
||||
});
|
||||
break;
|
||||
} catch (err) {
|
||||
if (err.status === 503) {
|
||||
// retry after a bit
|
||||
await new Promise((resolve) => setTimeout(resolve, 1000));
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
app.get("/music", async function (req, res) {
|
||||
|
@ -588,7 +600,6 @@ app.get("/api/instances.json", async (req, res) => {
|
|||
///////////// REDIRECTS / DEPRACATED /////////////
|
||||
|
||||
app.get("/discover", async function (req, res) {
|
||||
|
||||
const trends = await modules.fetch(config.tubeApi + `trending`);
|
||||
const h = await trends.text();
|
||||
const k = JSON.parse(modules.toJson(h));
|
||||
|
@ -631,7 +642,6 @@ app.get("/discover", async function (req, res) {
|
|||
continuation,
|
||||
j,
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
app.get("/hashtag/:id", (req, res) => {
|
||||
|
@ -648,22 +658,17 @@ app.get("/video/upload", (req, res) => {
|
|||
|
||||
///////////// 404 AND MAIN PAGES ETC /////////////
|
||||
app.get("/:v*?", async function (req, res) {
|
||||
|
||||
|
||||
if (req.params.v) {
|
||||
const isvld = await core.isvalidvideo(req.params.v);
|
||||
|
||||
if (isvld) {
|
||||
return res.redirect(`/watch?v=${req.params.v}`)
|
||||
return res.redirect(`/watch?v=${req.params.v}`);
|
||||
} else {
|
||||
return res.redirect("/discover");
|
||||
}
|
||||
} else {
|
||||
return res.redirect("/discover");
|
||||
|
||||
}
|
||||
|
||||
|
||||
});
|
||||
|
||||
app.get("/*", function (req, res) {
|
||||
|
|
Loading…
Reference in a new issue