poke/src/libpoketube/init/pages-channel-and-download.js

217 lines
5.6 KiB
JavaScript
Raw Normal View History

2023-02-26 10:34:24 +01:00
const {
2022-11-18 10:42:25 +01:00
fetcher,
core,
wiki,
musicInfo,
modules,
version,
initlog,
init,
} = require("../libpoketube-initsys.js");
2022-11-09 17:52:57 +01:00
const {
IsJsonString,
convert,
getFirstLine,
capitalizeFirstLetter,
turntomins,
getRandomInt,
getRandomArbitrary,
} = require("../ptutils/libpt-coreutils.js");
2022-12-18 16:30:24 +01:00
const sha384 = modules.hash;
2022-12-09 18:13:14 +01:00
function getJson(str) {
try {
return JSON.parse(str);
} catch {
return null;
}
}
2022-11-09 17:52:57 +01:00
module.exports = function (app, config, renderTemplate) {
2022-11-18 10:42:25 +01:00
app.get("/download", async function (req, res) {
2023-03-26 14:30:07 +02:00
try {
2023-04-28 22:39:55 +02:00
var v = req.query.v;
2022-11-18 10:42:25 +01:00
2023-04-28 22:39:55 +02:00
renderTemplate(res, req, "download.ejs", {
2023-05-14 13:07:37 +02:00
v,
2023-04-28 22:39:55 +02:00
color: await modules
.getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`)
.then((colors) => colors[0].hex()),
});
2023-05-14 13:07:37 +02:00
2023-05-08 18:26:12 +02:00
2023-05-14 13:07:37 +02:00
} catch {
2023-04-28 22:39:55 +02:00
res.redirect("/");
2023-03-26 14:30:07 +02:00
}
2022-11-18 10:42:25 +01:00
});
app.get("/old/watch", async function (req, res) {
var v = req.query.v;
var e = req.query.e;
if (!v) res.redirect("/");
res.redirect(`/watch?v=${v}`);
2022-11-09 17:52:57 +01:00
});
2022-11-18 10:42:25 +01:00
app.get("/search", async (req, res) => {
const query = req.query.query;
2023-05-07 13:28:54 +02:00
const poketube_universe_value = "poketube_smart_search"
if(query.includes("youtube.com")){
try {
var videoid = query.split("v=")
res.redirect("/watch?v=" + videoid[1])
} catch {
return;
}
}
2022-11-18 10:42:25 +01:00
if (!query) {
return res.redirect("/");
}
2023-02-25 18:45:15 +01:00
let continuation = req.query.continuation || "";
2022-12-31 13:39:51 +01:00
2023-02-25 18:45:15 +01:00
try {
2023-03-21 20:30:04 +01:00
const searchUrl = `https://inner-api.poketube.fun/api/search?query=${encodeURIComponent(
2023-02-25 18:45:15 +01:00
query
)}&continuation=${encodeURIComponent(continuation)}`;
const searchResponse = await modules.fetch(searchUrl);
const searchText = await searchResponse.text();
const searchJson = JSON.parse(modules.toJson(searchText));
let didYouMean;
if (
searchJson.Search?.Results?.DynamicItem?.id === "didYouMeanRenderer"
) {
didYouMean = JSON.parse(searchJson.Search.Results.DynamicItem.Title);
}
2022-12-30 17:22:29 +01:00
2023-02-26 10:34:24 +01:00
const summary = await wiki
.summary(query + " ")
.then((summary_) =>
summary_.title !== "Not found." ? summary_ : "none"
);
2022-12-31 13:39:51 +01:00
2023-02-25 18:45:15 +01:00
renderTemplate(res, req, "search.ejs", {
j: searchJson,
h: didYouMean,
continuation,
q: query,
2023-02-26 10:34:24 +01:00
summary,
2023-02-25 18:45:15 +01:00
});
} catch (error) {
console.error(`Error while searching for '${query}':`, error);
res.redirect("/");
2022-12-30 17:22:29 +01:00
}
2022-11-09 17:52:57 +01:00
});
2022-11-18 10:42:25 +01:00
2023-02-25 18:45:15 +01:00
app.get("/channel/", async (req, res) => {
2022-12-21 09:25:16 +01:00
try {
2023-02-25 18:45:15 +01:00
const ID = req.query.id;
const tab = req.query.tab;
2023-04-28 22:39:55 +02:00
const cache = {};
2022-11-18 10:42:25 +01:00
2023-02-25 18:06:28 +01:00
try {
2023-02-25 18:45:15 +01:00
// about
const bout = await modules.fetch(
config.tubeApi + `channel?id=${ID}&tab=about`
);
const h = await bout.text();
var boutJson = JSON.parse(modules.toJson(h));
} catch {
boutJson = " ";
2022-12-18 16:30:24 +01:00
}
2022-11-18 10:42:25 +01:00
2023-03-12 21:05:28 +01:00
const continuation = req.query.continuation
? `&continuation=${req.query.continuation}`
: "";
const continuationl = req.query.continuationl
? `&continuation=${req.query.continuationl}`
: "";
const continuations = req.query.continuations
? `&continuation=${req.query.continuations}`
: "";
2023-02-25 18:45:15 +01:00
const sort_by = req.query.sort_by || "newest";
const getChannelData = async (url) => {
try {
2023-03-12 21:05:28 +01:00
return await modules
.fetch(url)
.then((res) => res.text())
.then((txt) => getJson(txt));
2023-02-25 18:45:15 +01:00
} catch (error) {
console.error("Failed to fetch channel data from API:", error);
return null;
}
};
2023-04-28 22:39:55 +02:00
var tj = await getChannelData(
2023-03-27 21:50:38 +02:00
`https://invid-api.poketube.fun/api/v1/channels/videos/${ID}/?sort_by=${sort_by}${continuation}`
2023-03-12 21:05:28 +01:00
);
2023-04-28 22:39:55 +02:00
var shorts = await getChannelData(
2023-03-27 21:50:38 +02:00
`https://invid-api.poketube.fun/api/v1/channels/${ID}/shorts?sort_by=${sort_by}${continuations}`
2023-03-12 21:05:28 +01:00
);
2023-04-28 22:39:55 +02:00
var stream = await getChannelData(
2023-03-27 21:50:38 +02:00
`https://invid-api.poketube.fun/api/v1/channels/${ID}/streams?sort_by=${sort_by}${continuationl}`
2023-03-12 21:05:28 +01:00
);
2023-04-28 22:39:55 +02:00
var c = await getChannelData(
2023-03-12 21:05:28 +01:00
`https://invid-api.poketube.fun/api/v1/channels/community/${ID}/`
);
2023-02-25 18:45:15 +01:00
2023-04-28 22:39:55 +02:00
cache[ID] = {
result: {
tj,
shorts,
stream,
c,
boutJson,
},
timestamp: Date.now(),
};
if (cache[ID] && Date.now() - cache[ID].timestamp < 3600000) {
var { tj, shorts, stream, c, boutJson } = cache[ID].result;
}
2023-05-01 21:51:06 +02:00
const summary = await wiki.summary(boutJson?.Channel?.Metadata.Name);
2023-02-25 18:45:15 +01:00
const wikiSummary = summary.title !== "Not found." ? summary : "none";
const subscribers = boutJson.Channel.Metadata.Subscribers;
const about = boutJson.Channel.Contents.ItemSection.About;
const description = about.Description.toString().replace(/\n/g, " <br> ");
const dnoreplace = about.Description.toString();
renderTemplate(res, req, "channel.ejs", {
ID,
tab,
shorts,
j: boutJson,
sort: sort_by,
stream,
tj,
c,
convert,
turntomins,
dnoreplace,
continuation,
wiki: wikiSummary,
getFirstLine,
isMobile: req.useragent.isMobile,
about,
subs:
typeof subscribers === "string"
? subscribers.replace("subscribers", "")
: "None",
desc: dnoreplace === "[object Object]" ? "" : description,
});
} catch (error) {
console.error("Failed to render channel page:", error);
res.redirect("/");
}
});
2022-11-18 10:42:25 +01:00
};