use getjson :3

This commit is contained in:
Ashley 2022-11-16 17:58:03 +01:00
parent 0e4782ada9
commit b087a5181e

View file

@ -30,7 +30,7 @@ const config = {
// Util functions // Util functions
function getJson(str) { function getJson(str) {
try { try {
return JSON.parse(str); return getJson(str);
} catch { } catch {
return null; return null;
} }
@ -47,64 +47,59 @@ async function channel(id, cnt) {
`${config.tubeApi}channel?id=${id}&tab=videos&continuation=${cnt || ""}` `${config.tubeApi}channel?id=${id}&tab=videos&continuation=${cnt || ""}`
) )
.then((res) => res.text()) .then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => getJson(toJson(xml)));
const about = await fetch(`${config.tubeApi}channel?id=${id}&tab=about`) const about = await fetch(`${config.tubeApi}channel?id=${id}&tab=about`)
.then((res) => res.text()) .then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => getJson(toJson(xml)));
return { videos, about }; return { videos, about };
} }
async function video(v) { async function video(v) {
if (v == null) return "Gib ID"; if (v == null) return "Gib ID";
let nightlyRes; let nightlyRes;
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then((res) =>
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then( res.text()
(res) => res.text() );
);
var comments = await JSON.parse(inv_comments); var comments = await getJson(inv_comments);
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then( var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) =>
(res) => res.text() res.text()
); );
var vid = await JSON.parse(video_new_info); var vid = await getJson(video_new_info);
const a = await fetch( const a = await fetch(`${config.tubeApi}channel?id=${vid.authorId}&tab=about`)
`${config.tubeApi}channel?id=${vid.authorId}&tab=about` .then((res) => res.text())
) .then((xml) => getJson(toJson(xml)));
const summary = await wiki
.summary(vid.author + " ")
.then((summary_) => (summary_.title !== "Not found." ? summary_ : "none"));
const desc = a.Channel?.Contents.ItemSection.About.Description;
const data = await fetcher(v);
const nightlyJsonData = getJson(nightlyRes);
return {
json: data.video.Player,
video: await fetch(`${config.tubeApi}video?v=${v}`)
.then((res) => res.text()) .then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => getJson(toJson(xml))),
vid,
const summary = await wiki comments,
.summary(vid.author + " ") engagement: data.engagement,
.then((summary_) => wiki: summary,
summary_.title !== "Not found." ? summary_ : "none" desc: desc,
); color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
const desc = a.Channel?.Contents.ItemSection.About.Description; ).then((colors) => colors[0].hex()),
};
const data = await fetcher(v);
const nightlyJsonData = getJson(nightlyRes);
return {
json: data.video.Player,
video: await fetch(`${config.tubeApi}video?v=${v}`).then((res) => res.text()) .then((xml) => JSON.parse(toJson(xml))),
vid,
comments,
engagement: data.engagement,
wiki: summary,
desc: desc,
color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()),
};
} }
async function search(query, cnt) { async function search(query, cnt) {
@ -114,7 +109,7 @@ async function search(query, cnt) {
`${config.tubeApi}search?query=${query}&continuation=${cnt || ""}` `${config.tubeApi}search?query=${query}&continuation=${cnt || ""}`
) )
.then((res) => res.text()) .then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => getJson(toJson(xml)));
return data; return data;
} }