1
0
Fork 0
mirror of synced 2024-06-02 18:34:37 +12:00
bulk-downloader-for-reddit/bdfr/site_downloaders/redgifs.py

87 lines
3.3 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import json
2021-03-20 01:28:41 +13:00
import re
2021-02-25 23:40:08 +13:00
from typing import Optional
2022-12-03 18:11:17 +13:00
import requests
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
2021-04-28 20:50:18 +12:00
from bdfr.site_downloaders.base_downloader import BaseDownloader
2021-04-28 20:50:18 +12:00
class Redgifs(BaseDownloader):
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]:
media_urls = self._get_link(self.post.url)
return [Resource(self.post, m, Resource.retry_download(m), None) for m in media_urls]
@staticmethod
def _get_id(url: str) -> str:
try:
if url.endswith("/"):
url = url.removesuffix("/")
2023-01-25 22:43:06 +13:00
redgif_id = re.match(r".*/(.*?)(?:#.*|\?.*|\..{0,})?$", url).group(1).lower()
if redgif_id.endswith("-mobile"):
redgif_id = redgif_id.removesuffix("-mobile")
except AttributeError:
2022-12-03 18:11:17 +13:00
raise SiteDownloaderError(f"Could not extract Redgifs ID from {url}")
return redgif_id
@staticmethod
def _get_link(url: str) -> set[str]:
redgif_id = Redgifs._get_id(url)
2022-12-03 18:11:17 +13:00
auth_token = json.loads(Redgifs.retrieve_url("https://api.redgifs.com/v2/auth/temporary").text)["token"]
if not auth_token:
2022-12-03 18:11:17 +13:00
raise SiteDownloaderError("Unable to retrieve Redgifs API token")
headers = {
2022-12-03 18:11:17 +13:00
"referer": "https://www.redgifs.com/",
"origin": "https://www.redgifs.com",
"content-type": "application/json",
"Authorization": f"Bearer {auth_token}",
}
2022-12-03 18:11:17 +13:00
content = Redgifs.retrieve_url(f"https://api.redgifs.com/v2/gifs/{redgif_id}", headers=headers)
if content is None:
2022-12-03 18:11:17 +13:00
raise SiteDownloaderError("Could not read the page source")
try:
response_json = json.loads(content.text)
except json.JSONDecodeError as e:
2022-12-03 18:11:17 +13:00
raise SiteDownloaderError(f"Received data was not valid JSON: {e}")
out = set()
try:
2022-12-03 18:11:17 +13:00
if response_json["gif"]["type"] == 1: # type 1 is a video
if requests.get(response_json["gif"]["urls"]["hd"], headers=headers).ok:
out.add(response_json["gif"]["urls"]["hd"])
else:
2022-12-03 18:11:17 +13:00
out.add(response_json["gif"]["urls"]["sd"])
elif response_json["gif"]["type"] == 2: # type 2 is an image
if response_json["gif"]["gallery"]:
content = Redgifs.retrieve_url(
2022-12-03 18:11:17 +13:00
f'https://api.redgifs.com/v2/gallery/{response_json["gif"]["gallery"]}'
)
response_json = json.loads(content.text)
2022-12-03 18:11:17 +13:00
out = {p["urls"]["hd"] for p in response_json["gifs"]}
else:
2022-12-03 18:11:17 +13:00
out.add(response_json["gif"]["urls"]["hd"])
else:
raise KeyError
except (KeyError, AttributeError):
2022-12-03 18:11:17 +13:00
raise SiteDownloaderError("Failed to find JSON data in page")
# Update subdomain if old one is returned
2022-12-03 18:11:17 +13:00
out = {re.sub("thumbs2", "thumbs3", link) for link in out}
out = {re.sub("thumbs3", "thumbs4", link) for link in out}
2021-03-20 01:28:41 +13:00
return out