1 from __future__
import unicode_literals
8 from .common
import InfoExtractor
15 get_element_by_attribute
,
24 class InstagramIE(InfoExtractor
):
25 _VALID_URL
= r
'(?P<url>https?://(?:www\.)?instagram\.com/p/(?P<id>[^/?#&]+))'
27 'url': 'https://instagram.com/p/aye83DjauH/?foo=bar#abc',
28 'md5': '0d2da106a9d2631273e192b372806516',
32 'title': 'Video by naomipq',
33 'description': 'md5:1f17f0ab29bd6fe2bfad705f58de3cb8',
34 'thumbnail': r
're:^https?://.*\.jpg',
35 'timestamp': 1371748545,
36 'upload_date': '20130620',
37 'uploader_id': 'naomipq',
38 'uploader': 'Naomi Leonor Phan-Quang',
45 'url': 'https://www.instagram.com/p/BA-pQFBG8HZ/?taken-by=britneyspears',
49 'title': 'Video by britneyspears',
50 'thumbnail': r
're:^https?://.*\.jpg',
51 'timestamp': 1453760977,
52 'upload_date': '20160125',
53 'uploader_id': 'britneyspears',
54 'uploader': 'Britney Spears',
60 'skip_download': True,
64 'url': 'https://www.instagram.com/p/BQ0eAlwhDrw/',
86 'title': 'Post by instagram',
87 'description': 'md5:0f9203fc6a2ce4d228da5754bcf54957',
90 'url': 'https://instagram.com/p/-Cmh1cukG2/',
91 'only_matching': True,
93 'url': 'http://instagram.com/p/9o6LshA7zy/embed/',
94 'only_matching': True,
98 def _extract_embed_url(webpage
):
100 r
'<iframe[^>]+src=(["\'])(?P
<url
>(?
:https?
:)?
//(?
:www\
.)?instagram\
.com
/p
/[^
/]+/embed
.*?
)\
1',
103 return mobj.group('url
')
105 blockquote_el = get_element_by_attribute(
106 'class', 'instagram
-media
', webpage)
107 if blockquote_el is None:
111 r'<a
[^
>]+href
=([\'"])(?P<link>[^\'"]+)\
1', blockquote_el)
113 return mobj.group('link
')
115 def _real_extract(self, url):
116 mobj = re.match(self._VALID_URL, url)
117 video_id = mobj.group('id')
118 url = mobj.group('url
')
120 webpage = self._download_webpage(url, video_id)
122 (video_url, description, thumbnail, timestamp, uploader,
123 uploader_id, like_count, comment_count, comments, height,
126 shared_data = self._parse_json(
128 r'window\
._sharedData\s
*=\s
*({.+?
});',
129 webpage, 'shared data
', default='{}'),
130 video_id, fatal=False)
134 (lambda x: x['entry_data
']['PostPage
'][0]['graphql
']['shortcode_media
'],
135 lambda x: x['entry_data
']['PostPage
'][0]['media
']),
138 video_url = media.get('video_url
')
139 height = int_or_none(media.get('dimensions
', {}).get('height
'))
140 width = int_or_none(media.get('dimensions
', {}).get('width
'))
141 description = try_get(
142 media, lambda x: x['edge_media_to_caption
']['edges
'][0]['node
']['text
'],
143 compat_str) or media.get('caption
')
144 thumbnail = media.get('display_src
')
145 timestamp = int_or_none(media.get('taken_at_timestamp
') or media.get('date
'))
146 uploader = media.get('owner
', {}).get('full_name
')
147 uploader_id = media.get('owner
', {}).get('username
')
149 def get_count(key, kind):
150 return int_or_none(try_get(
151 media, (lambda x: x['edge_media_
%s' % key]['count
'],
152 lambda x: x['%ss' % kind]['count
'])))
153 like_count = get_count('preview_like
', 'like
')
154 comment_count = get_count('to_comment
', 'comment
')
157 'author
': comment.get('user
', {}).get('username
'),
158 'author_id
': comment.get('user
', {}).get('id'),
159 'id': comment.get('id'),
160 'text
': comment.get('text
'),
161 'timestamp
': int_or_none(comment.get('created_at
')),
162 } for comment in media.get(
163 'comments
', {}).get('nodes
', []) if comment.get('text
')]
166 media, lambda x: x['edge_sidecar_to_children
']['edges
'],
170 for edge_num, edge in enumerate(edges, start=1):
171 node = try_get(edge, lambda x: x['node
'], dict)
174 node_video_url = url_or_none(node.get('video_url
'))
175 if not node_video_url:
178 'id': node.get('shortcode
') or node['id'],
179 'title
': 'Video
%d' % edge_num,
180 'url
': node_video_url,
181 'thumbnail
': node.get('display_url
'),
182 'width
': int_or_none(try_get(node, lambda x: x['dimensions
']['width
'])),
183 'height
': int_or_none(try_get(node, lambda x: x['dimensions
']['height
'])),
184 'view_count
': int_or_none(node.get('video_view_count
')),
186 return self.playlist_result(
188 'Post by
%s' % uploader_id if uploader_id else None,
192 video_url = self._og_search_video_url(webpage, secure=False)
201 uploader_id = self._search_regex(
202 r'"owner"\s
*:\s
*{\s
*"username"\s
*:\s
*"(.+?)"',
203 webpage, 'uploader
id', fatal=False)
206 description = self._search_regex(
207 r'"caption"\s
*:\s
*"(.+?)"', webpage, 'description
', default=None)
208 if description is not None:
209 description = lowercase_escape(description)
212 thumbnail = self._og_search_thumbnail(webpage)
218 'title
': 'Video by
%s' % uploader_id,
219 'description
': description,
220 'thumbnail
': thumbnail,
221 'timestamp
': timestamp,
222 'uploader_id
': uploader_id,
223 'uploader
': uploader,
224 'like_count
': like_count,
225 'comment_count
': comment_count,
226 'comments
': comments,
230 class InstagramPlaylistIE(InfoExtractor):
231 # A superclass for handling any kind of query based on GraphQL which
232 # results in a playlist.
234 _gis_tmpl = None # used to cache GIS request type
236 def _parse_graphql(self, webpage, item_id):
237 # Reads a webpage and returns its GraphQL data.
238 return self._parse_json(
240 r'sharedData\s
*=\s
*({.+?
})\s
*;\s
*[<\n]', webpage, 'data
'),
243 def _extract_graphql(self, data, url):
244 # Parses GraphQL queries containing videos and generates a playlist.
245 def get_count(suffix):
246 return int_or_none(try_get(
247 node, lambda x: x['edge_media_
' + suffix]['count
']))
249 uploader_id = self._match_id(url)
250 csrf_token = data['config
']['csrf_token
']
251 rhx_gis = data.get('rhx_gis
') or '3c7ca9dcefcf966d11dacf1f151335e8
'
254 for page_num in itertools.count(1):
259 variables.update(self._query_vars_for(data))
260 variables = json.dumps(variables)
263 gis_tmpls = [self._gis_tmpl]
268 '%s:%s' % (rhx_gis, csrf_token),
269 '%s:%s:%s' % (rhx_gis, csrf_token, std_headers['User
-Agent
']),
272 # try all of the ways to generate a GIS query, and not only use the
273 # first one that works, but cache it for future requests
274 for gis_tmpl in gis_tmpls:
276 json_data = self._download_json(
277 'https
://www
.instagram
.com
/graphql
/query
/', uploader_id,
278 'Downloading JSON page
%d' % page_num, headers={
279 'X
-Requested
-With
': 'XMLHttpRequest
',
280 'X
-Instagram
-GIS
': hashlib.md5(
281 ('%s:%s' % (gis_tmpl, variables)).encode('utf
-8')).hexdigest(),
283 'query_hash
': self._QUERY_HASH,
284 'variables
': variables,
286 media = self._parse_timeline_from(json_data)
287 self._gis_tmpl = gis_tmpl
289 except ExtractorError as e:
290 # if it's an error caused by a bad query
, and there are
291 # more GIS templates to try, ignore it and keep trying
292 if isinstance(e
.cause
, compat_HTTPError
) and e
.cause
.code
== 403:
293 if gis_tmpl
!= gis_tmpls
[-1]:
297 edges
= media
.get('edges')
298 if not edges
or not isinstance(edges
, list):
302 node
= edge
.get('node')
303 if not node
or not isinstance(node
, dict):
305 if node
.get('__typename') != 'GraphVideo' and node
.get('is_video') is not True:
307 video_id
= node
.get('shortcode')
311 info
= self
.url_result(
312 'https://instagram.com/p/%s/' % video_id
,
313 ie
=InstagramIE
.ie_key(), video_id
=video_id
)
315 description
= try_get(
316 node
, lambda x
: x
['edge_media_to_caption']['edges'][0]['node']['text'],
318 thumbnail
= node
.get('thumbnail_src') or node
.get('display_src')
319 timestamp
= int_or_none(node
.get('taken_at_timestamp'))
321 comment_count
= get_count('to_comment')
322 like_count
= get_count('preview_like')
323 view_count
= int_or_none(node
.get('video_view_count'))
326 'description': description
,
327 'thumbnail': thumbnail
,
328 'timestamp': timestamp
,
329 'comment_count': comment_count
,
330 'like_count': like_count
,
331 'view_count': view_count
,
336 page_info
= media
.get('page_info')
337 if not page_info
or not isinstance(page_info
, dict):
340 has_next_page
= page_info
.get('has_next_page')
341 if not has_next_page
:
344 cursor
= page_info
.get('end_cursor')
345 if not cursor
or not isinstance(cursor
, compat_str
):
348 def _real_extract(self
, url
):
349 user_or_tag
= self
._match
_id
(url
)
350 webpage
= self
._download
_webpage
(url
, user_or_tag
)
351 data
= self
._parse
_graphql
(webpage
, user_or_tag
)
353 self
._set
_cookie
('instagram.com', 'ig_pr', '1')
355 return self
.playlist_result(
356 self
._extract
_graphql
(data
, url
), user_or_tag
, user_or_tag
)
359 class InstagramUserIE(InstagramPlaylistIE
):
360 _VALID_URL
= r
'https?://(?:www\.)?instagram\.com/(?P<id>[^/]{2,})/?(?:$|[?#])'
361 IE_DESC
= 'Instagram user profile'
362 IE_NAME
= 'instagram:user'
364 'url': 'https://instagram.com/porsche',
371 'extract_flat': True,
372 'skip_download': True,
377 _QUERY_HASH
= '42323d64886122307be10013ad2dcc44',
380 def _parse_timeline_from(data
):
381 # extracts the media timeline data from a GraphQL result
382 return data
['data']['user']['edge_owner_to_timeline_media']
385 def _query_vars_for(data
):
386 # returns a dictionary of variables to add to the timeline query based
387 # on the GraphQL of the original page
389 'id': data
['entry_data']['ProfilePage'][0]['graphql']['user']['id']
393 class InstagramTagIE(InstagramPlaylistIE
):
394 _VALID_URL
= r
'https?://(?:www\.)?instagram\.com/explore/tags/(?P<id>[^/]+)'
395 IE_DESC
= 'Instagram hashtag search'
396 IE_NAME
= 'instagram:tag'
398 'url': 'https://instagram.com/explore/tags/lolcats',
403 'playlist_count': 50,
405 'extract_flat': True,
406 'skip_download': True,
411 _QUERY_HASH
= 'f92f56d47dc7a55b606908374b43a314',
414 def _parse_timeline_from(data
):
415 # extracts the media timeline data from a GraphQL result
416 return data
['data']['hashtag']['edge_hashtag_to_media']
419 def _query_vars_for(data
):
420 # returns a dictionary of variables to add to the timeline query based
421 # on the GraphQL of the original page
424 data
['entry_data']['TagPage'][0]['graphql']['hashtag']['name']