| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2022-08-22 13:27:35 +02:00
										 |  |  | # pylint: disable=invalid-name | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  | """9GAG (social media)""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							|  |  |  | from datetime import datetime | 
					
						
							|  |  |  | from urllib.parse import urlencode | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://9gag.com/', | 
					
						
							|  |  |  |     "wikidata_id": 'Q277421', | 
					
						
							|  |  |  |     "official_api_documentation": None, | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | categories = ['social media'] | 
					
						
							|  |  |  | paging = True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | search_url = "https://9gag.com/v1/search-posts?{query}" | 
					
						
							|  |  |  | page_size = 10 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							|  |  |  |     query = urlencode({'query': query, 'c': (params['pageno'] - 1) * page_size}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     params['url'] = search_url.format(query=query) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 00:18:35 +02:00
										 |  |  |     json_results = loads(resp.text)['data'] | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 00:18:35 +02:00
										 |  |  |     for result in json_results['posts']: | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |         result_type = result['type'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 13:33:11 +02:00
										 |  |  |         # Get the not cropped version of the thumbnail when the image height is not too important | 
					
						
							|  |  |  |         if result['images']['image700']['height'] > 400: | 
					
						
							|  |  |  |             thumbnail = result['images']['imageFbThumbnail']['url'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             thumbnail = result['images']['image700']['url'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |         if result_type == 'Photo': | 
					
						
							|  |  |  |             results.append( | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     'template': 'images.html', | 
					
						
							|  |  |  |                     'url': result['url'], | 
					
						
							|  |  |  |                     'title': result['title'], | 
					
						
							|  |  |  |                     'content': result['description'], | 
					
						
							| 
									
										
										
										
											2025-02-05 14:35:02 +01:00
										 |  |  |                     'publishedDate': datetime.fromtimestamp(result['creationTs']), | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |                     'img_src': result['images']['image700']['url'], | 
					
						
							| 
									
										
										
										
											2022-08-24 13:33:11 +02:00
										 |  |  |                     'thumbnail_src': thumbnail, | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |                 } | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         elif result_type == 'Animated': | 
					
						
							|  |  |  |             results.append( | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     'template': 'videos.html', | 
					
						
							|  |  |  |                     'url': result['url'], | 
					
						
							|  |  |  |                     'title': result['title'], | 
					
						
							|  |  |  |                     'content': result['description'], | 
					
						
							| 
									
										
										
										
											2025-02-05 14:35:02 +01:00
										 |  |  |                     'publishedDate': datetime.fromtimestamp(result['creationTs']), | 
					
						
							| 
									
										
										
										
											2022-08-24 13:33:11 +02:00
										 |  |  |                     'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2022-08-24 11:48:31 +02:00
										 |  |  |                     'iframe_src': result['images'].get('image460sv', {}).get('url'), | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |                 } | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 00:18:35 +02:00
										 |  |  |     if 'tags' in json_results: | 
					
						
							|  |  |  |         for suggestion in json_results['tags']: | 
					
						
							|  |  |  |             results.append({'suggestion': suggestion['key']}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-22 12:35:07 +02:00
										 |  |  |     return results |