1
0
Fork 0
mirror of synced 2024-06-29 11:30:30 +12:00
bulk-downloader-for-reddit/bdfr/site_downloaders/redgifs.py

50 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import json
2021-03-20 01:28:41 +13:00
import re
2021-02-25 23:40:08 +13:00
from typing import Optional
from bs4 import BeautifulSoup
2021-02-11 12:10:40 +13:00
from praw.models import Submission
2021-04-23 23:06:16 +12:00
from bdfr.exceptions import SiteDownloaderError
2021-04-12 19:58:32 +12:00
from bdfr.resource import Resource
from bdfr.site_authenticator import SiteAuthenticator
from bdfr.site_downloaders.gif_delivery_network import GifDeliveryNetwork
class Redgifs(GifDeliveryNetwork):
2021-02-15 18:12:27 +13:00
def __init__(self, post: Submission):
super().__init__(post)
2021-02-26 21:57:05 +13:00
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
2021-02-25 23:40:08 +13:00
return super().find_resources(authenticator)
@staticmethod
def _get_link(url: str) -> str:
try:
redgif_id = re.match(r'.*/(.*?)/?$', url).group(1)
except AttributeError:
raise SiteDownloaderError(f'Could not extract Redgifs ID from {url}')
url = f'https://api.redgifs.com/v1/gfycats/{redgif_id}'
2021-01-18 10:58:51 +13:00
2021-04-05 19:21:04 +12:00
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) ' \
'Chrome/90.0.4430.93 Safari/537.36',
2021-04-05 19:21:04 +12:00
}
content = Redgifs.retrieve_url(url, headers=headers)
if content is None:
raise SiteDownloaderError('Could not read the page source')
try:
out = content.json()["gfyItem"]["mp4Url"]
except (IndexError, KeyError, AttributeError):
raise SiteDownloaderError('Failed to find JSON data in page')
except json.JSONDecodeError as e:
raise SiteDownloaderError(f'Received data was not valid JSON: {e}')
2021-03-20 01:28:41 +13:00
return out