mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:38:24 +01:00
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
const fs = require("fs");
|
|
const express = require("express");
|
|
const fetch = require("node-fetch");
|
|
const htmlParser = require("node-html-parser");
|
|
const lyrics = require("./lyrics.js");
|
|
|
|
const app = express();
|
|
|
|
app.use(express.json()); // for parsing application/json
|
|
app.use(express.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
|
|
|
|
let Proxy = async (req, res) => {
|
|
const url = "https://" + req.originalUrl.slice(10);
|
|
|
|
let f = await fetch(url, {
|
|
method: req.method,
|
|
});
|
|
if (false && f.headers.get("content-type").includes("html")) {
|
|
const body = await f.text();
|
|
if (false && !htmlParser.valid(body)) {
|
|
console.warn(`[ERROR] Invalid HTML at ${url}`);
|
|
f.body.pipe(res);
|
|
return;
|
|
}
|
|
const root = htmlParser.parse(body);
|
|
let html = root.childNodes.filter(
|
|
(x) => x.tagName && x.tagName.toLowerCase() == "html"
|
|
)[0];
|
|
|
|
if (!html) {
|
|
console.warn(`[ERROR] No <html> at ${url}`);
|
|
res.send(body);
|
|
return;
|
|
}
|
|
|
|
res.send(html.toString());
|
|
} else {
|
|
f.body.pipe(res);
|
|
}
|
|
};
|
|
|
|
const listener = (req, res) => {
|
|
Proxy(req, res);
|
|
};
|
|
|
|
app.get("/", (req, res) => res.redirect(`https://poketube.fun/watch?v=l3eww1dnd0k&trck=we_dont_lol&hi=mom&i_like_this=yes&omgfr=tru&AAAAA=BBBBBB&unclebenwhathappend=squidgames`));
|
|
|
|
|
|
app.get("/api/lyrics", async (req, res) => {
|
|
const query = req.query.query;
|
|
|
|
res.json(await lyrics(query))
|
|
|
|
});
|
|
|
|
|
|
app.all("/*", listener);
|
|
|
|
app.listen(3000, () => {});
|
|
|