| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  |  Spotify (Music) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2019-07-31 20:44:41 +02:00
										 |  |  | import base64 | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
   * can contains network definition
   * propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
     keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
   * retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
   * local_addresses can be "192.168.0.1/24" (it supports IPv6)
   * support_ipv4 & support_ipv6: both True by default
     see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
   * either a full network description
   * either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
											
										 
											2021-04-05 10:43:33 +02:00
										 |  |  | from searx.network import post as http_post | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.spotify.com', | 
					
						
							|  |  |  |     "wikidata_id": 'Q689141', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://developer.spotify.com/web-api/search-item/', | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['music'] | 
					
						
							|  |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2019-07-31 20:44:41 +02:00
										 |  |  | api_client_id = None | 
					
						
							|  |  |  | api_client_secret = None | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # search-url | 
					
						
							|  |  |  | url = 'https://api.spotify.com/' | 
					
						
							|  |  |  | search_url = url + 'v1/search?{query}&type=track&offset={offset}' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | embedded_url = '<iframe data-src="https://embed.spotify.com/?uri=spotify:track:{audioid}"\
 | 
					
						
							|  |  |  |      width="300" height="80" frameborder="0" allowtransparency="true"></iframe>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # do search-request | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							|  |  |  |     offset = (params['pageno'] - 1) * 20 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), offset=offset) | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
   * can contains network definition
   * propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
     keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
   * retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
   * local_addresses can be "192.168.0.1/24" (it supports IPv6)
   * support_ipv4 & support_ipv6: both True by default
     see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
   * either a full network description
   * either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
											
										 
											2021-04-05 10:43:33 +02:00
										 |  |  |     r = http_post( | 
					
						
							| 
									
										
										
										
											2019-07-31 20:44:41 +02:00
										 |  |  |         'https://accounts.spotify.com/api/token', | 
					
						
							|  |  |  |         data={'grant_type': 'client_credentials'}, | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         headers={ | 
					
						
							|  |  |  |             'Authorization': 'Basic ' | 
					
						
							|  |  |  |             + base64.b64encode("{}:{}".format(api_client_id, api_client_secret).encode()).decode() | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2019-07-31 20:44:41 +02:00
										 |  |  |     ) | 
					
						
							|  |  |  |     j = loads(r.text) | 
					
						
							| 
									
										
										
										
											2019-07-31 21:09:02 +02:00
										 |  |  |     params['headers'] = {'Authorization': 'Bearer {}'.format(j.get('access_token'))} | 
					
						
							| 
									
										
										
										
											2019-07-31 20:44:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get response from search-request | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     search_res = loads(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							|  |  |  |     for result in search_res.get('tracks', {}).get('items', {}): | 
					
						
							|  |  |  |         if result['type'] == 'track': | 
					
						
							|  |  |  |             title = result['name'] | 
					
						
							|  |  |  |             url = result['external_urls']['spotify'] | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             content = '{} - {} - {}'.format(result['artists'][0]['name'], result['album']['name'], result['name']) | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  |             embedded = embedded_url.format(audioid=result['id']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             results.append({'url': url, 'title': title, 'embedded': embedded, 'content': content}) | 
					
						
							| 
									
										
										
										
											2015-02-20 18:47:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results |