test ignore

This commit is contained in:
Ashley //// 2024-04-24 15:44:33 +00:00
parent 61fb7ee345
commit a68fcde7f9

View file

@ -67,7 +67,7 @@ class InnerTubePokeVidious {
* @param {string} v - Video ID. * @param {string} v - Video ID.
* @returns {Promise<object>} Promise resolving to the video information. * @returns {Promise<object>} Promise resolving to the video information.
*/ */
async getYouTubeApiVideo(f, v, contentlang, contentregion) { async getYouTubeApiVideo(f, v, contentlang, contentregion) {
const { fetch } = await import("undici"); const { fetch } = await import("undici");
@ -75,83 +75,90 @@ class InnerTubePokeVidious {
// Check if result is already cached // Check if result is already cached
if (this.cache[v] && Date.now() - this.cache[v].timestamp < 3600000) { if (this.cache[v] && Date.now() - this.cache[v].timestamp < 3600000) {
return this.cache[v].result; return this.cache[v].result;
} }
const headers = {}; const headers = {};
let desc = ""; let desc = "";
try { try {
const [invComments, videoInfo, videoData] = await Promise.all([ const [invComments, videoInfo, videoData] = await Promise.all([
fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()), fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()), fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
curly curly
.get(`${this.config.tubeApi}video?v=${v}`, { .get(`${this.config.tubeApi}video?v=${v}`, {
httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`), httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`),
}) })
.then((res) => { .then((res) => {
const json = toJson(res.data); const json = toJson(res.data);
const video = this.getJson(json); const video = this.getJson(json);
return { json, video }; return { json, video };
}), }),
]); ]);
const comments = await this.getJson(invComments);
let vid = await this.getJson(videoInfo);
const { json, video } = videoData;
const comments = await this.getJson(invComments); var channel_uploads = {};
if (f == "true") {
channel_uploads = await fetch(
`${this.config.invapi}/channels/${vid.authorId}?hl=${contentlang}&region=${contentregion}`
);
var p = this.getJson(await channel_uploads.text());
}
const vid = await this.getJson(videoInfo); // Retry fetching videoInfo if vid is null, limited to 3 retries
const { json, video } = videoData; let retryCount = 0;
while (!vid && retryCount < 3) {
console.log(`Retrying fetching videoInfo... Retry ${retryCount + 1}`);
const retryVideoInfo = await fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text());
vid = await this.getJson(retryVideoInfo);
retryCount++;
}
var channel_uploads = { }; if (!vid) {
if (f == "true") { console.log(
channel_uploads = await fetch( `Sorry nya, we couldn't find any information about that video qwq`
`${this.config.invapi}/channels/${vid.authorId}?hl=${contentlang}&region=${contentregion}` );
); }
var p = this.getJson(await channel_uploads.text());
}
if (!vid) { if (this.checkUnexistingObject(vid)) {
console.log( const fe = await getdislikes(v);
`Sorry nya, we couldn't find any information about that video qwq`
);
}
if (this.checkUnexistingObject(vid)) { try {
const fe = await getdislikes(v); const headers = {};
try { // Store result in cache
const headers = {}; this.cache[v] = {
result: {
json: json?.video,
video,
vid,
comments,
channel_uploads: p,
engagement: fe.engagement,
wiki: "",
desc: "",
color: await getColors(
`https://vid.puffyan.us/vi/${v}/hqdefault.jpg?sqp=${this.sqp}`
).then((colors) => colors[0].hex()),
color2: await getColors(
`https://vid.puffyan.us/vi/${v}/hqdefault.jpg?sqp=${this.sqp}`
).then((colors) => colors[1].hex()),
},
timestamp: Date.now(),
};
// Store result in cache return this.cache[v].result;
this.cache[v] = { } catch (error) {
result: { this.initError("Error getting video", error);
json: json?.video, }
video, }
vid,
comments,
channel_uploads: p,
engagement: fe.engagement,
wiki: "",
desc: "",
color: await getColors(
`https://vid.puffyan.us/vi/${v}/hqdefault.jpg?sqp=${this.sqp}`
).then((colors) => colors[0].hex()),
color2: await getColors(
`https://vid.puffyan.us/vi/${v}/hqdefault.jpg?sqp=${this.sqp}`
).then((colors) => colors[1].hex()),
},
timestamp: Date.now(),
};
return this.cache[v].result;
} catch (error) {
this.initError("Error getting video", error);
}
}
} catch { } catch {
} }
} }
/** /**