From 931ab695ec84be3bbf1137593c4333c184cabb5d Mon Sep 17 00:00:00 2001 From: zoidberg10 Date: Fri, 30 Sep 2011 16:03:54 +0200 Subject: hoster plugins: add ifile.it, update share-rapid.com, ifolder.ru --- module/plugins/hoster/ShareRapidCom.py | 73 ++++++++++++++++++++++++++-------- 1 file changed, 56 insertions(+), 17 deletions(-) (limited to 'module/plugins/hoster/ShareRapidCom.py') 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'

([^<]+)

' + FILE_SIZE_PATTERN = r'Velikost:\s*\s*([0-9.]+) (kB|MB|GB)' + DOWNLOAD_URL_PATTERN = r'([^<]+)' + ERR_LOGIN_PATTERN = ur'
Stahování je přístupné pouze přihlášeným uživatelům' + ERR_CREDIT_PATTERN = ur'
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('