summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/IfolderRu.py
diff options
context:
space:
mode:
authorGravatar jansohn <jansohn@users.noreply.github.com> 2015-10-02 10:09:26 +0200
committerGravatar jansohn <jansohn@users.noreply.github.com> 2015-10-02 10:09:26 +0200
commit3a08656c5665f4b8db98744fb323e64b8630e084 (patch)
tree28f9f62ffc57888b76ca32540dbf5af3a4cfc8d0 /module/plugins/hoster/IfolderRu.py
parentMerge pull request #1 from pyload/stable (diff)
parent[Account] Improve parse_traffic method + code cosmetics (diff)
downloadpyload-3a08656c5665f4b8db98744fb323e64b8630e084.tar.xz
Merge pull request #2 from pyload/stable
sync with stable
Diffstat (limited to 'module/plugins/hoster/IfolderRu.py')
-rw-r--r--module/plugins/hoster/IfolderRu.py23
1 files changed, 9 insertions, 14 deletions
diff --git a/module/plugins/hoster/IfolderRu.py b/module/plugins/hoster/IfolderRu.py
index 85d03489d..08e22a9df 100644
--- a/module/plugins/hoster/IfolderRu.py
+++ b/module/plugins/hoster/IfolderRu.py
@@ -45,21 +45,16 @@ class IfolderRu(SimpleHoster):
self.get_fileInfo()
session_id = re.search(self.SESSION_ID_PATTERN, self.html).groups()
-
captcha_url = "http://ints.rusfolder.com/random/images/?session=%s" % session_id
- for _i in xrange(5):
- action, inputs = self.parse_html_form('id="download-step-one-form"')
- inputs['confirmed_number'] = self.captcha.decrypt(captcha_url, cookies=True)
- inputs['action'] = '1'
- self.log_debug(inputs)
-
- self.html = self.load(url, post=inputs)
- if self.WRONG_CAPTCHA_PATTERN in self.html:
- self.captcha.invalid()
- else:
- break
- else:
- self.fail(_("Invalid captcha"))
+
+ action, inputs = self.parse_html_form('id="download-step-one-form"')
+ inputs['confirmed_number'] = self.captcha.decrypt(captcha_url, cookies=True)
+ inputs['action'] = '1'
+ self.log_debug(inputs)
+
+ self.html = self.load(url, post=inputs)
+ if self.WRONG_CAPTCHA_PATTERN in self.html:
+ self.retry_captcha()
self.link = re.search(self.LINK_FREE_PATTERN, self.html).group(1)