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.

313 lines
11 KiB

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