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.

115 lines
3.8 KiB

9 years ago
10 years ago
  1. #! -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import hashlib
  4. from .common import InfoExtractor
  5. from ..compat import (
  6. compat_urllib_parse,
  7. compat_urllib_request,
  8. compat_urlparse,
  9. )
  10. from ..utils import (
  11. encode_dict,
  12. ExtractorError,
  13. )
  14. class FC2IE(InfoExtractor):
  15. _VALID_URL = r'^http://video\.fc2\.com/(?:[^/]+/)*content/(?P<id>[^/]+)'
  16. IE_NAME = 'fc2'
  17. _NETRC_MACHINE = 'fc2'
  18. _TESTS = [{
  19. 'url': 'http://video.fc2.com/en/content/20121103kUan1KHs',
  20. 'md5': 'a6ebe8ebe0396518689d963774a54eb7',
  21. 'info_dict': {
  22. 'id': '20121103kUan1KHs',
  23. 'ext': 'flv',
  24. 'title': 'Boxing again with Puff',
  25. },
  26. }, {
  27. 'url': 'http://video.fc2.com/en/content/20150125cEva0hDn/',
  28. 'info_dict': {
  29. 'id': '20150125cEva0hDn',
  30. 'ext': 'mp4',
  31. },
  32. 'params': {
  33. 'username': 'ytdl@yt-dl.org',
  34. 'password': '(snip)',
  35. 'skip': 'requires actual password'
  36. }
  37. }, {
  38. 'url': 'http://video.fc2.com/en/a/content/20130926eZpARwsF',
  39. 'only_matching': True,
  40. }]
  41. def _login(self):
  42. (username, password) = self._get_login_info()
  43. if username is None or password is None:
  44. return False
  45. # Log in
  46. login_form_strs = {
  47. 'email': username,
  48. 'password': password,
  49. 'done': 'video',
  50. 'Submit': ' Login ',
  51. }
  52. login_data = compat_urllib_parse.urlencode(encode_dict(login_form_strs)).encode('utf-8')
  53. request = compat_urllib_request.Request(
  54. 'https://secure.id.fc2.com/index.php?mode=login&switch_language=en', login_data)
  55. login_results = self._download_webpage(request, None, note='Logging in', errnote='Unable to log in')
  56. if 'mode=redirect&login=done' not in login_results:
  57. self.report_warning('unable to log in: bad username or password')
  58. return False
  59. # this is also needed
  60. login_redir = compat_urllib_request.Request('http://id.fc2.com/?mode=redirect&login=done')
  61. self._download_webpage(
  62. login_redir, None, note='Login redirect', errnote='Login redirect failed')
  63. return True
  64. def _real_extract(self, url):
  65. video_id = self._match_id(url)
  66. self._login()
  67. webpage = self._download_webpage(url, video_id)
  68. self._downloader.cookiejar.clear_session_cookies() # must clear
  69. self._login()
  70. title = self._og_search_title(webpage)
  71. thumbnail = self._og_search_thumbnail(webpage)
  72. refer = url.replace('/content/', '/a/content/') if '/a/content/' not in url else url
  73. mimi = hashlib.md5((video_id + '_gGddgPfeaf_gzyr').encode('utf-8')).hexdigest()
  74. info_url = (
  75. "http://video.fc2.com/ginfo.php?mimi={1:s}&href={2:s}&v={0:s}&fversion=WIN%2011%2C6%2C602%2C180&from=2&otag=0&upid={0:s}&tk=null&".
  76. format(video_id, mimi, compat_urllib_request.quote(refer, safe=b'').replace('.', '%2E')))
  77. info_webpage = self._download_webpage(
  78. info_url, video_id, note='Downloading info page')
  79. info = compat_urlparse.parse_qs(info_webpage)
  80. if 'err_code' in info:
  81. # most of the time we can still download wideo even if err_code is 403 or 602
  82. self.report_warning(
  83. 'Error code was: %s... but still trying' % info['err_code'][0])
  84. if 'filepath' not in info:
  85. raise ExtractorError('Cannot download file. Are you logged in?')
  86. video_url = info['filepath'][0] + '?mid=' + info['mid'][0]
  87. title_info = info.get('title')
  88. if title_info:
  89. title = title_info[0]
  90. return {
  91. 'id': video_id,
  92. 'title': title,
  93. 'url': video_url,
  94. 'ext': 'flv',
  95. 'thumbnail': thumbnail,
  96. }