Improvements owowowowowo

This commit is contained in:
Ashley 2022-11-07 17:49:21 +01:00
parent 11da1178d4
commit 5634a5cb87

View file

@ -57,76 +57,56 @@ async function channel(id, cnt) {
} }
async function video(v) { async function video(v) {
if (v == null) return "Gib ID"; try {
if (v == null) return "Gib ID";
let nightlyRes; let nightlyRes;
for (let i = 0; i < 2; i++) { const video = await fetch(`${config.tubeApi}video?v=${v}`)
try { .then((res) => res.text())
const nightly = await fetch( .then((xml) => JSON.parse(toJson(xml)));
`https://lighttube-nightly.kuylar.dev/api/video?v=${v}`
).then((res) => res.text());
nightlyRes = nightly; var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then(
break; (res) => res.text()
} catch (err) { );
if (err.status === 500)
// Retry after a second.
await new Promise((resolve) => setTimeout(resolve, 1000));
else return "";
}
}
const video = await fetch(`${config.tubeApi}video?v=${v}`) var comments = await JSON.parse(inv_comments);
.then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml)));
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then((res) => var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then(
res.text() (res) => res.text()
); );
var comments = await JSON.parse(inv_comments); var vid = await JSON.parse(video_new_info);
const a = await fetch(
`${config.tubeApi}channel?id=${video.Video.Channel.id}&tab=about`
)
.then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml)));
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) => const summary = await wiki
res.text() .summary(video.Video.Channel.Name + " ")
); .then((summary_) =>
summary_.title !== "Not found." ? summary_ : "none"
);
var vid = await JSON.parse(video_new_info); const data = await fetcher(v);
const c = await fetch( const nightlyJsonData = getJson(nightlyRes);
`${config.tubeApi}channel?id=${video.Video.Channel.id}&tab=videos`
)
.then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml)));
const a = await fetch( return {
`${config.tubeApi}channel?id=${video.Video.Channel.id}&tab=about` json: data.video.Player,
) video,
.then((res) => res.text()) vid,
.then((xml) => JSON.parse(toJson(xml))); comments,
engagement: data.engagement,
const summary = await wiki wiki: summary,
.summary(video.Video.Channel.Name + " ") desc: a.Channel.Contents.ItemSection.About.Description,
.then((summary_) => (summary_.title !== "Not found." ? summary_ : "none")); color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
const data = await fetcher(v); ).then((colors) => colors[0].hex()),
const nightlyJsonData = getJson(nightlyRes);
return {
json: data.video.Player,
video,
vid,
channel: c,
comments,
engagement: data.engagement,
wiki: summary,
desc: a.Channel.Contents.ItemSection.About.Description,
color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()),
}; };
} catch (err) {}
} }
async function search(query, cnt) { async function search(query, cnt) {
@ -141,8 +121,23 @@ async function search(query, cnt) {
return data; return data;
} }
async function isvalidvideo(v) {
var status;
const vld = await fetch(`${config.dislikes}${v}`).then((res) => {
status = res.status;
return res.json();
});
if (status == 400) {
return false;
} else {
return true;
}
}
module.exports = { module.exports = {
search, search,
video, video,
isvalidvideo,
channel, channel,
}; };