1
0
Fork 0
mirror of synced 2024-05-21 12:42:44 +12:00

Merge pull request #683 from Soulsuck24/development

This commit is contained in:
Serene 2022-10-19 13:00:09 +10:00 committed by GitHub
commit 47a8736f77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ class Redgifs(BaseDownloader):
except AttributeError:
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:
raise SiteDownloaderError('Could not read the page source')
@ -40,16 +40,16 @@ class Redgifs(BaseDownloader):
out = set()
try:
if response_json['gif']['type'] == 1: # type 1 is a video
out.add(response_json['gif']['urls']['hd'])
elif response_json['gif']['type'] == 2: # type 2 is an image
if response_json['gif']['gallery']:
if response_json['gfyItem']['type'] == 1: # type 1 is a video
out.add(response_json['gfyItem']['mp4Url'])
elif response_json['gfyItem']['type'] == 2: # type 2 is an image
if 'gallery' in response_json['gfyItem']:
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)
out = {p['urls']['hd'] for p in response_json['gifs']}
else:
out.add(response_json['gif']['urls']['hd'])
out.add(response_json['gfyItem']['content_urls']['large']['url'])
else:
raise KeyError
except (KeyError, AttributeError):