vk.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import collections
  4. import re
  5. import json
  6. import sys
  7. from .common import InfoExtractor
  8. from ..compat import (
  9. compat_str,
  10. compat_urlparse,
  11. )
  12. from ..utils import (
  13. clean_html,
  14. ExtractorError,
  15. get_element_by_class,
  16. int_or_none,
  17. orderedSet,
  18. remove_start,
  19. str_to_int,
  20. unescapeHTML,
  21. unified_strdate,
  22. urlencode_postdata,
  23. )
  24. from .dailymotion import DailymotionIE
  25. from .pladform import PladformIE
  26. from .vimeo import VimeoIE
  27. class VKBaseIE(InfoExtractor):
  28. _NETRC_MACHINE = 'vk'
  29. def _login(self):
  30. (username, password) = self._get_login_info()
  31. if username is None:
  32. return
  33. login_page, url_handle = self._download_webpage_handle(
  34. 'https://vk.com', None, 'Downloading login page')
  35. login_form = self._hidden_inputs(login_page)
  36. login_form.update({
  37. 'email': username.encode('cp1251'),
  38. 'pass': password.encode('cp1251'),
  39. })
  40. # https://new.vk.com/ serves two same remixlhk cookies in Set-Cookie header
  41. # and expects the first one to be set rather than second (see
  42. # https://github.com/rg3/youtube-dl/issues/9841#issuecomment-227871201).
  43. # As of RFC6265 the newer one cookie should be set into cookie store
  44. # what actually happens.
  45. # We will workaround this VK issue by resetting the remixlhk cookie to
  46. # the first one manually.
  47. for header, cookies in url_handle.headers.items():
  48. if header.lower() != 'set-cookie':
  49. continue
  50. if sys.version_info[0] >= 3:
  51. cookies = cookies.encode('iso-8859-1')
  52. cookies = cookies.decode('utf-8')
  53. remixlhk = re.search(r'remixlhk=(.+?);.*?\bdomain=(.+?)(?:[,;]|$)', cookies)
  54. if remixlhk:
  55. value, domain = remixlhk.groups()
  56. self._set_cookie(domain, 'remixlhk', value)
  57. break
  58. login_page = self._download_webpage(
  59. 'https://login.vk.com/?act=login', None,
  60. note='Logging in as %s' % username,
  61. data=urlencode_postdata(login_form))
  62. if re.search(r'onLoginFailed', login_page):
  63. raise ExtractorError(
  64. 'Unable to login, incorrect username and/or password', expected=True)
  65. def _real_initialize(self):
  66. self._login()
  67. class VKIE(VKBaseIE):
  68. IE_NAME = 'vk'
  69. IE_DESC = 'VK'
  70. _VALID_URL = r'''(?x)
  71. https?://
  72. (?:
  73. (?:
  74. (?:(?:m|new)\.)?vk\.com/video_|
  75. (?:www\.)?daxab.com/
  76. )
  77. ext\.php\?(?P<embed_query>.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+).*)|
  78. (?:
  79. (?:(?:m|new)\.)?vk\.com/(?:.+?\?.*?z=)?video|
  80. (?:www\.)?daxab.com/embed/
  81. )
  82. (?P<videoid>-?\d+_\d+)(?:.*\blist=(?P<list_id>[\da-f]+))?
  83. )
  84. '''
  85. _TESTS = [
  86. {
  87. 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
  88. 'md5': '0deae91935c54e00003c2a00646315f0',
  89. 'info_dict': {
  90. 'id': '162222515',
  91. 'ext': 'flv',
  92. 'title': 'ProtivoGunz - Хуёвая песня',
  93. 'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
  94. 'duration': 195,
  95. 'upload_date': '20120212',
  96. 'view_count': int,
  97. },
  98. },
  99. {
  100. 'url': 'http://vk.com/video205387401_165548505',
  101. 'md5': '6c0aeb2e90396ba97035b9cbde548700',
  102. 'info_dict': {
  103. 'id': '165548505',
  104. 'ext': 'mp4',
  105. 'uploader': 'Tom Cruise',
  106. 'title': 'No name',
  107. 'duration': 9,
  108. 'upload_date': '20130721',
  109. 'view_count': int,
  110. }
  111. },
  112. {
  113. 'note': 'Embedded video',
  114. 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
  115. 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
  116. 'info_dict': {
  117. 'id': '162925554',
  118. 'ext': 'mp4',
  119. 'uploader': 'Vladimir Gavrin',
  120. 'title': 'Lin Dan',
  121. 'duration': 101,
  122. 'upload_date': '20120730',
  123. 'view_count': int,
  124. },
  125. 'skip': 'This video has been removed from public access.',
  126. },
  127. {
  128. # VIDEO NOW REMOVED
  129. # please update if you find a video whose URL follows the same pattern
  130. 'url': 'http://vk.com/video-8871596_164049491',
  131. 'md5': 'a590bcaf3d543576c9bd162812387666',
  132. 'note': 'Only available for registered users',
  133. 'info_dict': {
  134. 'id': '164049491',
  135. 'ext': 'mp4',
  136. 'uploader': 'Триллеры',
  137. 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
  138. 'duration': 8352,
  139. 'upload_date': '20121218',
  140. 'view_count': int,
  141. },
  142. 'skip': 'Requires vk account credentials',
  143. },
  144. {
  145. 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
  146. 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
  147. 'info_dict': {
  148. 'id': '168067957',
  149. 'ext': 'mp4',
  150. 'uploader': 'Киномания - лучшее из мира кино',
  151. 'title': ' ',
  152. 'duration': 7291,
  153. 'upload_date': '20140328',
  154. },
  155. 'skip': 'Requires vk account credentials',
  156. },
  157. {
  158. 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
  159. 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
  160. 'note': 'ivi.ru embed',
  161. 'info_dict': {
  162. 'id': '60690',
  163. 'ext': 'mp4',
  164. 'title': 'Книга Илая',
  165. 'duration': 6771,
  166. 'upload_date': '20140626',
  167. 'view_count': int,
  168. },
  169. 'skip': 'Only works from Russia',
  170. },
  171. {
  172. # video (removed?) only available with list id
  173. 'url': 'https://vk.com/video30481095_171201961?list=8764ae2d21f14088d4',
  174. 'md5': '091287af5402239a1051c37ec7b92913',
  175. 'info_dict': {
  176. 'id': '171201961',
  177. 'ext': 'mp4',
  178. 'title': 'ТюменцевВВ_09.07.2015',
  179. 'uploader': 'Anton Ivanov',
  180. 'duration': 109,
  181. 'upload_date': '20150709',
  182. 'view_count': int,
  183. },
  184. },
  185. {
  186. # youtube embed
  187. 'url': 'https://vk.com/video276849682_170681728',
  188. 'info_dict': {
  189. 'id': 'V3K4mi0SYkc',
  190. 'ext': 'webm',
  191. 'title': "DSWD Awards 'Children's Joy Foundation, Inc.' Certificate of Registration and License to Operate",
  192. 'description': 'md5:d9903938abdc74c738af77f527ca0596',
  193. 'duration': 178,
  194. 'upload_date': '20130116',
  195. 'uploader': "Children's Joy Foundation",
  196. 'uploader_id': 'thecjf',
  197. 'view_count': int,
  198. },
  199. },
  200. {
  201. # dailymotion embed
  202. 'url': 'https://vk.com/video-37468416_456239855',
  203. 'info_dict': {
  204. 'id': 'k3lz2cmXyRuJQSjGHUv',
  205. 'ext': 'mp4',
  206. 'title': 'md5:d52606645c20b0ddbb21655adaa4f56f',
  207. 'description': 'md5:c651358f03c56f1150b555c26d90a0fd',
  208. 'uploader': 'AniLibria.Tv',
  209. 'upload_date': '20160914',
  210. 'uploader_id': 'x1p5vl5',
  211. 'timestamp': 1473877246,
  212. },
  213. 'params': {
  214. 'skip_download': True,
  215. },
  216. },
  217. {
  218. # video key is extra_data not url\d+
  219. 'url': 'http://vk.com/video-110305615_171782105',
  220. 'md5': 'e13fcda136f99764872e739d13fac1d1',
  221. 'info_dict': {
  222. 'id': '171782105',
  223. 'ext': 'mp4',
  224. 'title': 'S-Dance, репетиции к The way show',
  225. 'uploader': 'THE WAY SHOW | 17 апреля',
  226. 'upload_date': '20160207',
  227. 'view_count': int,
  228. },
  229. },
  230. {
  231. # finished live stream, live_mp4
  232. 'url': 'https://vk.com/videos-387766?z=video-387766_456242764%2Fpl_-387766_-2',
  233. 'md5': '90d22d051fccbbe9becfccc615be6791',
  234. 'info_dict': {
  235. 'id': '456242764',
  236. 'ext': 'mp4',
  237. 'title': 'ИгроМир 2016 — день 1',
  238. 'uploader': 'Игромания',
  239. 'duration': 5239,
  240. },
  241. },
  242. {
  243. # live stream, hls and rtmp links,most likely already finished live
  244. # stream by the time you are reading this comment
  245. 'url': 'https://vk.com/video-140332_456239111',
  246. 'only_matching': True,
  247. },
  248. {
  249. # removed video, just testing that we match the pattern
  250. 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
  251. 'only_matching': True,
  252. },
  253. {
  254. # age restricted video, requires vk account credentials
  255. 'url': 'https://vk.com/video205387401_164765225',
  256. 'only_matching': True,
  257. },
  258. {
  259. # pladform embed
  260. 'url': 'https://vk.com/video-76116461_171554880',
  261. 'only_matching': True,
  262. },
  263. {
  264. 'url': 'http://new.vk.com/video205387401_165548505',
  265. 'only_matching': True,
  266. }
  267. ]
  268. def _real_extract(self, url):
  269. mobj = re.match(self._VALID_URL, url)
  270. video_id = mobj.group('videoid')
  271. if video_id:
  272. info_url = 'https://vk.com/al_video.php?act=show&al=1&module=video&video=%s' % video_id
  273. # Some videos (removed?) can only be downloaded with list id specified
  274. list_id = mobj.group('list_id')
  275. if list_id:
  276. info_url += '&list=%s' % list_id
  277. else:
  278. info_url = 'http://vk.com/video_ext.php?' + mobj.group('embed_query')
  279. video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
  280. info_page = self._download_webpage(info_url, video_id)
  281. error_message = self._html_search_regex(
  282. [r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
  283. r'(?s)<div[^>]+id="video_ext_msg"[^>]*>(.+?)</div>'],
  284. info_page, 'error message', default=None)
  285. if error_message:
  286. raise ExtractorError(error_message, expected=True)
  287. if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
  288. raise ExtractorError(
  289. 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
  290. expected=True)
  291. ERRORS = {
  292. r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
  293. 'Video %s has been removed from public access due to rightholder complaint.',
  294. r'<!>Please log in or <':
  295. 'Video %s is only available for registered users, '
  296. 'use --username and --password options to provide account credentials.',
  297. r'<!>Unknown error':
  298. 'Video %s does not exist.',
  299. r'<!>Видео временно недоступно':
  300. 'Video %s is temporarily unavailable.',
  301. r'<!>Access denied':
  302. 'Access denied to video %s.',
  303. }
  304. for error_re, error_msg in ERRORS.items():
  305. if re.search(error_re, info_page):
  306. raise ExtractorError(error_msg % video_id, expected=True)
  307. youtube_url = self._search_regex(
  308. r'<iframe[^>]+src="((?:https?:)?//www.youtube.com/embed/[^"]+)"',
  309. info_page, 'youtube iframe', default=None)
  310. if youtube_url:
  311. return self.url_result(youtube_url, 'Youtube')
  312. vimeo_url = VimeoIE._extract_vimeo_url(url, info_page)
  313. if vimeo_url is not None:
  314. return self.url_result(vimeo_url)
  315. pladform_url = PladformIE._extract_url(info_page)
  316. if pladform_url:
  317. return self.url_result(pladform_url)
  318. m_rutube = re.search(
  319. r'\ssrc="((?:https?:)?//rutube\.ru\\?/(?:video|play)\\?/embed(?:.*?))\\?"', info_page)
  320. if m_rutube is not None:
  321. rutube_url = self._proto_relative_url(
  322. m_rutube.group(1).replace('\\', ''))
  323. return self.url_result(rutube_url)
  324. dailymotion_urls = DailymotionIE._extract_urls(info_page)
  325. if dailymotion_urls:
  326. return self.url_result(dailymotion_urls[0], DailymotionIE.ie_key())
  327. m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
  328. if m_opts:
  329. m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
  330. if m_opts_url:
  331. opts_url = m_opts_url.group(1)
  332. if opts_url.startswith('//'):
  333. opts_url = 'http:' + opts_url
  334. return self.url_result(opts_url)
  335. data_json = self._search_regex(r'var\s+vars\s*=\s*({.+?});', info_page, 'vars')
  336. data = json.loads(data_json)
  337. title = unescapeHTML(data['md_title'])
  338. if data.get('live') == 2:
  339. title = self._live_title(title)
  340. # Extract upload date
  341. upload_date = unified_strdate(self._html_search_regex(
  342. r'class="mv_info_date[^>]*>([^<]*)<', info_page, 'upload date', default=None))
  343. view_count = str_to_int(self._html_search_regex(
  344. r'class="mv_views_count[^>]*>([\d,.]+)',
  345. info_page, 'view count', default=None))
  346. formats = []
  347. for format_id, format_url in data.items():
  348. if not isinstance(format_url, compat_str) or not format_url.startswith(('http', '//', 'rtmp')):
  349. continue
  350. if format_id.startswith(('url', 'cache')) or format_id in ('extra_data', 'live_mp4'):
  351. height = int_or_none(self._search_regex(
  352. r'^(?:url|cache)(\d+)', format_id, 'height', default=None))
  353. formats.append({
  354. 'format_id': format_id,
  355. 'url': format_url,
  356. 'height': height,
  357. })
  358. elif format_id == 'hls':
  359. formats.extend(self._extract_m3u8_formats(
  360. format_url, video_id, 'mp4', m3u8_id=format_id,
  361. fatal=False, live=True))
  362. elif format_id == 'rtmp':
  363. formats.append({
  364. 'format_id': format_id,
  365. 'url': format_url,
  366. 'ext': 'flv',
  367. })
  368. self._sort_formats(formats)
  369. return {
  370. 'id': compat_str(data.get('vid') or video_id),
  371. 'formats': formats,
  372. 'title': title,
  373. 'thumbnail': data.get('jpg'),
  374. 'uploader': data.get('md_author'),
  375. 'duration': data.get('duration'),
  376. 'upload_date': upload_date,
  377. 'view_count': view_count,
  378. }
  379. class VKUserVideosIE(VKBaseIE):
  380. IE_NAME = 'vk:uservideos'
  381. IE_DESC = "VK - User's Videos"
  382. _VALID_URL = r'https?://(?:(?:m|new)\.)?vk\.com/videos(?P<id>-?[0-9]+)(?!\?.*\bz=video)(?:[/?#&]|$)'
  383. _TEMPLATE_URL = 'https://vk.com/videos'
  384. _TESTS = [{
  385. 'url': 'http://vk.com/videos205387401',
  386. 'info_dict': {
  387. 'id': '205387401',
  388. 'title': "Tom Cruise's Videos",
  389. },
  390. 'playlist_mincount': 4,
  391. }, {
  392. 'url': 'http://vk.com/videos-77521',
  393. 'only_matching': True,
  394. }, {
  395. 'url': 'http://vk.com/videos-97664626?section=all',
  396. 'only_matching': True,
  397. }, {
  398. 'url': 'http://m.vk.com/videos205387401',
  399. 'only_matching': True,
  400. }, {
  401. 'url': 'http://new.vk.com/videos205387401',
  402. 'only_matching': True,
  403. }]
  404. def _real_extract(self, url):
  405. page_id = self._match_id(url)
  406. webpage = self._download_webpage(url, page_id)
  407. entries = [
  408. self.url_result(
  409. 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
  410. for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
  411. title = unescapeHTML(self._search_regex(
  412. r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
  413. webpage, 'title', default=page_id))
  414. return self.playlist_result(entries, page_id, title)
  415. class VKWallPostIE(VKBaseIE):
  416. IE_NAME = 'vk:wallpost'
  417. _VALID_URL = r'https?://(?:(?:(?:(?:m|new)\.)?vk\.com/(?:[^?]+\?.*\bw=)?wall(?P<id>-?\d+_\d+)))'
  418. _TESTS = [{
  419. # public page URL, audio playlist
  420. 'url': 'https://vk.com/bs.official?w=wall-23538238_35',
  421. 'info_dict': {
  422. 'id': '23538238_35',
  423. 'title': 'Black Shadow - Wall post 23538238_35',
  424. 'description': 'md5:3f84b9c4f9ef499731cf1ced9998cc0c',
  425. },
  426. 'playlist': [{
  427. 'md5': '5ba93864ec5b85f7ce19a9af4af080f6',
  428. 'info_dict': {
  429. 'id': '135220665_111806521',
  430. 'ext': 'mp3',
  431. 'title': 'Black Shadow - Слепое Верование',
  432. 'duration': 370,
  433. 'uploader': 'Black Shadow',
  434. 'artist': 'Black Shadow',
  435. 'track': 'Слепое Верование',
  436. },
  437. }, {
  438. 'md5': '4cc7e804579122b17ea95af7834c9233',
  439. 'info_dict': {
  440. 'id': '135220665_111802303',
  441. 'ext': 'mp3',
  442. 'title': 'Black Shadow - Война - Негасимое Бездны Пламя!',
  443. 'duration': 423,
  444. 'uploader': 'Black Shadow',
  445. 'artist': 'Black Shadow',
  446. 'track': 'Война - Негасимое Бездны Пламя!',
  447. },
  448. 'params': {
  449. 'skip_download': True,
  450. },
  451. }],
  452. 'params': {
  453. 'usenetrc': True,
  454. },
  455. 'skip': 'Requires vk account credentials',
  456. }, {
  457. # single YouTube embed, no leading -
  458. 'url': 'https://vk.com/wall85155021_6319',
  459. 'info_dict': {
  460. 'id': '85155021_6319',
  461. 'title': 'Sergey Gorbunov - Wall post 85155021_6319',
  462. },
  463. 'playlist_count': 1,
  464. 'params': {
  465. 'usenetrc': True,
  466. },
  467. 'skip': 'Requires vk account credentials',
  468. }, {
  469. # wall page URL
  470. 'url': 'https://vk.com/wall-23538238_35',
  471. 'only_matching': True,
  472. }, {
  473. # mobile wall page URL
  474. 'url': 'https://m.vk.com/wall-23538238_35',
  475. 'only_matching': True,
  476. }]
  477. def _real_extract(self, url):
  478. post_id = self._match_id(url)
  479. wall_url = 'https://vk.com/wall%s' % post_id
  480. post_id = remove_start(post_id, '-')
  481. webpage = self._download_webpage(wall_url, post_id)
  482. error = self._html_search_regex(
  483. r'>Error</div>\s*<div[^>]+class=["\']body["\'][^>]*>([^<]+)',
  484. webpage, 'error', default=None)
  485. if error:
  486. raise ExtractorError('VK said: %s' % error, expected=True)
  487. description = clean_html(get_element_by_class('wall_post_text', webpage))
  488. uploader = clean_html(get_element_by_class('author', webpage))
  489. thumbnail = self._og_search_thumbnail(webpage)
  490. entries = []
  491. audio_ids = re.findall(r'data-full-id=["\'](\d+_\d+)', webpage)
  492. if audio_ids:
  493. al_audio = self._download_webpage(
  494. 'https://vk.com/al_audio.php', post_id,
  495. note='Downloading audio info', fatal=False,
  496. data=urlencode_postdata({
  497. 'act': 'reload_audio',
  498. 'al': '1',
  499. 'ids': ','.join(audio_ids)
  500. }))
  501. if al_audio:
  502. Audio = collections.namedtuple(
  503. 'Audio', ['id', 'user_id', 'url', 'track', 'artist', 'duration'])
  504. audios = self._parse_json(
  505. self._search_regex(
  506. r'<!json>(.+?)<!>', al_audio, 'audios', default='[]'),
  507. post_id, fatal=False, transform_source=unescapeHTML)
  508. if isinstance(audios, list):
  509. for audio in audios:
  510. a = Audio._make(audio[:6])
  511. entries.append({
  512. 'id': '%s_%s' % (a.user_id, a.id),
  513. 'url': a.url,
  514. 'title': '%s - %s' % (a.artist, a.track) if a.artist and a.track else a.id,
  515. 'thumbnail': thumbnail,
  516. 'duration': a.duration,
  517. 'uploader': uploader,
  518. 'artist': a.artist,
  519. 'track': a.track,
  520. })
  521. for video in re.finditer(
  522. r'<a[^>]+href=(["\'])(?P<url>/video(?:-?[\d_]+).*?)\1', webpage):
  523. entries.append(self.url_result(
  524. compat_urlparse.urljoin(url, video.group('url')), VKIE.ie_key()))
  525. title = 'Wall post %s' % post_id
  526. return self.playlist_result(
  527. orderedSet(entries), post_id,
  528. '%s - %s' % (uploader, title) if uploader else title,
  529. description)