| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  |  Deezer (Music) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  @website     https://deezer.com | 
					
						
							|  |  |  |  @provide-api yes (http://developers.deezer.com/api/) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  @using-api   yes | 
					
						
							|  |  |  |  @results     JSON | 
					
						
							|  |  |  |  @stable      yes | 
					
						
							|  |  |  |  @parse       url, title, content, embedded | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							|  |  |  | from urllib import urlencode | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), | 
					
						
							|  |  |  |                                       offset=offset) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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:] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  |             content = '{} - {} - {}'.format( | 
					
						
							|  |  |  |                 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 |