diff options
author | 2015-03-31 23:58:33 +0200 | |
---|---|---|
committer | 2015-03-31 23:58:33 +0200 | |
commit | fcaf6c9e4c5c618b8c2741ca7ee5676787b4c3f0 (patch) | |
tree | 4f325a9b18d2a5a7d8670c068c7bae1977be6d5d /module/plugins/hoster/Ftp.py | |
parent | [TusfilesNet] Fix downloadLink (diff) | |
download | pyload-fcaf6c9e4c5c618b8c2741ca7ee5676787b4c3f0.tar.xz |
Temp fixup to `filename*=UTF-8` bug
Diffstat (limited to 'module/plugins/hoster/Ftp.py')
-rw-r--r-- | module/plugins/hoster/Ftp.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/module/plugins/hoster/Ftp.py b/module/plugins/hoster/Ftp.py index 22fc5f67a..370dc7b0f 100644 --- a/module/plugins/hoster/Ftp.py +++ b/module/plugins/hoster/Ftp.py @@ -12,7 +12,7 @@ from module.plugins.Hoster import Hoster class Ftp(Hoster): __name__ = "Ftp" __type__ = "hoster" - __version__ = "0.46" + __version__ = "0.47" __pattern__ = r'(?:ftps?|sftp)://([\w.-]+(:[\w.-]+)?@)?[\w.-]+(:\d+)?/.+' @@ -28,6 +28,16 @@ class Ftp(Hoster): self.resumeDownload = True + #: Work-around to `filename*=UTF-8` bug; remove in 0.4.10 + def download(self, url, get={}, post={}, ref=True, cookies=True, disposition=False): + try: + if disposition: + content = urllib2.urlopen(self.link).info()['Content-Disposition'].split(';') + self.pyfile.name = content[1].split('filename=')[1][1:-1] + finally: + return super(SimpleHoster, self).download(url, get, post, ref, cookies, False) + + def process(self, pyfile): parsed_url = urlparse(pyfile.url) netloc = parsed_url.netloc |