mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 12:38:26 +01:00
fix some issues :3
This commit is contained in:
parent
45dcdc741a
commit
322f0a28e7
1 changed files with 37 additions and 1 deletions
|
@ -12,6 +12,42 @@ const {
|
||||||
module.exports = function (app, config, renderTemplate) {
|
module.exports = function (app, config, renderTemplate) {
|
||||||
|
|
||||||
|
|
||||||
|
app.get("/embed/:v", async function (req, res) {
|
||||||
|
var e = req.query.e;
|
||||||
|
var f = req.query.f;
|
||||||
|
var t = req.query.t;
|
||||||
|
var q = req.query.quality;
|
||||||
|
var v = req.params.v;
|
||||||
|
|
||||||
|
var fetching = await fetcher(v);
|
||||||
|
const video = await modules.fetch(config.tubeApi + `video?v=${v}`);
|
||||||
|
|
||||||
|
const json = fetching.video.Player;
|
||||||
|
const h = await video.text();
|
||||||
|
const k = JSON.parse(modules.toJson(h));
|
||||||
|
const engagement = fetching.engagement;
|
||||||
|
|
||||||
|
if (!v) res.redirect("/");
|
||||||
|
|
||||||
|
//video
|
||||||
|
if (!q) url = `https://tube.kuylar.dev/proxy/media/${v}/22`;
|
||||||
|
if (q === "medium") {
|
||||||
|
var url = `https://tube.kuylar.dev/proxy/media/${v}/18`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderTemplate(res, req, "poketube-iframe.ejs", {
|
||||||
|
video: json,
|
||||||
|
url: url,
|
||||||
|
sha384: modules.hash,
|
||||||
|
qua: q,
|
||||||
|
engagement: engagement,
|
||||||
|
k: k,
|
||||||
|
optout: t,
|
||||||
|
t: config.t_url,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
app.get("/api/search", async (req, res) => {
|
app.get("/api/search", async (req, res) => {
|
||||||
const query = req.query.query;
|
const query = req.query.query;
|
||||||
|
|
Loading…
Reference in a new issue