]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vk.py
[bliptv] Remove unused import
[yt-dlp.git] / youtube_dl / extractor / vk.py
CommitLineData
60d142aa 1# encoding: utf-8
94a23d2a
PH
2from __future__ import unicode_literals
3
60d142aa
JMF
4import re
5import json
6
7from .common import InfoExtractor
1cc79574
PH
8from ..compat import (
9 compat_str,
10 compat_urllib_parse,
11 compat_urllib_request,
12)
60d142aa 13from ..utils import (
9032dc28 14 ExtractorError,
1cc79574 15 orderedSet,
8117df4c 16 str_to_int,
60d142aa 17 unescapeHTML,
e1e8b689 18 unified_strdate,
1cc79574 19)
60d142aa
JMF
20
21
22class VKIE(InfoExtractor):
1ecb5d1d
S
23 IE_NAME = 'vk'
24 IE_DESC = 'VK'
cf9cf7dd
S
25 _VALID_URL = r'''(?x)
26 https?://
27 (?:
28 (?:m\.)?vk\.com/video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|
29 (?:
30 (?:m\.)?vk\.com/(?:.+?\?.*?z=)?video|
31 (?:www\.)?biqle\.ru/watch/
32 )
79913fde 33 (?P<videoid>[^s].*?)(?:\?(?:.*\blist=(?P<list_id>[\da-f]+))?|%2F|$)
cf9cf7dd
S
34 )
35 '''
5544e038 36 _NETRC_MACHINE = 'vk'
60d142aa 37
9032dc28
S
38 _TESTS = [
39 {
40 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
41 'md5': '0deae91935c54e00003c2a00646315f0',
42 'info_dict': {
43 'id': '162222515',
44 'ext': 'flv',
45 'title': 'ProtivoGunz - Хуёвая песня',
36300346 46 'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
9032dc28 47 'duration': 195,
42e1ff86 48 'upload_date': '20120212',
8117df4c 49 'view_count': int,
9032dc28 50 },
60d142aa 51 },
9032dc28 52 {
c52331f3
WS
53 'url': 'http://vk.com/video205387401_165548505',
54 'md5': '6c0aeb2e90396ba97035b9cbde548700',
9032dc28 55 'info_dict': {
c52331f3 56 'id': '165548505',
9032dc28 57 'ext': 'mp4',
c52331f3
WS
58 'uploader': 'Tom Cruise',
59 'title': 'No name',
60 'duration': 9,
8117df4c
S
61 'upload_date': '20130721',
62 'view_count': int,
9032dc28
S
63 }
64 },
ca97a56e
S
65 {
66 'note': 'Embedded video',
67 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
68 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
69 'info_dict': {
70 'id': '162925554',
71 'ext': 'mp4',
72 'uploader': 'Vladimir Gavrin',
73 'title': 'Lin Dan',
74 'duration': 101,
42e1ff86 75 'upload_date': '20120730',
8117df4c 76 'view_count': int,
ca97a56e
S
77 }
78 },
9032dc28 79 {
c52331f3
WS
80 # VIDEO NOW REMOVED
81 # please update if you find a video whose URL follows the same pattern
9032dc28
S
82 'url': 'http://vk.com/video-8871596_164049491',
83 'md5': 'a590bcaf3d543576c9bd162812387666',
84 'note': 'Only available for registered users',
85 'info_dict': {
86 'id': '164049491',
87 'ext': 'mp4',
88 'uploader': 'Триллеры',
57bdc730 89 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
9032dc28 90 'duration': 8352,
8117df4c
S
91 'upload_date': '20121218',
92 'view_count': int,
9032dc28
S
93 },
94 'skip': 'Requires vk account credentials',
ca97a56e 95 },
57bdc730
S
96 {
97 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
98 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
99 'info_dict': {
100 'id': '168067957',
101 'ext': 'mp4',
102 'uploader': 'Киномания - лучшее из мира кино',
103 'title': ' ',
104 'duration': 7291,
42e1ff86 105 'upload_date': '20140328',
57bdc730
S
106 },
107 'skip': 'Requires vk account credentials',
108 },
849086a1
S
109 {
110 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
111 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
112 'note': 'ivi.ru embed',
113 'info_dict': {
114 'id': '60690',
115 'ext': 'mp4',
116 'title': 'Книга Илая',
117 'duration': 6771,
42e1ff86 118 'upload_date': '20140626',
8117df4c 119 'view_count': int,
849086a1 120 },
d518d06e 121 'skip': 'Only works from Russia',
849086a1 122 },
79913fde
S
123 {
124 # video (removed?) only available with list id
125 'url': 'https://vk.com/video30481095_171201961?list=8764ae2d21f14088d4',
126 'md5': '091287af5402239a1051c37ec7b92913',
127 'info_dict': {
128 'id': '171201961',
129 'ext': 'mp4',
130 'title': 'ТюменцевВВ_09.07.2015',
131 'uploader': 'Anton Ivanov',
132 'duration': 109,
133 'upload_date': '20150709',
134 'view_count': int,
135 },
136 },
9281f6d2
S
137 {
138 # youtube embed
139 'url': 'https://vk.com/video276849682_170681728',
140 'info_dict': {
141 'id': 'V3K4mi0SYkc',
142 'ext': 'mp4',
143 'title': "DSWD Awards 'Children's Joy Foundation, Inc.' Certificate of Registration and License to Operate",
144 'description': 'md5:bf9c26cfa4acdfb146362682edd3827a',
145 'duration': 179,
146 'upload_date': '20130116',
147 'uploader': "Children's Joy Foundation",
148 'uploader_id': 'thecjf',
149 'view_count': int,
150 },
151 },
a8363f3a
PH
152 {
153 # removed video, just testing that we match the pattern
154 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
155 'only_matching': True,
156 },
cf9cf7dd
S
157 {
158 # vk wrapper
159 'url': 'http://www.biqle.ru/watch/847655_160197695',
160 'only_matching': True,
161 }
9032dc28
S
162 ]
163
164 def _login(self):
165 (username, password) = self._get_login_info()
166 if username is None:
167 return
168
226b886c
S
169 login_page = self._download_webpage(
170 'https://vk.com', None, 'Downloading login page')
171
f8da79f8 172 login_form = self._hidden_inputs(login_page)
226b886c
S
173
174 login_form.update({
4f3bf679
S
175 'email': username.encode('cp1251'),
176 'pass': password.encode('cp1251'),
226b886c 177 })
9032dc28 178
226b886c
S
179 request = compat_urllib_request.Request(
180 'https://login.vk.com/?act=login',
181 compat_urllib_parse.urlencode(login_form).encode('utf-8'))
182 login_page = self._download_webpage(
183 request, None, note='Logging in as %s' % username)
9032dc28
S
184
185 if re.search(r'onLoginFailed', login_page):
226b886c
S
186 raise ExtractorError(
187 'Unable to login, incorrect username and/or password', expected=True)
9032dc28
S
188
189 def _real_initialize(self):
190 self._login()
60d142aa
JMF
191
192 def _real_extract(self, url):
193 mobj = re.match(self._VALID_URL, url)
ca97a56e
S
194 video_id = mobj.group('videoid')
195
196 if not video_id:
197 video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
9032dc28 198
275c0423 199 info_url = 'https://vk.com/al_video.php?act=show&al=1&module=video&video=%s' % video_id
79913fde
S
200
201 # Some videos (removed?) can only be downloaded with list id specified
202 list_id = mobj.group('list_id')
203 if list_id:
204 info_url += '&list=%s' % list_id
205
60d142aa 206 info_page = self._download_webpage(info_url, video_id)
9032dc28 207
7f220b2f
S
208 if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
209 raise ExtractorError(
210 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
211 expected=True)
212
e0c51cda
S
213 ERRORS = {
214 r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
3d36cea4
PH
215 'Video %s has been removed from public access due to rightholder complaint.',
216
e0c51cda 217 r'<!>Please log in or <':
3d36cea4
PH
218 'Video %s is only available for registered users, '
219 'use --username and --password options to provide account credentials.',
220
221 r'<!>Unknown error':
1aa5172f
S
222 'Video %s does not exist.',
223
224 r'<!>Видео временно недоступно':
225 'Video %s is temporarily unavailable.',
d919fa33
S
226
227 r'<!>Access denied':
228 'Access denied to video %s.',
e0c51cda 229 }
9032dc28 230
e0c51cda
S
231 for error_re, error_msg in ERRORS.items():
232 if re.search(error_re, info_page):
233 raise ExtractorError(error_msg % video_id, expected=True)
9334f8f1 234
46478456
S
235 youtube_url = self._search_regex(
236 r'<iframe[^>]+src="((?:https?:)?//www.youtube.com/embed/[^"]+)"',
237 info_page, 'youtube iframe', default=None)
238 if youtube_url:
9281f6d2 239 return self.url_result(youtube_url, 'Youtube')
849086a1 240
7a1818c9
PH
241 m_rutube = re.search(
242 r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page)
7a1818c9
PH
243 if m_rutube is not None:
244 self.to_screen('rutube video detected')
245 rutube_url = self._proto_relative_url(
246 m_rutube.group(1).replace('\\', ''))
247 return self.url_result(rutube_url)
248
054932f4 249 m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
849086a1 250 if m_opts:
054932f4 251 m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
849086a1
S
252 if m_opts_url:
253 opts_url = m_opts_url.group(1)
254 if opts_url.startswith('//'):
255 opts_url = 'http:' + opts_url
256 return self.url_result(opts_url)
257
054932f4 258 data_json = self._search_regex(r'var\s+vars\s*=\s*({.+?});', info_page, 'vars')
608bf698 259 data = json.loads(data_json)
60d142aa 260
02a12f9f
WS
261 # Extract upload date
262 upload_date = None
7c7dd9dc 263 mobj = re.search(r'id="mv_date(?:_views)?_wrap"[^>]*>([a-zA-Z]+ [0-9]+), ([0-9]+) at', info_page)
02a12f9f 264 if mobj is not None:
9e1a5b84 265 mobj.group(1) + ' ' + mobj.group(2)
02a12f9f
WS
266 upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2))
267
8117df4c
S
268 view_count = str_to_int(self._search_regex(
269 r'"mv_views_count_number"[^>]*>([\d,.]+) views<',
270 info_page, 'view count', fatal=False))
271
913f3292
PH
272 formats = [{
273 'format_id': k,
274 'url': v,
275 'width': int(k[len('url'):]),
276 } for k, v in data.items()
277 if k.startswith('url')]
278 self._sort_formats(formats)
279
60d142aa 280 return {
608bf698 281 'id': compat_str(data['vid']),
913f3292 282 'formats': formats,
608bf698 283 'title': unescapeHTML(data['md_title']),
913f3292
PH
284 'thumbnail': data.get('jpg'),
285 'uploader': data.get('md_author'),
02a12f9f
WS
286 'duration': data.get('duration'),
287 'upload_date': upload_date,
8117df4c 288 'view_count': view_count,
60d142aa 289 }
469d4c89
WS
290
291
292class VKUserVideosIE(InfoExtractor):
1ecb5d1d
S
293 IE_NAME = 'vk:uservideos'
294 IE_DESC = "VK - User's Videos"
dc786d3d 295 _VALID_URL = r'https?://vk\.com/videos(?P<id>-?[0-9]+)$'
469d4c89 296 _TEMPLATE_URL = 'https://vk.com/videos'
dc786d3d 297 _TESTS = [{
469d4c89 298 'url': 'http://vk.com/videos205387401',
15ec6693
PH
299 'info_dict': {
300 'id': '205387401',
dc786d3d 301 'title': "Tom Cruise's Videos",
15ec6693 302 },
469d4c89 303 'playlist_mincount': 4,
dc786d3d
S
304 }, {
305 'url': 'http://vk.com/videos-77521',
306 'only_matching': True,
307 }]
469d4c89 308
469d4c89 309 def _real_extract(self, url):
021a0db8 310 page_id = self._match_id(url)
dc786d3d
S
311
312 webpage = self._download_webpage(url, page_id)
313
314 entries = [
d16abf43
PH
315 self.url_result(
316 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
fec73daa 317 for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
dc786d3d
S
318
319 title = unescapeHTML(self._search_regex(
320 r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
321 webpage, 'title', default=page_id))
322
323 return self.playlist_result(entries, page_id, title)