1
Fork 0
This commit is contained in:
Ashley 2022-07-15 16:29:02 +03:00 committed by GitHub
parent 2f33ec80f6
commit acaaae8759
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ app.get("/old/watch", async function (req, res) {
lyrics: lyrics.replace(/\n/g, " <br> "), lyrics: lyrics.replace(/\n/g, " <br> "),
}); });
}); });
app.get("/", async function (req, res) { app.get("/feed/discover/trends", async function (req, res) {
const trends = await fetch(config.tubeApi + `trending`); const trends = await fetch(config.tubeApi + `trending`);
const h = await trends.text(); const h = await trends.text();
const k = JSON.parse(toJson(h)); const k = JSON.parse(toJson(h));
@ -256,10 +256,15 @@ app.get("/search", async (req, res) => {
app.get("/css/:id", (req, res) => { app.get("/css/:id", (req, res) => {
res.sendFile(__dirname + `/css/${req.params.id}`); res.sendFile(__dirname + `/css/${req.params.id}`);
}); });
app.get("/js/:id", (req, res) => {
res.sendFile(__dirname + `/js/${req.params.id}`);
});
app.get("/video/upload", (req, res) => { app.get("/video/upload", (req, res) => {
res.redirect("https://youtube.com/upload?from=poketube_utc"); res.redirect("https://youtube.com/upload?from=poketube_utc");
}); });
app.get("/", (req, res) => {
res.redirect("/feed/discover/trends?param=/");
});
app.get("/api/video/download", async function (req, res) { app.get("/api/video/download", async function (req, res) {
var v = req.query.v; var v = req.query.v;
var fetching = await fetcher(v); var fetching = await fetcher(v);