]> jfr.im git - yt-dlp.git/blob - youtube_dlc/extractor/pinterest.py
[formatsort] Remove unnecessary `field_preference` from extractors
[yt-dlp.git] / youtube_dlc / extractor / pinterest.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5 import re
6
7 from .common import InfoExtractor
8 from ..compat import compat_str
9 from ..utils import (
10 determine_ext,
11 float_or_none,
12 int_or_none,
13 try_get,
14 unified_timestamp,
15 url_or_none,
16 )
17
18
19 class PinterestBaseIE(InfoExtractor):
20 _VALID_URL_BASE = r'https?://(?:[^/]+\.)?pinterest\.(?:com|fr|de|ch|jp|cl|ca|it|co\.uk|nz|ru|com\.au|at|pt|co\.kr|es|com\.mx|dk|ph|th|com\.uy|co|nl|info|kr|ie|vn|com\.vn|ec|mx|in|pe|co\.at|hu|co\.in|co\.nz|id|com\.ec|com\.py|tw|be|uk|com\.bo|com\.pe)'
21
22 def _call_api(self, resource, video_id, options):
23 return self._download_json(
24 'https://www.pinterest.com/resource/%sResource/get/' % resource,
25 video_id, 'Download %s JSON metadata' % resource, query={
26 'data': json.dumps({'options': options})
27 })['resource_response']
28
29 def _extract_video(self, data, extract_formats=True):
30 video_id = data['id']
31
32 title = (data.get('title') or data.get('grid_title') or video_id).strip()
33
34 formats = []
35 duration = None
36 if extract_formats:
37 for format_id, format_dict in data['videos']['video_list'].items():
38 if not isinstance(format_dict, dict):
39 continue
40 format_url = url_or_none(format_dict.get('url'))
41 if not format_url:
42 continue
43 duration = float_or_none(format_dict.get('duration'), scale=1000)
44 ext = determine_ext(format_url)
45 if 'hls' in format_id.lower() or ext == 'm3u8':
46 formats.extend(self._extract_m3u8_formats(
47 format_url, video_id, 'mp4', entry_protocol='m3u8_native',
48 m3u8_id=format_id, fatal=False))
49 else:
50 formats.append({
51 'url': format_url,
52 'format_id': format_id,
53 'width': int_or_none(format_dict.get('width')),
54 'height': int_or_none(format_dict.get('height')),
55 'duration': duration,
56 })
57 self._sort_formats(formats)
58
59 description = data.get('description') or data.get('description_html') or data.get('seo_description')
60 timestamp = unified_timestamp(data.get('created_at'))
61
62 def _u(field):
63 return try_get(data, lambda x: x['closeup_attribution'][field], compat_str)
64
65 uploader = _u('full_name')
66 uploader_id = _u('id')
67
68 repost_count = int_or_none(data.get('repin_count'))
69 comment_count = int_or_none(data.get('comment_count'))
70 categories = try_get(data, lambda x: x['pin_join']['visual_annotation'], list)
71 tags = data.get('hashtags')
72
73 thumbnails = []
74 images = data.get('images')
75 if isinstance(images, dict):
76 for thumbnail_id, thumbnail in images.items():
77 if not isinstance(thumbnail, dict):
78 continue
79 thumbnail_url = url_or_none(thumbnail.get('url'))
80 if not thumbnail_url:
81 continue
82 thumbnails.append({
83 'url': thumbnail_url,
84 'width': int_or_none(thumbnail.get('width')),
85 'height': int_or_none(thumbnail.get('height')),
86 })
87
88 return {
89 'id': video_id,
90 'title': title,
91 'description': description,
92 'duration': duration,
93 'timestamp': timestamp,
94 'thumbnails': thumbnails,
95 'uploader': uploader,
96 'uploader_id': uploader_id,
97 'repost_count': repost_count,
98 'comment_count': comment_count,
99 'categories': categories,
100 'tags': tags,
101 'formats': formats,
102 'extractor_key': PinterestIE.ie_key(),
103 }
104
105
106 class PinterestIE(PinterestBaseIE):
107 _VALID_URL = r'%s/pin/(?P<id>\d+)' % PinterestBaseIE._VALID_URL_BASE
108 _TESTS = [{
109 'url': 'https://www.pinterest.com/pin/664281013778109217/',
110 'md5': '6550c2af85d6d9f3fe3b88954d1577fc',
111 'info_dict': {
112 'id': '664281013778109217',
113 'ext': 'mp4',
114 'title': 'Origami',
115 'description': 'md5:b9d90ddf7848e897882de9e73344f7dd',
116 'duration': 57.7,
117 'timestamp': 1593073622,
118 'upload_date': '20200625',
119 'uploader': 'Love origami -I am Dafei',
120 'uploader_id': '586523688879454212',
121 'repost_count': 50,
122 'comment_count': 0,
123 'categories': list,
124 'tags': list,
125 },
126 }, {
127 'url': 'https://co.pinterest.com/pin/824721750502199491/',
128 'only_matching': True,
129 }]
130
131 def _real_extract(self, url):
132 video_id = self._match_id(url)
133 data = self._call_api(
134 'Pin', video_id, {
135 'field_set_key': 'unauth_react_main_pin',
136 'id': video_id,
137 })['data']
138 return self._extract_video(data)
139
140
141 class PinterestCollectionIE(PinterestBaseIE):
142 _VALID_URL = r'%s/(?P<username>[^/]+)/(?P<id>[^/?#&]+)' % PinterestBaseIE._VALID_URL_BASE
143 _TESTS = [{
144 'url': 'https://www.pinterest.ca/mashal0407/cool-diys/',
145 'info_dict': {
146 'id': '585890301462791043',
147 'title': 'cool diys',
148 },
149 'playlist_count': 8,
150 }, {
151 'url': 'https://www.pinterest.ca/fudohub/videos/',
152 'info_dict': {
153 'id': '682858430939307450',
154 'title': 'VIDEOS',
155 },
156 'playlist_mincount': 365,
157 'skip': 'Test with extract_formats=False',
158 }]
159
160 @classmethod
161 def suitable(cls, url):
162 return False if PinterestIE.suitable(url) else super(
163 PinterestCollectionIE, cls).suitable(url)
164
165 def _real_extract(self, url):
166 username, slug = re.match(self._VALID_URL, url).groups()
167 board = self._call_api(
168 'Board', slug, {
169 'slug': slug,
170 'username': username
171 })['data']
172 board_id = board['id']
173 options = {
174 'board_id': board_id,
175 'page_size': 250,
176 }
177 bookmark = None
178 entries = []
179 while True:
180 if bookmark:
181 options['bookmarks'] = [bookmark]
182 board_feed = self._call_api('BoardFeed', board_id, options)
183 for item in (board_feed.get('data') or []):
184 if not isinstance(item, dict) or item.get('type') != 'pin':
185 continue
186 video_id = item.get('id')
187 if video_id:
188 # Some pins may not be available anonymously via pin URL
189 # video = self._extract_video(item, extract_formats=False)
190 # video.update({
191 # '_type': 'url_transparent',
192 # 'url': 'https://www.pinterest.com/pin/%s/' % video_id,
193 # })
194 # entries.append(video)
195 entries.append(self._extract_video(item))
196 bookmark = board_feed.get('bookmark')
197 if not bookmark:
198 break
199 return self.playlist_result(
200 entries, playlist_id=board_id, playlist_title=board.get('name'))