mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	Create search.js
This commit is contained in:
		
							parent
							
								
									5ba735766d
								
							
						
					
					
						commit
						68535a7321
					
				
							
								
								
									
										17
									
								
								sdk/src/search.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								sdk/src/search.js
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,17 @@ | ||||
| const fetch = require("node-fetch");  | ||||
| const xmltojson = require("xml2json") | ||||
| const url = require("../config.json") | ||||
| 
 | ||||
| class Search{ | ||||
|   static async SearchVideo(query){ | ||||
|     const search = await fetch(`https://lighttube.herokuapp.com/api/search?query=${query}`) | ||||
|     const text =  await search.text() | ||||
|    const j = JSON.parse(xmltojson.toJson(text)); | ||||
|      for (item of j.Search.Results.Video)  { | ||||
|        const videoid = item; | ||||
|        return item; | ||||
|     } | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| module.exports = Search | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Ashley
						Ashley