mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-23 00:37:49 +01:00
add filters!!
This commit is contained in:
parent
e15597573f
commit
2509fde9d3
1 changed files with 17 additions and 16 deletions
|
@ -62,6 +62,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
res.redirect(`/watch?v=${v}`);
|
||||
});
|
||||
|
||||
|
||||
app.get("/search", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
const tab = req.query.tab;
|
||||
|
@ -101,28 +102,28 @@ module.exports = function (app, config, renderTemplate) {
|
|||
}
|
||||
|
||||
let continuation = req.query.continuation || "";
|
||||
|
||||
let date = req.query.date || "";
|
||||
let type = req.query.type || "";
|
||||
let duration = req.query.duration || "";
|
||||
let sort = req.query.sort || "";
|
||||
|
||||
try {
|
||||
const headers = {};
|
||||
|
||||
const searchUrl = `https://inner-api.poketube.fun/api/search?query=${encodeURIComponent(
|
||||
const xmlData = await fetch(`https://invid-api.poketube.fun/api/v1/search?q=${encodeURIComponent(
|
||||
query
|
||||
)}&continuation=${encodeURIComponent(continuation)}`;
|
||||
const player = await fetch(searchUrl);
|
||||
const xmlData = await player.text();
|
||||
const searchJson = JSON.parse(modules.toJson(xmlData));
|
||||
|
||||
let didYouMean;
|
||||
if (
|
||||
searchJson.Search?.Results?.DynamicItem?.id === "didYouMeanRenderer"
|
||||
) {
|
||||
didYouMean = JSON.parse(searchJson.Search.Results.DynamicItem.Title);
|
||||
}
|
||||
|
||||
)}&page=${encodeURIComponent(continuation)}&date=${date}&type=${type}&duration=${duration}&sort=${sort}&hl=en+gb`)
|
||||
.then((res) => res.text())
|
||||
.then((txt) => getJson(txt));
|
||||
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: searchJson,
|
||||
invresults: xmlData,
|
||||
turntomins,
|
||||
date,
|
||||
type,
|
||||
duration,
|
||||
sort,
|
||||
IsOldWindows,
|
||||
h: didYouMean,
|
||||
tab,
|
||||
continuation,
|
||||
results: "",
|
||||
|
|
Loading…
Reference in a new issue