| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  |  Deezer (Music) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://deezer.com', | 
					
						
							|  |  |  |     "wikidata_id": 'Q602243', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://developers.deezer.com/', | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['music'] | 
					
						
							|  |  |  | paging = True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # search-url | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:21 +01:00
										 |  |  | url = 'https://api.deezer.com/' | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | search_url = url + 'search?{query}&index={offset}' | 
					
						
							| 
									
										
										
										
											2022-02-13 16:12:46 +01:00
										 |  |  | iframe_src = "https://www.deezer.com/plugins/player?type=tracks&id={audioid}" | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-08 18:22:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | # do search-request | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							|  |  |  |     offset = (params['pageno'] - 1) * 25 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), offset=offset) | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +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('data', []): | 
					
						
							|  |  |  |         if result['type'] == 'track': | 
					
						
							|  |  |  |             title = result['title'] | 
					
						
							| 
									
										
										
										
											2024-03-11 07:45:08 +01:00
										 |  |  |             url = result['link']  # pylint: disable=redefined-outer-name | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if url.startswith('http://'): | 
					
						
							|  |  |  |                 url = 'https' + url[4:] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             content = '{} - {} - {}'.format(result['artist']['name'], result['album']['title'], result['title']) | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |             # append result | 
					
						
							| 
									
										
										
										
											2022-02-07 21:59:21 +01:00
										 |  |  |             results.append( | 
					
						
							| 
									
										
										
										
											2022-02-13 16:12:46 +01:00
										 |  |  |                 {'url': url, 'title': title, 'iframe_src': iframe_src.format(audioid=result['id']), 'content': content} | 
					
						
							| 
									
										
										
										
											2022-02-07 21:59:21 +01:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results |