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.

238 lines
8.5 KiB

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|Alexander Ilyashenko).*',
  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&module=video&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. r'<!>Видео временно недоступно':
  141. 'Video %s is temporarily unavailable.',
  142. }
  143. for error_re, error_msg in ERRORS.items():
  144. if re.search(error_re, info_page):
  145. raise ExtractorError(error_msg % video_id, expected=True)
  146. m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page)
  147. if m_yt is not None:
  148. self.to_screen('Youtube video detected')
  149. return self.url_result(m_yt.group(1), 'Youtube')
  150. m_rutube = re.search(
  151. r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page)
  152. if m_rutube is not None:
  153. self.to_screen('rutube video detected')
  154. rutube_url = self._proto_relative_url(
  155. m_rutube.group(1).replace('\\', ''))
  156. return self.url_result(rutube_url)
  157. m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.*?});', info_page)
  158. if m_opts:
  159. m_opts_url = re.search(r"url\s*:\s*'([^']+)", m_opts.group(1))
  160. if m_opts_url:
  161. opts_url = m_opts_url.group(1)
  162. if opts_url.startswith('//'):
  163. opts_url = 'http:' + opts_url
  164. return self.url_result(opts_url)
  165. data_json = self._search_regex(r'var vars = ({.*?});', info_page, 'vars')
  166. data = json.loads(data_json)
  167. # Extract upload date
  168. upload_date = None
  169. mobj = re.search(r'id="mv_date_wrap".*?Added ([a-zA-Z]+ [0-9]+), ([0-9]+) at', info_page)
  170. if mobj is not None:
  171. mobj.group(1) + ' ' + mobj.group(2)
  172. upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2))
  173. formats = [{
  174. 'format_id': k,
  175. 'url': v,
  176. 'width': int(k[len('url'):]),
  177. } for k, v in data.items()
  178. if k.startswith('url')]
  179. self._sort_formats(formats)
  180. return {
  181. 'id': compat_str(data['vid']),
  182. 'formats': formats,
  183. 'title': unescapeHTML(data['md_title']),
  184. 'thumbnail': data.get('jpg'),
  185. 'uploader': data.get('md_author'),
  186. 'duration': data.get('duration'),
  187. 'upload_date': upload_date,
  188. }
  189. class VKUserVideosIE(InfoExtractor):
  190. IE_NAME = 'vk.com:user-videos'
  191. IE_DESC = 'vk.com:All of a user\'s videos'
  192. _VALID_URL = r'https?://vk\.com/videos(?P<id>[0-9]+)(?:m\?.*)?'
  193. _TEMPLATE_URL = 'https://vk.com/videos'
  194. _TEST = {
  195. 'url': 'http://vk.com/videos205387401',
  196. 'info_dict': {
  197. 'id': '205387401',
  198. },
  199. 'playlist_mincount': 4,
  200. }
  201. def _real_extract(self, url):
  202. page_id = self._match_id(url)
  203. page = self._download_webpage(url, page_id)
  204. video_ids = orderedSet(
  205. m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))
  206. url_entries = [
  207. self.url_result(
  208. 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
  209. for video_id in video_ids]
  210. return self.playlist_result(url_entries, page_id)