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.

151 lines
4.9 KiB

  1. from __future__ import unicode_literals
  2. import os.path
  3. import subprocess
  4. from .common import FileDownloader
  5. from ..utils import (
  6. encodeFilename,
  7. encodeArgument,
  8. )
  9. class ExternalFD(FileDownloader):
  10. def real_download(self, filename, info_dict):
  11. self.report_destination(filename)
  12. tmpfilename = self.temp_name(filename)
  13. retval = self._call_downloader(tmpfilename, info_dict)
  14. if retval == 0:
  15. fsize = os.path.getsize(encodeFilename(tmpfilename))
  16. self.to_screen('\r[%s] Downloaded %s bytes' % (self.get_basename(), fsize))
  17. self.try_rename(tmpfilename, filename)
  18. self._hook_progress({
  19. 'downloaded_bytes': fsize,
  20. 'total_bytes': fsize,
  21. 'filename': filename,
  22. 'status': 'finished',
  23. })
  24. return True
  25. else:
  26. self.to_stderr('\n')
  27. self.report_error('%s exited with code %d' % (
  28. self.get_basename(), retval))
  29. return False
  30. @classmethod
  31. def get_basename(cls):
  32. return cls.__name__[:-2].lower()
  33. @property
  34. def exe(self):
  35. return self.params.get('external_downloader')
  36. @classmethod
  37. def supports(cls, info_dict):
  38. return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps')
  39. def _option(self, command_option, param):
  40. param = self.params.get(param)
  41. if param is None:
  42. return []
  43. if isinstance(param, bool):
  44. return [command_option]
  45. return [command_option, param]
  46. def _configuration_args(self, default=[]):
  47. ex_args = self.params.get('external_downloader_args')
  48. if ex_args is None:
  49. return default
  50. assert isinstance(ex_args, list)
  51. return ex_args
  52. def _call_downloader(self, tmpfilename, info_dict):
  53. """ Either overwrite this or implement _make_cmd """
  54. cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
  55. self._debug_cmd(cmd)
  56. p = subprocess.Popen(
  57. cmd, stderr=subprocess.PIPE)
  58. _, stderr = p.communicate()
  59. if p.returncode != 0:
  60. self.to_stderr(stderr)
  61. return p.returncode
  62. class CurlFD(ExternalFD):
  63. def _make_cmd(self, tmpfilename, info_dict):
  64. cmd = [self.exe, '--location', '-o', tmpfilename]
  65. for key, val in info_dict['http_headers'].items():
  66. cmd += ['--header', '%s: %s' % (key, val)]
  67. cmd += self._option('--interface', 'source_address')
  68. cmd += self._configuration_args()
  69. cmd += ['--', info_dict['url']]
  70. return cmd
  71. class AxelFD(ExternalFD):
  72. def _make_cmd(self, tmpfilename, info_dict):
  73. cmd = [self.exe, '-o', tmpfilename]
  74. for key, val in info_dict['http_headers'].items():
  75. cmd += ['-H', '%s: %s' % (key, val)]
  76. cmd += self._configuration_args()
  77. cmd += ['--', info_dict['url']]
  78. return cmd
  79. class WgetFD(ExternalFD):
  80. def _make_cmd(self, tmpfilename, info_dict):
  81. cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
  82. for key, val in info_dict['http_headers'].items():
  83. cmd += ['--header', '%s: %s' % (key, val)]
  84. cmd += self._option('--bind-address', 'source_address')
  85. cmd += self._option('--proxy', 'proxy')
  86. cmd += self._option('--no-check-certificate', 'nocheckcertificate')
  87. cmd += self._configuration_args()
  88. cmd += ['--', info_dict['url']]
  89. return cmd
  90. class Aria2cFD(ExternalFD):
  91. def _make_cmd(self, tmpfilename, info_dict):
  92. cmd = [self.exe, '-c']
  93. cmd += self._configuration_args([
  94. '--min-split-size', '1M', '--max-connection-per-server', '4'])
  95. dn = os.path.dirname(tmpfilename)
  96. if dn:
  97. cmd += ['--dir', dn]
  98. cmd += ['--out', os.path.basename(tmpfilename)]
  99. for key, val in info_dict['http_headers'].items():
  100. cmd += ['--header', '%s: %s' % (key, val)]
  101. cmd += self._option('--interface', 'source_address')
  102. cmd += self._option('--all-proxy', 'proxy')
  103. cmd += ['--', info_dict['url']]
  104. return cmd
  105. class HttpieFD(ExternalFD):
  106. def _make_cmd(self, tmpfilename, info_dict):
  107. cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
  108. for key, val in info_dict['http_headers'].items():
  109. cmd += ['%s:%s' % (key, val)]
  110. return cmd
  111. _BY_NAME = dict(
  112. (klass.get_basename(), klass)
  113. for name, klass in globals().items()
  114. if name.endswith('FD') and name != 'ExternalFD'
  115. )
  116. def list_external_downloaders():
  117. return sorted(_BY_NAME.keys())
  118. def get_external_downloader(external_downloader):
  119. """ Given the name of the executable, see whether we support the given
  120. downloader . """
  121. # Drop .exe extension on Windows
  122. bn = os.path.splitext(os.path.basename(external_downloader))[0]
  123. return _BY_NAME[bn]