]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/storyfire.py
[cleanup, utils] Don't use kwargs for `format_field`
[yt-dlp.git] / yt_dlp / extractor / storyfire.py
CommitLineData
bc2ca1bb 1import functools
2
8d6df01f 3from .common import InfoExtractor
bc2ca1bb 4from ..utils import (
e0ddbd02 5 format_field,
bc2ca1bb 6 int_or_none,
7 OnDemandPagedList,
8 smuggle_url,
9)
10
11
12class StoryFireBaseIE(InfoExtractor):
13 _VALID_URL_BASE = r'https?://(?:www\.)?storyfire\.com/'
14
15 def _call_api(self, path, video_id, resource, query=None):
16 return self._download_json(
17 'https://storyfire.com/app/%s/%s' % (path, video_id), video_id,
18 'Downloading %s JSON metadata' % resource, query=query)
19
20 def _parse_video(self, video):
21 title = video['title']
22 vimeo_id = self._search_regex(
23 r'https?://player\.vimeo\.com/external/(\d+)',
24 video['vimeoVideoURL'], 'vimeo id')
25
bc2ca1bb 26 uploader_id = video.get('hostID')
8d6df01f 27
bc2ca1bb 28 return {
29 '_type': 'url_transparent',
30 'id': vimeo_id,
31 'title': title,
32 'description': video.get('description'),
33 'url': smuggle_url(
34 'https://player.vimeo.com/video/' + vimeo_id, {
35 'http_headers': {
36 'Referer': 'https://storyfire.com/',
37 }
38 }),
bc2ca1bb 39 'thumbnail': video.get('storyImage'),
40 'view_count': int_or_none(video.get('views')),
41 'like_count': int_or_none(video.get('likesCount')),
42 'comment_count': int_or_none(video.get('commentsCount')),
43 'duration': int_or_none(video.get('videoDuration')),
44 'timestamp': int_or_none(video.get('publishDate')),
45 'uploader': video.get('username'),
46 'uploader_id': uploader_id,
a70635b8 47 'uploader_url': format_field(uploader_id, None, 'https://storyfire.com/user/%s/video'),
bc2ca1bb 48 'episode_number': int_or_none(video.get('episodeNumber') or video.get('episode_number')),
49 }
50
51
52class StoryFireIE(StoryFireBaseIE):
53 _VALID_URL = StoryFireBaseIE._VALID_URL_BASE + r'video-details/(?P<id>[0-9a-f]{24})'
54 _TEST = {
8d6df01f 55 'url': 'https://storyfire.com/video-details/5df1d132b6378700117f9181',
bc2ca1bb 56 'md5': 'caec54b9e4621186d6079c7ec100c1eb',
8d6df01f 57 'info_dict': {
bc2ca1bb 58 'id': '378954662',
8d6df01f
SS
59 'ext': 'mp4',
60 'title': 'Buzzfeed Teaches You About Memes',
61 'uploader_id': 'ntZAJFECERSgqHSxzonV5K2E89s1',
62 'timestamp': 1576129028,
bc2ca1bb 63 'description': 'md5:0b4e28021548e144bed69bb7539e62ea',
8d6df01f
SS
64 'uploader': 'whang!',
65 'upload_date': '20191212',
bc2ca1bb 66 'duration': 418,
67 'view_count': int,
68 'like_count': int,
69 'comment_count': int,
8d6df01f 70 },
bc2ca1bb 71 'params': {
72 'skip_download': True,
8d6df01f 73 },
bc2ca1bb 74 'expected_warnings': ['Unable to download JSON metadata']
8d6df01f
SS
75 }
76
77 def _real_extract(self, url):
78 video_id = self._match_id(url)
bc2ca1bb 79 video = self._call_api(
80 'generic/video-detail', video_id, 'video')['video']
81 return self._parse_video(video)
8d6df01f 82
8d6df01f 83
bc2ca1bb 84class StoryFireUserIE(StoryFireBaseIE):
85 _VALID_URL = StoryFireBaseIE._VALID_URL_BASE + r'user/(?P<id>[^/]+)/video'
86 _TEST = {
8d6df01f
SS
87 'url': 'https://storyfire.com/user/UQ986nFxmAWIgnkZQ0ftVhq4nOk2/video',
88 'info_dict': {
89 'id': 'UQ986nFxmAWIgnkZQ0ftVhq4nOk2',
8d6df01f 90 },
bc2ca1bb 91 'playlist_mincount': 151,
92 }
93 _PAGE_SIZE = 20
8d6df01f 94
bc2ca1bb 95 def _fetch_page(self, user_id, page):
96 videos = self._call_api(
97 'publicVideos', user_id, 'page %d' % (page + 1), {
98 'skip': page * self._PAGE_SIZE,
99 })['videos']
100 for video in videos:
101 yield self._parse_video(video)
8d6df01f
SS
102
103 def _real_extract(self, url):
104 user_id = self._match_id(url)
bc2ca1bb 105 entries = OnDemandPagedList(functools.partial(
106 self._fetch_page, user_id), self._PAGE_SIZE)
107 return self.playlist_result(entries, user_id)
8d6df01f 108
8d6df01f 109
bc2ca1bb 110class StoryFireSeriesIE(StoryFireBaseIE):
111 _VALID_URL = StoryFireBaseIE._VALID_URL_BASE + r'write/series/stories/(?P<id>[^/?&#]+)'
8d6df01f
SS
112 _TESTS = [{
113 'url': 'https://storyfire.com/write/series/stories/-Lq6MsuIHLODO6d2dDkr/',
114 'info_dict': {
115 'id': '-Lq6MsuIHLODO6d2dDkr',
116 },
bc2ca1bb 117 'playlist_mincount': 13,
8d6df01f
SS
118 }, {
119 'url': 'https://storyfire.com/write/series/stories/the_mortal_one/',
120 'info_dict': {
121 'id': 'the_mortal_one',
122 },
bc2ca1bb 123 'playlist_count': 0,
8d6df01f
SS
124 }]
125
bc2ca1bb 126 def _extract_videos(self, stories):
127 for story in stories.values():
128 if story.get('hasVideo'):
129 yield self._parse_video(story)
8d6df01f
SS
130
131 def _real_extract(self, url):
bc2ca1bb 132 series_id = self._match_id(url)
133 stories = self._call_api(
134 'seriesStories', series_id, 'series stories')
135 return self.playlist_result(self._extract_videos(stories), series_id)