4 from .common
import InfoExtractor
5 from ..networking
.exceptions
import HTTPError
15 class RedGifsBaseInfoExtractor(InfoExtractor
):
23 'referer': 'https://www.redgifs.com/',
24 'origin': 'https://www.redgifs.com',
25 'content-type': 'application/json',
28 def _parse_gif_data(self
, gif_data
):
29 video_id
= gif_data
.get('id')
30 quality
= qualities(tuple(self
._FORMATS
.keys()))
32 orig_height
= int_or_none(gif_data
.get('height'))
33 aspect_ratio
= try_get(gif_data
, lambda x
: orig_height
/ x
['width'])
36 for format_id
, height
in self
._FORMATS
.items():
37 video_url
= gif_data
['urls'].get(format_id
)
40 height
= min(orig_height
, height
or orig_height
)
43 'format_id': format_id
,
44 'width': height
* aspect_ratio
if aspect_ratio
else None,
46 'quality': quality(format_id
),
51 'webpage_url': f
'https://redgifs.com/watch/{video_id}',
52 'extractor_key': RedGifsIE
.ie_key(),
53 'extractor': 'RedGifs',
54 'title': ' '.join(gif_data
.get('tags') or []) or 'RedGifs',
55 'timestamp': int_or_none(gif_data
.get('createDate')),
56 'uploader': gif_data
.get('userName'),
57 'duration': int_or_none(gif_data
.get('duration')),
58 'view_count': int_or_none(gif_data
.get('views')),
59 'like_count': int_or_none(gif_data
.get('likes')),
60 'categories': gif_data
.get('tags') or [],
61 'tags': gif_data
.get('tags'),
66 def _fetch_oauth_token(self
, video_id
):
67 # https://github.com/Redgifs/api/wiki/Temporary-tokens
68 auth
= self
._download
_json
('https://api.redgifs.com/v2/auth/temporary',
69 video_id
, note
='Fetching temporary token')
70 if not auth
.get('token'):
71 raise ExtractorError('Unable to get temporary token')
72 self
._API
_HEADERS
['authorization'] = f
'Bearer {auth["token"]}'
74 def _call_api(self
, ep
, video_id
, **kwargs
):
75 for first_attempt
in True, False:
76 if 'authorization' not in self
._API
_HEADERS
:
77 self
._fetch
_oauth
_token
(video_id
)
79 headers
= dict(self
._API
_HEADERS
)
80 headers
['x-customheader'] = f
'https://www.redgifs.com/watch/{video_id}'
81 data
= self
._download
_json
(
82 f
'https://api.redgifs.com/v2/{ep}', video_id
, headers
=headers
, **kwargs
)
84 except ExtractorError
as e
:
85 if first_attempt
and isinstance(e
.cause
, HTTPError
) and e
.cause
.status
== 401:
86 del self
._API
_HEADERS
['authorization'] # refresh the token
91 raise ExtractorError(f
'RedGifs said: {data["error"]}', expected
=True, video_id
=video_id
)
94 def _fetch_page(self
, ep
, video_id
, query
, page
):
95 query
['page'] = page
+ 1
96 data
= self
._call
_api
(
97 ep
, video_id
, query
=query
, note
=f
'Downloading JSON metadata page {page + 1}')
99 for entry
in data
['gifs']:
100 yield self
._parse
_gif
_data
(entry
)
102 def _prepare_api_query(self
, query
, fields
):
104 (field_name
, query
.get(field_name
, (default
,))[0])
105 for field_name
, default
in fields
.items()]
107 return {key
: val
for key
, val
in api_query
if val
is not None}
109 def _paged_entries(self
, ep
, item_id
, query
, fields
):
110 page
= int_or_none(query
.get('page', (None,))[0])
111 page_fetcher
= functools
.partial(
112 self
._fetch
_page
, ep
, item_id
, self
._prepare
_api
_query
(query
, fields
))
113 return page_fetcher(page
) if page
else OnDemandPagedList(page_fetcher
, self
._PAGE
_SIZE
)
116 class RedGifsIE(RedGifsBaseInfoExtractor
):
117 _VALID_URL
= r
'https?://(?:(?:www\.)?redgifs\.com/watch/|thumbs2\.redgifs\.com/)(?P<id>[^-/?#\.]+)'
119 'url': 'https://www.redgifs.com/watch/squeakyhelplesswisent',
121 'id': 'squeakyhelplesswisent',
123 'title': 'Hotwife Legs Thick',
124 'timestamp': 1636287915,
125 'upload_date': '20211107',
126 'uploader': 'ignored52',
135 'url': 'https://thumbs2.redgifs.com/SqueakyHelplessWisent-mobile.mp4#t=0',
137 'id': 'squeakyhelplesswisent',
139 'title': 'Hotwife Legs Thick',
140 'timestamp': 1636287915,
141 'upload_date': '20211107',
142 'uploader': 'ignored52',
152 def _real_extract(self
, url
):
153 video_id
= self
._match
_id
(url
).lower()
154 video_info
= self
._call
_api
(
155 f
'gifs/{video_id}?views=yes', video_id
, note
='Downloading video info')
156 return self
._parse
_gif
_data
(video_info
['gif'])
159 class RedGifsSearchIE(RedGifsBaseInfoExtractor
):
160 IE_DESC
= 'Redgifs search'
161 _VALID_URL
= r
'https?://(?:www\.)?redgifs\.com/browse\?(?P<query>[^#]+)'
165 'url': 'https://www.redgifs.com/browse?tags=Lesbian',
167 'id': 'tags=Lesbian',
169 'description': 'RedGifs search for Lesbian, ordered by trending',
171 'playlist_mincount': 100,
174 'url': 'https://www.redgifs.com/browse?type=g&order=latest&tags=Lesbian',
176 'id': 'type=g&order=latest&tags=Lesbian',
178 'description': 'RedGifs search for Lesbian, ordered by latest',
180 'playlist_mincount': 100,
183 'url': 'https://www.redgifs.com/browse?type=g&order=latest&tags=Lesbian&page=2',
185 'id': 'type=g&order=latest&tags=Lesbian&page=2',
187 'description': 'RedGifs search for Lesbian, ordered by latest',
189 'playlist_count': 80,
193 def _real_extract(self
, url
):
194 query_str
= self
._match
_valid
_url
(url
).group('query')
195 query
= urllib
.parse
.parse_qs(query_str
)
196 if not query
.get('tags'):
197 raise ExtractorError('Invalid query tags', expected
=True)
199 tags
= query
.get('tags')[0]
200 order
= query
.get('order', ('trending',))[0]
202 query
['search_text'] = [tags
]
203 entries
= self
._paged
_entries
('gifs/search', query_str
, query
, {
209 return self
.playlist_result(
210 entries
, query_str
, tags
, f
'RedGifs search for {tags}, ordered by {order}')
213 class RedGifsUserIE(RedGifsBaseInfoExtractor
):
214 IE_DESC
= 'Redgifs user'
215 _VALID_URL
= r
'https?://(?:www\.)?redgifs\.com/users/(?P<username>[^/?#]+)(?:\?(?P<query>[^#]+))?'
219 'url': 'https://www.redgifs.com/users/lamsinka89',
222 'title': 'lamsinka89',
223 'description': 'RedGifs user lamsinka89, ordered by recent',
225 'playlist_mincount': 100,
228 'url': 'https://www.redgifs.com/users/lamsinka89?page=3',
230 'id': 'lamsinka89?page=3',
231 'title': 'lamsinka89',
232 'description': 'RedGifs user lamsinka89, ordered by recent',
234 'playlist_count': 30,
237 'url': 'https://www.redgifs.com/users/lamsinka89?order=best&type=g',
239 'id': 'lamsinka89?order=best&type=g',
240 'title': 'lamsinka89',
241 'description': 'RedGifs user lamsinka89, ordered by best',
243 'playlist_mincount': 100,
247 def _real_extract(self
, url
):
248 username
, query_str
= self
._match
_valid
_url
(url
).group('username', 'query')
249 playlist_id
= f
'{username}?{query_str}' if query_str
else username
251 query
= urllib
.parse
.parse_qs(query_str
)
252 order
= query
.get('order', ('recent',))[0]
254 entries
= self
._paged
_entries
(f
'users/{username}/search', playlist_id
, query
, {
259 return self
.playlist_result(
260 entries
, playlist_id
, username
, f
'RedGifs user {username}, ordered by {order}')