mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:18:27 +01:00
test this
This commit is contained in:
parent
f573d0ddeb
commit
f435cfe7fe
1 changed files with 20 additions and 8 deletions
|
@ -9,7 +9,7 @@
|
||||||
/**
|
/**
|
||||||
* A class representing a PokeTube API instance for a specific video.
|
* A class representing a PokeTube API instance for a specific video.
|
||||||
*/
|
*/
|
||||||
class PokeTubeDislikesAPIManager {
|
class PokeTubeDislikesAPIManager {
|
||||||
/**
|
/**
|
||||||
* Creates a new PokeTube API instance for the given video ID.
|
* Creates a new PokeTube API instance for the given video ID.
|
||||||
* @param {string} videoId - The ID of the YouTube video.
|
* @param {string} videoId - The ID of the YouTube video.
|
||||||
|
@ -41,12 +41,24 @@ class PokeTubeDislikesAPIManager {
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
async _getEngagementData() {
|
async _getEngagementData() {
|
||||||
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`;
|
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`;
|
||||||
|
|
||||||
const { fetch } = await import("undici");
|
const { fetch } = await import("undici");
|
||||||
|
|
||||||
const engagement = await fetch(fallbackUrl).then((res) => res.json());
|
// why RYD? why... do i have to this lol?
|
||||||
return engagement;
|
for (let i = 0; i < 2; i++) {
|
||||||
|
try {
|
||||||
|
const engagement = await fetch(fallbackUrl).then((res) => res.json());
|
||||||
|
return engagement;
|
||||||
|
} catch (err) {
|
||||||
|
if (err.status === 503) {
|
||||||
|
// retry after a bit
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
||||||
|
} else {
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -58,7 +70,7 @@ class PokeTubeDislikesAPIManager {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
engagement: this.engagement,
|
engagement: this.engagement,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue