mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 10:58:25 +01:00
qwq
This commit is contained in:
parent
5634a5cb87
commit
e460c94a18
1 changed files with 35 additions and 18 deletions
53
server.js
53
server.js
|
@ -173,7 +173,7 @@ app.get("/watch", async function (req, res) {
|
||||||
color: data.color,
|
color: data.color,
|
||||||
engagement: engagement,
|
engagement: engagement,
|
||||||
video: json,
|
video: json,
|
||||||
date: modules.moment(k.Video.uploadDate).format("LL"),
|
date: k.Video.uploadDate,
|
||||||
e: e,
|
e: e,
|
||||||
k: k,
|
k: k,
|
||||||
process: process,
|
process: process,
|
||||||
|
@ -588,23 +588,7 @@ 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) {
|
||||||
res.redirect("/");
|
|
||||||
});
|
|
||||||
|
|
||||||
app.get("/hashtag/:id", (req, res) => {
|
|
||||||
if (!req.params.id) {
|
|
||||||
return res.redirect("/");
|
|
||||||
}
|
|
||||||
|
|
||||||
return res.redirect(`/search?query=${req.params.id}&from=hashtag`);
|
|
||||||
});
|
|
||||||
|
|
||||||
app.get("/video/upload", (req, res) => {
|
|
||||||
res.redirect("https://youtube.com/upload");
|
|
||||||
});
|
|
||||||
|
|
||||||
///////////// 404 AND MAIN PAGES ETC /////////////
|
|
||||||
app.get("/", 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));
|
||||||
|
@ -647,9 +631,42 @@ app.get("/", async function (req, res) {
|
||||||
continuation,
|
continuation,
|
||||||
j,
|
j,
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("*", function (req, res) {
|
app.get("/hashtag/:id", (req, res) => {
|
||||||
|
if (!req.params.id) {
|
||||||
|
return res.redirect("/");
|
||||||
|
}
|
||||||
|
|
||||||
|
return res.redirect(`/search?query=${req.params.id}&from=hashtag`);
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/video/upload", (req, res) => {
|
||||||
|
res.redirect("https://youtube.com/upload");
|
||||||
|
});
|
||||||
|
|
||||||
|
///////////// 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}`)
|
||||||
|
} else {
|
||||||
|
return res.redirect("/discover");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return res.redirect("/discover");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/*", function (req, res) {
|
||||||
const things = random_words[Math.floor(Math.random() * random_words.length)];
|
const things = random_words[Math.floor(Math.random() * random_words.length)];
|
||||||
renderTemplate(res, req, "404.ejs", {
|
renderTemplate(res, req, "404.ejs", {
|
||||||
random: things,
|
random: things,
|
||||||
|
|
Loading…
Reference in a new issue