summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/ShareonlineBiz.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-22 20:50:34 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-22 21:20:06 +0200
commitaaaf5a4cddec894aacd7400c59a9f2f5e710362f (patch)
tree9d9e89aff86598b3ffcc86117abd554b193e28b5 /pyload/plugins/hoster/ShareonlineBiz.py
parentimplemented media type filter (diff)
downloadpyload-aaaf5a4cddec894aacd7400c59a9f2f5e710362f.tar.xz
Fixed PEP 8 violations in Hosters
(cherry picked from commit 2edeee0532ec6d6b4b26fd045a5971f67ca455da) Conflicts: pyload/plugins/hoster/BasePlugin.py pyload/plugins/hoster/MultishareCz.py pyload/plugins/hoster/NetloadIn.py pyload/plugins/hoster/PremiumizeMe.py pyload/plugins/hoster/RapidshareCom.py
Diffstat (limited to 'pyload/plugins/hoster/ShareonlineBiz.py')
-rw-r--r--pyload/plugins/hoster/ShareonlineBiz.py122
1 files changed, 64 insertions, 58 deletions
diff --git a/pyload/plugins/hoster/ShareonlineBiz.py b/pyload/plugins/hoster/ShareonlineBiz.py
index 8a4bcfba8..7c0f9c069 100644
--- a/pyload/plugins/hoster/ShareonlineBiz.py
+++ b/pyload/plugins/hoster/ShareonlineBiz.py
@@ -11,33 +11,38 @@ from module.plugins.Hoster import Hoster
from module.network.RequestFactory import getURL
from module.plugins.Plugin import chunks
from module.plugins.internal.CaptchaService import ReCaptcha as _ReCaptcha
-
+
+
def getInfo(urls):
api_url_base = "http://api.share-online.biz/linkcheck.php"
-
+
for chunk in chunks(urls, 90):
- api_param_file = {"links": "\n".join(x.replace("http://www.share-online.biz/dl/","").rstrip("/") for x in chunk)} #api only supports old style links
+ api_param_file = {"links": "\n".join(x.replace("http://www.share-online.biz/dl/", "").rstrip("/") for x in
+ chunk)} # api only supports old style links
src = getURL(api_url_base, post=api_param_file, decode=True)
result = []
for i, res in enumerate(src.split("\n")):
if not res:
continue
fields = res.split(";")
-
+
if fields[1] == "OK":
status = 2
elif fields[1] in ("DELETED", "NOT FOUND"):
status = 1
else:
status = 3
-
+
result.append((fields[2], int(fields[3]), status, chunk[i]))
yield result
+
#suppress ocr plugin
class ReCaptcha(_ReCaptcha):
def result(self, server, challenge):
- return self.plugin.decryptCaptcha("%simage"%server, get={"c":challenge}, cookies=True, forceUser=True, imgtype="jpg")
+ return self.plugin.decryptCaptcha("%simage" % server, get={"c": challenge},
+ cookies=True, forceUser=True, imgtype="jpg")
+
class ShareonlineBiz(Hoster):
__name__ = "ShareonlineBiz"
@@ -47,7 +52,7 @@ class ShareonlineBiz(Hoster):
__description__ = """Shareonline.biz Download Hoster"""
__author_name__ = ("spoob", "mkaay", "zoidberg")
__author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de", "zoidberg@mujmail.cz")
-
+
ERROR_INFO_PATTERN = r'<p class="b">Information:</p>\s*<div>\s*<strong>(.*?)</strong>'
def setup(self):
@@ -60,133 +65,134 @@ class ShareonlineBiz(Hoster):
self.resumeDownload = self.premium
self.multiDL = False
#self.chunkLimit = 1
-
+
self.check_data = None
- def process(self, pyfile):
+ def process(self, pyfile):
if self.premium:
self.handleAPIPremium()
#web-download fallback removed - didn't work anyway
else:
self.handleFree()
-
- """
- check = self.checkDownload({"failure": re.compile(self.ERROR_INFO_PATTERN)})
- if check == "failure":
- try:
- self.retry(reason = self.lastCheck.group(1).decode("utf8"))
- except:
- self.retry(reason = "Unknown error")
- """
-
- if self.api_data:
+
+ # check = self.checkDownload({"failure": re.compile(self.ERROR_INFO_PATTERN)})
+ # if check == "failure":
+ # try:
+ # self.retry(reason = self.lastCheck.group(1).decode("utf8"))
+ # except:
+ # self.retry(reason = "Unknown error")
+
+ if self.api_data:
self.check_data = {"size": int(self.api_data['size']), "md5": self.api_data['md5']}
def downloadAPIData(self):
api_url_base = "http://api.share-online.biz/linkcheck.php?md5=1"
- api_param_file = {"links": self.pyfile.url.replace("http://www.share-online.biz/dl/","")} #api only supports old style links
+ api_param_file = {"links": self.pyfile.url.replace(
+ "http://www.share-online.biz/dl/", "")} # api only supports old style links
src = self.load(api_url_base, cookies=False, post=api_param_file, decode=True)
-
+
fields = src.split(";")
self.api_data = {"fileid": fields[0],
"status": fields[1]}
if not self.api_data["status"] == "OK":
self.offline()
self.api_data["filename"] = fields[2]
- self.api_data["size"] = fields[3] # in bytes
- self.api_data["md5"] = fields[4].strip().lower().replace("\n\n", "") # md5
+ self.api_data["size"] = fields[3] # in bytes
+ self.api_data["md5"] = fields[4].strip().lower().replace("\n\n", "") # md5
- def handleFree(self):
+ def handleFree(self):
self.downloadAPIData()
self.pyfile.name = self.api_data["filename"]
self.pyfile.size = int(self.api_data["size"])
-
- self.html = self.load(self.pyfile.url, cookies = True) #refer, stuff
+
+ self.html = self.load(self.pyfile.url, cookies=True) # refer, stuff
self.setWait(3)
self.wait()
-
- self.html = self.load("%s/free/" % self.pyfile.url, post={"dl_free":"1", "choice": "free"}, decode = True)
+
+ self.html = self.load("%s/free/" % self.pyfile.url, post={"dl_free": "1", "choice": "free"}, decode=True)
self.checkErrors()
-
- found = re.search(r'var wait=(\d+);', self.html)
-
+
+ found = re.search(r'var wait=(\d+);', self.html)
+
recaptcha = ReCaptcha(self)
- for i in range(5):
- challenge, response = recaptcha.challenge("6LdatrsSAAAAAHZrB70txiV5p-8Iv8BtVxlTtjKX")
- self.setWait(int(found.group(1)) if found else 30)
- response = self.load("%s/free/captcha/%d" % (self.pyfile.url, int(time() * 1000)), post = {
+ for i in range(5):
+ challenge, response = recaptcha.challenge("6LdatrsSAAAAAHZrB70txiV5p-8Iv8BtVxlTtjKX")
+ self.setWait(int(found.group(1)) if found else 30)
+ response = self.load("%s/free/captcha/%d" % (self.pyfile.url, int(time() * 1000)), post={
'dl_free': '1',
'recaptcha_challenge_field': challenge,
'recaptcha_response_field': response})
-
+
if not response == '0':
break
- else: self.fail("No valid captcha solution received")
-
+ else:
+ self.fail("No valid captcha solution received")
+
download_url = response.decode("base64")
self.logDebug(download_url)
if not download_url.startswith("http://"):
self.parseError("download url")
-
- self.wait()
+
+ self.wait()
self.download(download_url)
# check download
check = self.checkDownload({
"cookie": re.compile(r'<div id="dl_failure"'),
"fail": re.compile(r"<title>Share-Online")
- })
+ })
if check == "cookie":
self.retry(5, 60, "Cookie failure")
elif check == "fail":
self.retry(5, 300, "Download failed")
-
+
def checkErrors(self):
found = re.search(r"/failure/(.*?)/1", self.req.lastEffectiveURL)
if found:
err = found.group(1)
found = re.search(self.ERROR_INFO_PATTERN, self.html)
msg = found.group(1) if found else ""
- self.logError(err, msg or "Unknown error occurred")
-
+ self.logError(err, msg or "Unknown error occurred")
+
if err in ('freelimit', 'size', 'proxy'):
self.fail(msg or "Premium account needed")
- if err in ('invalid'):
+ if err in 'invalid':
self.fail(msg or "File not available")
- elif err in ('server'):
+ elif err in 'server':
self.setWait(600, False)
- elif err in ('expired'):
+ elif err in 'expired':
self.setWait(30, False)
- else:
+ else:
self.setWait(300, True)
-
+
self.wait()
- self.retry(max_tries=25, reason = msg)
-
- def handleAPIPremium(self): #should be working better
+ self.retry(max_tries=25, reason=msg)
+
+ def handleAPIPremium(self): # should be working better
self.account.getAccountInfo(self.user, True)
src = self.load("http://api.share-online.biz/account.php",
- {"username": self.user, "password": self.account.accounts[self.user]["password"], "act": "download", "lid": self.file_id})
+ {"username": self.user, "password": self.account.accounts[self.user]["password"],
+ "act": "download", "lid": self.file_id})
self.api_data = dlinfo = {}
for line in src.splitlines():
key, value = line.split(": ")
dlinfo[key.lower()] = value
-
+
self.logDebug(dlinfo)
if not dlinfo["status"] == "online":
self.offline()
-
+
self.pyfile.name = dlinfo["name"]
self.pyfile.size = int(dlinfo["size"])
-
+
dlLink = dlinfo["url"]
if dlLink == "server_under_maintenance":
self.tempoffline()
else:
self.multiDL = True
self.download(dlLink)
-
+
def checksum(self, local_file):
if self.api_data and "md5" in self.api_data and self.api_data["md5"]:
h = hashlib.md5()