1
0
Fork 0
mirror of synced 2024-06-26 18:10:26 +12:00

Refactor Gfycat class

This commit is contained in:
Serene-Arc 2021-03-19 22:13:56 +10:00 committed by Ali Parlakci
parent 540b237da6
commit 03c8d524a4

View file

@ -22,22 +22,15 @@ class Gfycat(GifDeliveryNetwork):
@staticmethod
def _get_link(url: str) -> str:
"""Extract direct link to the video from page's source and return it """
if re.match(r'\.(webm|mp4|gif)$', url):
return url
if url.endswith('/'):
url = url[:-1]
url = "https://gfycat.com/" + url.split('/')[-1]
gfycat_id = re.match(r'.*/(.*?)/?$', url).group(1)
url = 'https://gfycat.com/' + gfycat_id
page_source = requests.get(url).text
soup = BeautifulSoup(page_source, 'html.parser')
content = soup.find('script', attrs={'data-react-helmet': 'true', 'type': 'application/ld+json'})
soup = BeautifulSoup(page_source, "html.parser")
attributes = {"data-react-helmet": "true", "type": "application/ld+json"}
content = soup.find("script", attrs=attributes)
if content is None:
return super()._get_link(url)
return json.loads(content.contents[0])["video"]["contentUrl"]
out = json.loads(content.contents[0]).get('video').get('contentUrl')
return out