diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2011-09-30 16:03:54 +0200 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2011-09-30 16:03:54 +0200 |
commit | 931ab695ec84be3bbf1137593c4333c184cabb5d (patch) | |
tree | 934c0552a62b58281a8b30219150b659873bd7d5 /module/plugins/hoster/ShareRapidCom.py | |
parent | show warning only one time (diff) | |
download | pyload-931ab695ec84be3bbf1137593c4333c184cabb5d.tar.xz |
hoster plugins: add ifile.it, update share-rapid.com, ifolder.ru
Diffstat (limited to 'module/plugins/hoster/ShareRapidCom.py')
-rw-r--r-- | module/plugins/hoster/ShareRapidCom.py | 73 |
1 files changed, 56 insertions, 17 deletions
diff --git a/module/plugins/hoster/ShareRapidCom.py b/module/plugins/hoster/ShareRapidCom.py index e7979d0a8..96962cffe 100644 --- a/module/plugins/hoster/ShareRapidCom.py +++ b/module/plugins/hoster/ShareRapidCom.py @@ -3,34 +3,73 @@ import re from module.plugins.Hoster import Hoster +from module.network.RequestFactory import getURL + +def getInfo(urls): + result = [] + + for url in urls: + html = getURL(url, decode=True) + if re.search(ShareRapidCom.FILE_OFFLINE_PATTERN, html): + # File offline + result.append((url, 0, 1, url)) + else: + # Get file info + name, size = url, 0 + + found = re.search(ShareRapidCom.FILE_SIZE_PATTERN, html) + if found is not None: + size, units = found.groups() + size = float(size) * 1024 ** {'kB': 1, 'MB': 2, 'GB': 3}[units] + + found = re.search(ShareRapidCom.FILE_NAME_PATTERN, html) + if found is not None: + name = found.group(1) + + if found or size > 0: + result.append((name, size, 2, url)) + yield result class ShareRapidCom(Hoster): __name__ = "ShareRapidCom" __type__ = "hoster" - __pattern__ = r"http://(?:www.)?(share-rapid)?(.com|.cz)/" - __version__ = "0.1" + __pattern__ = r"http://(?:www\.)?share-rapid\.(com|cz)/" + __version__ = "0.3" __description__ = """share-rapid Plugin""" - __author_name__ = ("MikyWoW") - __author_mail__ = ("MikyWoW@seznam.cz") + __author_name__ = ("MikyWoW", "zoidberg") + __author_mail__ = ("MikyWoW@seznam.cz", "zoidberg@mujmail.cz") + + FILE_NAME_PATTERN = r'<h3>([^<]+)</h3>' + FILE_SIZE_PATTERN = r'<td class="i">Velikost:</td>\s*<td class="h"><strong>\s*([0-9.]+) (kB|MB|GB)</strong></td>' + DOWNLOAD_URL_PATTERN = r'<a href="([^"]+)" title="Stahnout">([^<]+)</a>' + ERR_LOGIN_PATTERN = ur'<div class="error_div"><strong>Stahovánà je pÅ™Ãstupné pouze pÅ™ihlášeným uživatelům' + ERR_CREDIT_PATTERN = ur'<div class="error_div"><strong>Stahovánà zdarma je možné jen pÅ™es náš' + FILE_OFFLINE_PATTERN = ur'Nastala chyba 404|Soubor byl smazán' def setup(self): self.chunkLimit = 1 self.resumeDownload = True def process(self, pyfile): - name = pyfile.url - if "?" in pyfile.url: - name = re.findall("([^?=]+)", name)[-3] - - pyfile.name = re.findall("([^/=]+)", name)[-1] + if not self.account: self.fail("User not logged in") - self.html = self.load(pyfile.url) + self.html = self.load(pyfile.url, decode=True) + size, units = re.search(self.FILE_SIZE_PATTERN, self.html).groups() + pyfile.size = float(size) * 1024 ** {'kB': 1, 'MB': 2, 'GB': 3}[units] - if "Stahování je pøístupné pouze pøihlášeným uživatelùm" in self.html: - self.fail("Nepøihlášen") + found = re.search(self.DOWNLOAD_URL_PATTERN, self.html) + if found is not None: + self.logDebug(found) + link, pyfile.name = found.groups() + self.logInfo("Downloading file: %s (%s %s)" % (pyfile.name, size, units)) + self.logInfo("Premium link: %s" % link) + self.download(link) else: - start = self.html.index('<a href="http://s') - self.html = self.html[start+9:] - start = self.html.index('"') - self.html = self.html[0:start] - self.download(self.html)
\ No newline at end of file + self.logError("Download URL not found") + if re.search(self.ERR_LOGIN_PATTERN, self.html): + self.relogin() + self.retry(3,0,"User login failed") + elif re.search(self.ERR_CREDIT_PATTERN, self.html): + self.fail("Not enough credit left") + else: + self.fail("Download link not found")
\ No newline at end of file |