| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-05-24 16:19:06 +02:00
										 |  |  | # lint: pylint | 
					
						
							| 
									
										
										
										
											2021-09-07 13:26:59 +02:00
										 |  |  | # pylint: disable=invalid-name | 
					
						
							| 
									
										
										
										
											2021-05-24 16:19:06 +02:00
										 |  |  | """Genius
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | from datetime import datetime | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://genius.com/', | 
					
						
							|  |  |  |     "wikidata_id": 'Q3419343', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://docs.genius.com/', | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +01:00
										 |  |  | categories = ['music', 'lyrics'] | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | paging = True | 
					
						
							|  |  |  | page_size = 5 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | url = 'https://genius.com/api/' | 
					
						
							|  |  |  | search_url = url + 'search/{index}?{query}&page={pageno}&per_page={page_size}' | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  | music_player = 'https://genius.com{api_path}/apple_music_player' | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2021-05-24 16:19:06 +02:00
										 |  |  |     params['url'] = search_url.format( | 
					
						
							|  |  |  |         query=urlencode({'q': query}), | 
					
						
							|  |  |  |         index='multi', | 
					
						
							|  |  |  |         page_size=page_size, | 
					
						
							|  |  |  |         pageno=params['pageno'], | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def parse_lyric(hit): | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |     content = '' | 
					
						
							|  |  |  |     highlights = hit['highlights'] | 
					
						
							|  |  |  |     if highlights: | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |         content = hit['highlights'][0]['value'] | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |     else: | 
					
						
							|  |  |  |         content = hit['result'].get('title_with_featured', '') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     timestamp = hit['result']['lyrics_updated_at'] | 
					
						
							| 
									
										
										
										
											2021-05-24 16:31:14 +02:00
										 |  |  |     result = { | 
					
						
							|  |  |  |         'url': hit['result']['url'], | 
					
						
							|  |  |  |         'title': hit['result']['full_title'], | 
					
						
							|  |  |  |         'content': content, | 
					
						
							| 
									
										
										
										
											2022-02-19 20:14:31 +01:00
										 |  |  |         'img_src': hit['result']['song_art_image_thumbnail_url'], | 
					
						
							| 
									
										
										
										
											2021-05-24 16:31:14 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     if timestamp: | 
					
						
							|  |  |  |         result.update({'publishedDate': datetime.fromtimestamp(timestamp)}) | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |     api_path = hit['result'].get('api_path') | 
					
						
							|  |  |  |     if api_path: | 
					
						
							|  |  |  |         # The players are just playing 30sec from the title.  Some of the player | 
					
						
							|  |  |  |         # will be blocked because of a cross-origin request and some players will | 
					
						
							|  |  |  |         # link to apple when you press the play button. | 
					
						
							|  |  |  |         result['iframe_src'] = music_player.format(api_path=api_path) | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     return result | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def parse_artist(hit): | 
					
						
							| 
									
										
										
										
											2021-05-24 16:19:06 +02:00
										 |  |  |     result = { | 
					
						
							|  |  |  |         'url': hit['result']['url'], | 
					
						
							|  |  |  |         'title': hit['result']['name'], | 
					
						
							|  |  |  |         'content': '', | 
					
						
							| 
									
										
										
										
											2022-02-19 20:14:31 +01:00
										 |  |  |         'img_src': hit['result']['image_url'], | 
					
						
							| 
									
										
										
										
											2021-05-24 16:19:06 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     return result | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def parse_album(hit): | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |     res = hit['result'] | 
					
						
							|  |  |  |     content = res.get('name_with_artist', res.get('name', '')) | 
					
						
							|  |  |  |     x = res.get('release_date_components') | 
					
						
							|  |  |  |     if x: | 
					
						
							|  |  |  |         x = x.get('year') | 
					
						
							|  |  |  |         if x: | 
					
						
							|  |  |  |             content = "%s / %s" % (x, content) | 
					
						
							|  |  |  |     return { | 
					
						
							|  |  |  |         'url': res['url'], | 
					
						
							|  |  |  |         'title': res['full_title'], | 
					
						
							| 
									
										
										
										
											2022-02-19 20:14:31 +01:00
										 |  |  |         'img_src': res['cover_art_url'], | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |         'content': content.strip(), | 
					
						
							| 
									
										
										
										
											2021-05-24 16:31:14 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-01 11:01:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  | parse = {'lyric': parse_lyric, 'song': parse_lyric, 'artist': parse_artist, 'album': parse_album} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2022-02-19 18:23:16 +01:00
										 |  |  |     for section in resp.json()['response']['sections']: | 
					
						
							|  |  |  |         for hit in section['hits']: | 
					
						
							|  |  |  |             func = parse.get(hit['type']) | 
					
						
							|  |  |  |             if func: | 
					
						
							|  |  |  |                 results.append(func(hit)) | 
					
						
							| 
									
										
										
										
											2017-08-20 02:05:17 +02:00
										 |  |  |     return results |