summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-05-31 20:36:19 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-05-31 20:36:19 +0200
commitdcb1894e0c708df0677187355c6743c08ac44c26 (patch)
tree9edd4c4eccde099a95edc8d7436dce8b92e3aba0 /module/plugins
parentShareLinksBiz decrypter (diff)
downloadpyload-dcb1894e0c708df0677187355c6743c08ac44c26.tar.xz
fixed positional captchas + availbillity over thrift
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/crypter/ShareLinksBiz.py5
-rw-r--r--module/plugins/hooks/CaptchaTrader.py3
-rw-r--r--module/plugins/hooks/IRCInterface.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/module/plugins/crypter/ShareLinksBiz.py b/module/plugins/crypter/ShareLinksBiz.py
index 407d2ff56..fef10b7f1 100644
--- a/module/plugins/crypter/ShareLinksBiz.py
+++ b/module/plugins/crypter/ShareLinksBiz.py
@@ -106,10 +106,11 @@ class ShareLinksBiz(Crypter):
# Resolve captcha
href = self._resolveCoords(coords, captchaMap)
- if href == None:
+ if href is None:
self.log.debug("%s: Invalid captcha resolving, retrying" % self.__name__)
self.invalidCaptcha()
- self.wait(5)
+ self.setWait(5, False)
+ self.wait()
self.retry()
url = self.baseUrl + href
self.html = self.load(url)
diff --git a/module/plugins/hooks/CaptchaTrader.py b/module/plugins/hooks/CaptchaTrader.py
index 985288090..88b928a50 100644
--- a/module/plugins/hooks/CaptchaTrader.py
+++ b/module/plugins/hooks/CaptchaTrader.py
@@ -101,6 +101,9 @@ class CaptchaTrader(Hook):
raise CaptchaTraderException(response[1])
def newCaptchaTask(self, task):
+ if not task.isTextual():
+ return False
+
if not self.getConfig("username") or not self.getConfig("passkey"):
return False
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index 0142c3610..6fdb7622f 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -81,7 +81,7 @@ class IRCInterface(Thread, Hook):
pass
def newCaptchaTask(self, task):
- if self.getConfig("captcha"):
+ if self.getConfig("captcha") and task.isTextual():
task.handler.append(self)
task.setWaiting(60)