summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/DepositfilesCom.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-08-12 00:38:07 +0200
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-08-12 00:38:07 +0200
commit3e16daf0a12fc43c2087300a02560879688c7f18 (patch)
tree7f940496596d888056efeb1794d9f9b29296b36a /module/plugins/hoster/DepositfilesCom.py
parentcoolshare.cz + warserver.cz premium support (diff)
downloadpyload-3e16daf0a12fc43c2087300a02560879688c7f18.tar.xz
update depositfiles, easybytes, add ryushare
Diffstat (limited to 'module/plugins/hoster/DepositfilesCom.py')
-rw-r--r--module/plugins/hoster/DepositfilesCom.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/module/plugins/hoster/DepositfilesCom.py b/module/plugins/hoster/DepositfilesCom.py
index 9ff6b0b55..9c13a5f3a 100644
--- a/module/plugins/hoster/DepositfilesCom.py
+++ b/module/plugins/hoster/DepositfilesCom.py
@@ -11,15 +11,17 @@ class DepositfilesCom(SimpleHoster):
__name__ = "DepositfilesCom"
__type__ = "hoster"
__pattern__ = r"http://[\w\.]*?depositfiles\.com(/\w{1,3})?/files/[\w]+"
- __version__ = "0.41"
+ __version__ = "0.42"
__description__ = """Depositfiles.com Download Hoster"""
__author_name__ = ("spoob", "zoidberg")
__author_mail__ = ("spoob@pyload.org", "zoidberg@mujmail.cz")
FILE_NAME_PATTERN = r'File name: <b title="(?P<N>[^"]+)'
FILE_SIZE_PATTERN = r'File size: <b>(?P<S>[0-9.]+)&nbsp;(?P<U>[kKMG])i?B</b>'
+ FILE_INFO_PATTERN = r'<script type="text/javascript">eval\( unescape\(\'(?P<N>.*?)\''
FILE_OFFLINE_PATTERN = r'<span class="html_download_api-not_exists"></span>'
FILE_URL_REPLACEMENTS = [(r"\.com(/.*?)?/files", ".com/en/files"), (r"\.html$", "")]
+ FILE_NAME_REPLACEMENTS = [(r'\%u([0-9A-Fa-f]{4})', lambda m: unichr(int(m.group(1), 16))), (r'.*<b title="(?P<N>[^"]+).*', "\g<N>" )]
RECAPTCHA_PATTERN = r"Recaptcha.create\('([^']+)'"
DOWNLOAD_LINK_PATTERN = r'<form action="(http://.+?\.depositfiles.com/.+?)" method="get"'
@@ -92,7 +94,7 @@ class DepositfilesCom(SimpleHoster):
self.fail('No valid captcha response received')
try:
- self.download(link)
+ self.download(link, disposition = True)
except:
self.retry(wait_time = 60)
@@ -105,6 +107,6 @@ class DepositfilesCom(SimpleHoster):
self.retry()
link = unquote(re.search('<div id="download_url">\s*<a href="(http://.+?\.depositfiles.com/.+?)"', self.html).group(1))
self.multiDL = True
- self.download(link)
+ self.download(link, disposition = True)
getInfo = create_getInfo(DepositfilesCom) \ No newline at end of file