mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	add ryd api url back
This commit is contained in:
		
							parent
							
								
									b172ff12f9
								
							
						
					
					
						commit
						f573d0ddeb
					
				| @ -9,7 +9,7 @@ | ||||
| /** | ||||
|  * 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. | ||||
|    * @param {string} videoId - The ID of the YouTube video. | ||||
| @ -41,31 +41,12 @@ class PokeTubeDislikesAPIManager { | ||||
|    * @private | ||||
|    */ | ||||
|   async _getEngagementData() { | ||||
|     const apiUrls = [ | ||||
|       "https://returnyoutubedislikeapi.com/votes?videoId=", | ||||
|       "https://prod-poketube.testing.poketube.fun/api?v=", | ||||
|     ]; | ||||
| 
 | ||||
|     const { fetch } = await import("undici"); | ||||
| 
 | ||||
|     // Initialize an array to store errors when trying different URLs
 | ||||
|     const errors = []; | ||||
| 
 | ||||
|     for (const apiUrl of apiUrls) { | ||||
|       try { | ||||
|         // Fetch data from the current URL
 | ||||
|         const engagement = await fetch(apiUrl + this.videoId).then((res) => | ||||
|           res.json() | ||||
|         ); | ||||
| 
 | ||||
|         return engagement; // Exit the loop if successful
 | ||||
|       } catch (err) { | ||||
|         // Log the error for this URL and continue to the next URL
 | ||||
|         console.log(`Error fetching data from ${apiUrl}: ${err.message}`); | ||||
|         errors.push(err.message); | ||||
|         return ""; | ||||
|       } | ||||
|     } | ||||
|   const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`; | ||||
|    | ||||
|    const { fetch } = await import("undici"); | ||||
|      | ||||
|    const engagement = await fetch(fallbackUrl).then((res) => res.json()); | ||||
|   return engagement; | ||||
|   } | ||||
| 
 | ||||
|   /** | ||||
| @ -77,7 +58,7 @@ class PokeTubeDislikesAPIManager { | ||||
| 
 | ||||
|     return { | ||||
|       engagement: this.engagement, | ||||
|     }; | ||||
|      }; | ||||
|   } | ||||
| 
 | ||||
|   /** | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Ashley
						Ashley