diff options
author | Jeix <devnull@localhost> | 2010-10-03 14:19:51 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-10-03 14:19:51 +0200 |
commit | 78413c410e875db8d652f976183717cf3add33f4 (patch) | |
tree | 73082a856d747e1cf9e2fb0b9d88e38c9a076f1a /module/plugins/hoster | |
parent | fix 3. (diff) | |
download | pyload-78413c410e875db8d652f976183717cf3add33f4.tar.xz |
share-online premium fix (revert to old design, coz new one is still buggy)
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 926e63a38..a441c1e30 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -75,7 +75,6 @@ class ShareonlineBiz(Hoster): def downloadHTML(self): self.html = self.load(self.pyfile.url, cookies=True) - if not self.account: html = self.load("%s/free/" % self.pyfile.url, post={"dl_free":"1"}, cookies=True) if re.search(r"/failure/full/1", self.req.lastEffectiveURL): @@ -99,14 +98,18 @@ class ShareonlineBiz(Hoster): return True def convertURL(self): - self.pyfile.url = self.pyfile.url.replace("http://www.share-online.biz/download.php?id=", "http://www.share-online.biz/dl/") - self.pyfile.url = self.pyfile.url.replace("http://share-online.biz/download.php?id=", "http://www.share-online.biz/dl/") + if self.account: + self.pyfile.url = self.pyfile.url.replace("http://www.share-online.biz/dl/", "http://www.share-online.biz/download.php?id=") + self.pyfile.url = self.pyfile.url.replace("http://www.share-online.biz/dl/", "http://share-online.biz/download.php?id=") + else: + self.pyfile.url = self.pyfile.url.replace("http://www.share-online.biz/download.php?id=", "http://www.share-online.biz/dl/") + self.pyfile.url = self.pyfile.url.replace("http://share-online.biz/download.php?id=", "http://www.share-online.biz/dl/") def getFileUrl(self): """ returns the absolute downloadable filepath """ if self.account: - return b64decode(re.search('var dl="(.*?)"', self.html).group(1)) + return (re.search('<b>The following link contains a ticket to a valid mirror for your desired file\.</b>.*?<a href="(.*?)" onmouseout', self.html, re.S).group(1)) file_url_pattern = 'loadfilelink\.decode\("([^"]+)' return b64decode(re.search(file_url_pattern, self.html).group(1)) |