vk.py 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. import json
  5. from .common import InfoExtractor
  6. from ..utils import (
  7. ExtractorError,
  8. compat_urllib_request,
  9. compat_urllib_parse,
  10. compat_str,
  11. unescapeHTML,
  12. unified_strdate,
  13. orderedSet)
  14. class VKIE(InfoExtractor):
  15. IE_NAME = 'vk.com'
  16. _VALID_URL = r'https?://(?:m\.)?vk\.com/(?:video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|(?:.+?\?.*?z=)?video(?P<videoid>[^s].*?)(?:\?|%2F|$))'
  17. _NETRC_MACHINE = 'vk'
  18. _TESTS = [
  19. {
  20. 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
  21. 'md5': '0deae91935c54e00003c2a00646315f0',
  22. 'info_dict': {
  23. 'id': '162222515',
  24. 'ext': 'flv',
  25. 'title': 'ProtivoGunz - Хуёвая песня',
  26. 'uploader': 're:Noize MC.*',
  27. 'duration': 195,
  28. 'upload_date': '20120212',
  29. },
  30. },
  31. {
  32. 'url': 'http://vk.com/video205387401_165548505',
  33. 'md5': '6c0aeb2e90396ba97035b9cbde548700',
  34. 'info_dict': {
  35. 'id': '165548505',
  36. 'ext': 'mp4',
  37. 'uploader': 'Tom Cruise',
  38. 'title': 'No name',
  39. 'duration': 9,
  40. 'upload_date': '20130721'
  41. }
  42. },
  43. {
  44. 'note': 'Embedded video',
  45. 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
  46. 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
  47. 'info_dict': {
  48. 'id': '162925554',
  49. 'ext': 'mp4',
  50. 'uploader': 'Vladimir Gavrin',
  51. 'title': 'Lin Dan',
  52. 'duration': 101,
  53. 'upload_date': '20120730',
  54. }
  55. },
  56. {
  57. # VIDEO NOW REMOVED
  58. # please update if you find a video whose URL follows the same pattern
  59. 'url': 'http://vk.com/video-8871596_164049491',
  60. 'md5': 'a590bcaf3d543576c9bd162812387666',
  61. 'note': 'Only available for registered users',
  62. 'info_dict': {
  63. 'id': '164049491',
  64. 'ext': 'mp4',
  65. 'uploader': 'Триллеры',
  66. 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
  67. 'duration': 8352,
  68. 'upload_date': '20121218'
  69. },
  70. 'skip': 'Requires vk account credentials',
  71. },
  72. {
  73. # VIDEO NOW REMOVED
  74. # please update if you find a video whose URL follows the same pattern
  75. 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
  76. 'md5': 'd82c22e449f036282d1d3f7f4d276869',
  77. 'info_dict': {
  78. 'id': '166094326',
  79. 'ext': 'mp4',
  80. 'uploader': 'Киномания - лучшее из мира кино',
  81. 'title': 'Запах женщины (1992)',
  82. 'duration': 9392,
  83. 'upload_date': '20130914'
  84. },
  85. 'skip': 'Requires vk account credentials',
  86. },
  87. {
  88. 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
  89. 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
  90. 'info_dict': {
  91. 'id': '168067957',
  92. 'ext': 'mp4',
  93. 'uploader': 'Киномания - лучшее из мира кино',
  94. 'title': ' ',
  95. 'duration': 7291,
  96. 'upload_date': '20140328',
  97. },
  98. 'skip': 'Requires vk account credentials',
  99. },
  100. {
  101. 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
  102. 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
  103. 'note': 'ivi.ru embed',
  104. 'info_dict': {
  105. 'id': '60690',
  106. 'ext': 'mp4',
  107. 'title': 'Книга Илая',
  108. 'duration': 6771,
  109. 'upload_date': '20140626',
  110. },
  111. 'skip': 'Only works from Russia',
  112. },
  113. ]
  114. def _login(self):
  115. (username, password) = self._get_login_info()
  116. if username is None:
  117. return
  118. login_form = {
  119. 'act': 'login',
  120. 'role': 'al_frame',
  121. 'expire': '1',
  122. 'email': username,
  123. 'pass': password,
  124. }
  125. request = compat_urllib_request.Request('https://login.vk.com/?act=login',
  126. compat_urllib_parse.urlencode(login_form).encode('utf-8'))
  127. login_page = self._download_webpage(request, None, note='Logging in as %s' % username)
  128. if re.search(r'onLoginFailed', login_page):
  129. raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)
  130. def _real_initialize(self):
  131. self._login()
  132. def _real_extract(self, url):
  133. mobj = re.match(self._VALID_URL, url)
  134. video_id = mobj.group('videoid')
  135. if not video_id:
  136. video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
  137. info_url = 'http://vk.com/al_video.php?act=show&al=1&video=%s' % video_id
  138. info_page = self._download_webpage(info_url, video_id)
  139. ERRORS = {
  140. r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
  141. 'Video %s has been removed from public access due to rightholder complaint.',
  142. r'<!>Please log in or <':
  143. 'Video %s is only available for registered users, '
  144. 'use --username and --password options to provide account credentials.',
  145. '<!>Unknown error':
  146. 'Video %s does not exist.'
  147. }
  148. for error_re, error_msg in ERRORS.items():
  149. if re.search(error_re, info_page):
  150. raise ExtractorError(error_msg % video_id, expected=True)
  151. m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page)
  152. if m_yt is not None:
  153. self.to_screen('Youtube video detected')
  154. return self.url_result(m_yt.group(1), 'Youtube')
  155. m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.*?});', info_page)
  156. if m_opts:
  157. m_opts_url = re.search(r"url\s*:\s*'([^']+)", m_opts.group(1))
  158. if m_opts_url:
  159. opts_url = m_opts_url.group(1)
  160. if opts_url.startswith('//'):
  161. opts_url = 'http:' + opts_url
  162. return self.url_result(opts_url)
  163. data_json = self._search_regex(r'var vars = ({.*?});', info_page, 'vars')
  164. data = json.loads(data_json)
  165. # Extract upload date
  166. upload_date = None
  167. mobj = re.search(r'id="mv_date_wrap".*?Added ([a-zA-Z]+ [0-9]+), ([0-9]+) at', info_page)
  168. if mobj is not None:
  169. x = mobj.group(1) + ' ' + mobj.group(2)
  170. upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2))
  171. formats = [{
  172. 'format_id': k,
  173. 'url': v,
  174. 'width': int(k[len('url'):]),
  175. } for k, v in data.items()
  176. if k.startswith('url')]
  177. self._sort_formats(formats)
  178. return {
  179. 'id': compat_str(data['vid']),
  180. 'formats': formats,
  181. 'title': unescapeHTML(data['md_title']),
  182. 'thumbnail': data.get('jpg'),
  183. 'uploader': data.get('md_author'),
  184. 'duration': data.get('duration'),
  185. 'upload_date': upload_date,
  186. }
  187. class VKUserVideosIE(InfoExtractor):
  188. IE_NAME = 'vk.com:user-videos'
  189. IE_DESC = 'vk.com:All of a user\'s videos'
  190. _VALID_URL = r'https?://vk\.com/videos(?P<id>[0-9]+)(?:m\?.*)?'
  191. _TEMPLATE_URL = 'https://vk.com/videos'
  192. _TEST = {
  193. 'url': 'http://vk.com/videos205387401',
  194. 'playlist_mincount': 4,
  195. }
  196. def _real_extract(self, url):
  197. page_id = self._match_id(url)
  198. page = self._download_webpage(url, page_id)
  199. video_ids = orderedSet(m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))
  200. url_entries = [self.url_result('http://vk.com/video' + video_id, 'VK', video_id=video_id)
  201. for video_id in video_ids]
  202. return self.playlist_result(url_entries, page_id)