Temp fix for Redgifs

TEMPORARY FIX.

I can't stress enough this is is temporary and will likely stop working at some point. It works for now though.
This commit is contained in:
Soulsuck24
2022-10-18 15:38:53 -04:00
parent 3d0ac9e483
commit df30a3a3ac

View File

@@ -28,7 +28,7 @@ class Redgifs(BaseDownloader):
except AttributeError: except AttributeError:
raise SiteDownloaderError(f'Could not extract Redgifs ID from {url}') raise SiteDownloaderError(f'Could not extract Redgifs ID from {url}')
content = Redgifs.retrieve_url(f'https://api.redgifs.com/v2/gifs/{redgif_id}') content = Redgifs.retrieve_url(f'https://api.redgifs.com/v1/gifs/{redgif_id}')
if content is None: if content is None:
raise SiteDownloaderError('Could not read the page source') raise SiteDownloaderError('Could not read the page source')
@@ -40,16 +40,16 @@ class Redgifs(BaseDownloader):
out = set() out = set()
try: try:
if response_json['gif']['type'] == 1: # type 1 is a video if response_json['gfyItem']['type'] == 1: # type 1 is a video
out.add(response_json['gif']['urls']['hd']) out.add(response_json['gfyItem']['mp4Url'])
elif response_json['gif']['type'] == 2: # type 2 is an image elif response_json['gfyItem']['type'] == 2: # type 2 is an image
if response_json['gif']['gallery']: if 'gallery' in response_json['gfyItem']:
content = Redgifs.retrieve_url( content = Redgifs.retrieve_url(
f'https://api.redgifs.com/v2/gallery/{response_json["gif"]["gallery"]}') f'https://api.redgifs.com/v2/gallery/{response_json["gfyItem"]["gallery"]}')
response_json = json.loads(content.text) response_json = json.loads(content.text)
out = {p['urls']['hd'] for p in response_json['gifs']} out = {p['urls']['hd'] for p in response_json['gifs']}
else: else:
out.add(response_json['gif']['urls']['hd']) out.add(response_json['gfyItem']['content_urls']['large']['url'])
else: else:
raise KeyError raise KeyError
except (KeyError, AttributeError): except (KeyError, AttributeError):