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.

150 lines
4.8 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 _source_address(self, command_option):
  40. source_address = self.params.get('source_address')
  41. if source_address is None:
  42. return []
  43. return [command_option, source_address]
  44. def _no_check_certificate(self, command_option):
  45. return [command_option] if self.params.get('nocheckcertificate', False) else []
  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._source_address('--interface')
  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._source_address('--bind-address')
  85. cmd += self._no_check_certificate('--no-check-certificate')
  86. cmd += self._configuration_args()
  87. cmd += ['--', info_dict['url']]
  88. return cmd
  89. class Aria2cFD(ExternalFD):
  90. def _make_cmd(self, tmpfilename, info_dict):
  91. cmd = [self.exe, '-c']
  92. cmd += self._configuration_args([
  93. '--min-split-size', '1M', '--max-connection-per-server', '4'])
  94. dn = os.path.dirname(tmpfilename)
  95. if dn:
  96. cmd += ['--dir', dn]
  97. cmd += ['--out', os.path.basename(tmpfilename)]
  98. for key, val in info_dict['http_headers'].items():
  99. cmd += ['--header', '%s: %s' % (key, val)]
  100. cmd += self._source_address('--interface')
  101. cmd += ['--', info_dict['url']]
  102. return cmd
  103. class HttpieFD(ExternalFD):
  104. def _make_cmd(self, tmpfilename, info_dict):
  105. cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
  106. for key, val in info_dict['http_headers'].items():
  107. cmd += ['%s:%s' % (key, val)]
  108. return cmd
  109. _BY_NAME = dict(
  110. (klass.get_basename(), klass)
  111. for name, klass in globals().items()
  112. if name.endswith('FD') and name != 'ExternalFD'
  113. )
  114. def list_external_downloaders():
  115. return sorted(_BY_NAME.keys())
  116. def get_external_downloader(external_downloader):
  117. """ Given the name of the executable, see whether we support the given
  118. downloader . """
  119. # Drop .exe extension on Windows
  120. bn = os.path.splitext(os.path.basename(external_downloader))[0]
  121. return _BY_NAME[bn]