| 
									
										
										
										
											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}' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | embedded_url = '<iframe scrolling="no" frameborder="0" allowTransparency="true" ' +\ | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:21 +01:00
										 |  |  |     'data-src="https://www.deezer.com/plugins/player?type=tracks&id={audioid}" ' +\ | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |     'width="540" height="80"></iframe>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 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'] | 
					
						
							|  |  |  |             url = result['link'] | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if url.startswith('http://'): | 
					
						
							|  |  |  |                 url = 'https' + url[4:] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  |             content = '{} - {} - {}'.format( | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  |                 result['artist']['name'], | 
					
						
							|  |  |  |                 result['album']['title'], | 
					
						
							|  |  |  |                 result['title']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |             embedded = embedded_url.format(audioid=result['id']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # append result | 
					
						
							|  |  |  |             results.append({'url': url, | 
					
						
							|  |  |  |                             'title': title, | 
					
						
							|  |  |  |                             'embedded': embedded, | 
					
						
							|  |  |  |                             'content': content}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results |