mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 03:34:46 -05:00
make it faster
This commit is contained in:
parent
6e2907f667
commit
d79678d4cc
1 changed files with 61 additions and 35 deletions
|
@ -31,11 +31,11 @@ function getJson(str) {
|
|||
}
|
||||
|
||||
const ChannelTabs = {
|
||||
community: "Y29tbXVuaXR5",
|
||||
shorts:"c2hvcnRz",
|
||||
videos:"dmlkZW9z",
|
||||
streams:"c3RyZWFtcw=="
|
||||
}
|
||||
community: "Y29tbXVuaXR5",
|
||||
shorts: "c2hvcnRz",
|
||||
videos: "dmlkZW9z",
|
||||
streams: "c3RyZWFtcw==",
|
||||
};
|
||||
|
||||
module.exports = function (app, config, renderTemplate) {
|
||||
app.get("/download", async function (req, res) {
|
||||
|
@ -63,10 +63,9 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
app.get("/search", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
const tab = req.query.tab
|
||||
|
||||
const search = require('google-it')
|
||||
const tab = req.query.tab;
|
||||
|
||||
const search = require("google-it");
|
||||
|
||||
var uaos = req.useragent.os;
|
||||
var IsOldWindows;
|
||||
|
@ -114,24 +113,41 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const searchJson = getJson(searchText);
|
||||
|
||||
let didYouMean;
|
||||
if ( searchJson.Search?.Results?.DynamicItem?.id === "didYouMeanRenderer" ) { didYouMean = JSON.parse(searchJson.Search.Results.DynamicItem.Title);
|
||||
if (
|
||||
searchJson.Search?.Results?.DynamicItem?.id === "didYouMeanRenderer"
|
||||
) {
|
||||
didYouMean = JSON.parse(searchJson.Search.Results.DynamicItem.Title);
|
||||
}
|
||||
|
||||
search({'query': `${req.query.query}`}).then(results => {
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: searchJson,
|
||||
IsOldWindows,
|
||||
h: didYouMean,
|
||||
tab,
|
||||
continuation,
|
||||
results:results,
|
||||
q: query,
|
||||
summary: "",
|
||||
});
|
||||
}).catch(e => {
|
||||
console.log(e)
|
||||
})
|
||||
|
||||
if (tab) {
|
||||
search({ query: `${req.query.query}` })
|
||||
.then((results) => {
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: searchJson,
|
||||
IsOldWindows,
|
||||
h: didYouMean,
|
||||
tab,
|
||||
continuation,
|
||||
results: results,
|
||||
q: query,
|
||||
summary: "",
|
||||
});
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
});
|
||||
} else {
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: searchJson,
|
||||
IsOldWindows,
|
||||
h: didYouMean,
|
||||
tab,
|
||||
continuation,
|
||||
results: "",
|
||||
q: query,
|
||||
summary: "",
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(`Error while searching for '${query}':`, error);
|
||||
res.redirect("/");
|
||||
|
@ -175,12 +191,19 @@ module.exports = function (app, config, renderTemplate) {
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
const apiUrl = "https://invid-api.poketube.fun/api/v1/channels/";
|
||||
const channelUrl = `${apiUrl}${atob(ChannelTabs.videos)}/${ID}/?sort_by=${sort_by}${continuation}`;
|
||||
const shortsUrl = `${apiUrl}${ID}/${atob(ChannelTabs.shorts)}?sort_by=${sort_by}${continuations}`;
|
||||
const streamUrl = `${apiUrl}${ID}/${atob(ChannelTabs.streams)}?sort_by=${sort_by}${continuationl}`;
|
||||
const communityUrl = `${apiUrl}${atob(ChannelTabs.community)}/${ID}/?hl=en-US`;
|
||||
const channelUrl = `${apiUrl}${atob(
|
||||
ChannelTabs.videos
|
||||
)}/${ID}/?sort_by=${sort_by}${continuation}`;
|
||||
const shortsUrl = `${apiUrl}${ID}/${atob(
|
||||
ChannelTabs.shorts
|
||||
)}?sort_by=${sort_by}${continuations}`;
|
||||
const streamUrl = `${apiUrl}${ID}/${atob(
|
||||
ChannelTabs.streams
|
||||
)}?sort_by=${sort_by}${continuationl}`;
|
||||
const communityUrl = `${apiUrl}${atob(
|
||||
ChannelTabs.community
|
||||
)}/${ID}/?hl=en-US`;
|
||||
|
||||
const channelINVUrl = `${apiUrl}${ID}/`;
|
||||
|
||||
|
@ -210,7 +233,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
const subscribers = boutJson.Channel?.Metadata.Subscribers;
|
||||
const about = boutJson?.Channel?.Contents?.ItemSection?.About;
|
||||
const description = about?.Description.toString().replace(/\n/g, " <br> ");
|
||||
const description = about?.Description.toString().replace(
|
||||
/\n/g,
|
||||
" <br> "
|
||||
);
|
||||
const dnoreplace = about?.Description.toString();
|
||||
|
||||
renderTemplate(res, req, "channel.ejs", {
|
||||
|
|
Loading…
Reference in a new issue