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.

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