You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

235 lines
8.3 KiB

10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. import json
  5. from .common import InfoExtractor
  6. from ..compat import (
  7. compat_str,
  8. compat_urllib_parse,
  9. compat_urllib_request,
  10. )
  11. from ..utils import (
  12. ExtractorError,
  13. orderedSet,
  14. unescapeHTML,
  15. unified_strdate,
  16. )
  17. class VKIE(InfoExtractor):
  18. IE_NAME = 'vk.com'
  19. _VALID_URL = r'https?://(?:m\.)?vk\.com/(?:video_ext\.php\?.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+)|(?:.+?\?.*?z=)?video(?P<videoid>[^s].*?)(?:\?|%2F|$))'
  20. _NETRC_MACHINE = 'vk'
  21. _TESTS = [
  22. {
  23. 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
  24. 'md5': '0deae91935c54e00003c2a00646315f0',
  25. 'info_dict': {
  26. 'id': '162222515',
  27. 'ext': 'flv',
  28. 'title': 'ProtivoGunz - Хуёвая песня',
  29. 'uploader': 're:Noize MC.*',
  30. 'duration': 195,
  31. 'upload_date': '20120212',
  32. },
  33. },
  34. {
  35. 'url': 'http://vk.com/video205387401_165548505',
  36. 'md5': '6c0aeb2e90396ba97035b9cbde548700',
  37. 'info_dict': {
  38. 'id': '165548505',
  39. 'ext': 'mp4',
  40. 'uploader': 'Tom Cruise',
  41. 'title': 'No name',
  42. 'duration': 9,
  43. 'upload_date': '20130721'
  44. }
  45. },
  46. {
  47. 'note': 'Embedded video',
  48. 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
  49. 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
  50. 'info_dict': {
  51. 'id': '162925554',
  52. 'ext': 'mp4',
  53. 'uploader': 'Vladimir Gavrin',
  54. 'title': 'Lin Dan',
  55. 'duration': 101,
  56. 'upload_date': '20120730',
  57. }
  58. },
  59. {
  60. # VIDEO NOW REMOVED
  61. # please update if you find a video whose URL follows the same pattern
  62. 'url': 'http://vk.com/video-8871596_164049491',
  63. 'md5': 'a590bcaf3d543576c9bd162812387666',
  64. 'note': 'Only available for registered users',
  65. 'info_dict': {
  66. 'id': '164049491',
  67. 'ext': 'mp4',
  68. 'uploader': 'Триллеры',
  69. 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
  70. 'duration': 8352,
  71. 'upload_date': '20121218'
  72. },
  73. 'skip': 'Requires vk account credentials',
  74. },
  75. {
  76. 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
  77. 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
  78. 'info_dict': {
  79. 'id': '168067957',
  80. 'ext': 'mp4',
  81. 'uploader': 'Киномания - лучшее из мира кино',
  82. 'title': ' ',
  83. 'duration': 7291,
  84. 'upload_date': '20140328',
  85. },
  86. 'skip': 'Requires vk account credentials',
  87. },
  88. {
  89. 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
  90. 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
  91. 'note': 'ivi.ru embed',
  92. 'info_dict': {
  93. 'id': '60690',
  94. 'ext': 'mp4',
  95. 'title': 'Книга Илая',
  96. 'duration': 6771,
  97. 'upload_date': '20140626',
  98. },
  99. 'skip': 'Only works from Russia',
  100. },
  101. {
  102. # removed video, just testing that we match the pattern
  103. 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
  104. 'only_matching': True,
  105. },
  106. ]
  107. def _login(self):
  108. (username, password) = self._get_login_info()
  109. if username is None:
  110. return
  111. login_form = {
  112. 'act': 'login',
  113. 'role': 'al_frame',
  114. 'expire': '1',
  115. 'email': username,
  116. 'pass': password,
  117. }
  118. request = compat_urllib_request.Request('https://login.vk.com/?act=login',
  119. compat_urllib_parse.urlencode(login_form).encode('utf-8'))
  120. login_page = self._download_webpage(request, None, note='Logging in as %s' % username)
  121. if re.search(r'onLoginFailed', login_page):
  122. raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)
  123. def _real_initialize(self):
  124. self._login()
  125. def _real_extract(self, url):
  126. mobj = re.match(self._VALID_URL, url)
  127. video_id = mobj.group('videoid')
  128. if not video_id:
  129. video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
  130. info_url = 'http://vk.com/al_video.php?act=show&al=1&video=%s' % video_id
  131. info_page = self._download_webpage(info_url, video_id)
  132. ERRORS = {
  133. r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
  134. 'Video %s has been removed from public access due to rightholder complaint.',
  135. r'<!>Please log in or <':
  136. 'Video %s is only available for registered users, '
  137. 'use --username and --password options to provide account credentials.',
  138. r'<!>Unknown error':
  139. 'Video %s does not exist.'
  140. }
  141. for error_re, error_msg in ERRORS.items():
  142. if re.search(error_re, info_page):
  143. raise ExtractorError(error_msg % video_id, expected=True)
  144. m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page)
  145. if m_yt is not None:
  146. self.to_screen('Youtube video detected')
  147. return self.url_result(m_yt.group(1), 'Youtube')
  148. m_rutube = re.search(
  149. r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page)
  150. if m_rutube is not None:
  151. self.to_screen('rutube video detected')
  152. rutube_url = self._proto_relative_url(
  153. m_rutube.group(1).replace('\\', ''))
  154. return self.url_result(rutube_url)
  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. 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. 'info_dict': {
  195. 'id': '205387401',
  196. },
  197. 'playlist_mincount': 4,
  198. }
  199. def _real_extract(self, url):
  200. page_id = self._match_id(url)
  201. page = self._download_webpage(url, page_id)
  202. video_ids = orderedSet(
  203. m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))
  204. url_entries = [
  205. self.url_result(
  206. 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
  207. for video_id in video_ids]
  208. return self.playlist_result(url_entries, page_id)