From 924b9e2e7e0d651662b4bd00936b7f4675e7947f Mon Sep 17 00:00:00 2001 From: zoidberg10 Date: Tue, 20 Sep 2011 17:10:52 +0200 Subject: New plugins: HellspyCz, LetitbitNet, FreevideoCz, StreamCz, UlozToFolder --- module/plugins/hoster/HellspyCz.py | 134 +++++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 module/plugins/hoster/HellspyCz.py (limited to 'module/plugins/hoster/HellspyCz.py') diff --git a/module/plugins/hoster/HellspyCz.py b/module/plugins/hoster/HellspyCz.py new file mode 100644 index 000000000..fb7fa41dc --- /dev/null +++ b/module/plugins/hoster/HellspyCz.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see . + + @author: zoidberg +""" + +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(HellspyCz.FILE_OFFLINE_PATTERN, html): + # File offline + result.append((url, 0, 1, url)) + else: + # Get file info + found = re.search(HellspyCz.FILE_NAME_PATTERN, html) + if found is not None: + name = found.group(1) + found = re.search(HellspyCz.FILE_CREDITS_PATTERN, html) + if found is not None: + size = float(found.group(1)) + units = found.group(2) + + pow = {'kB' : 1, 'MB' : 2, 'GB' : 3}[units] + size = int(size*1024**pow) + + result.append((name, size, 2, url)) + yield result + +class HellspyCz(Hoster): + __name__ = "HellspyCz" + __type__ = "hoster" + __pattern__ = r"http://(?:\w*\.)*hellspy\.(?:cz|com|sk|hu)(/\S+/\d+)/?.*" + __version__ = "0.2" + __description__ = """HellSpy.cz""" + __author_name__ = ("zoidberg") + __author_mail__ = ("zoidberg@mujmail.cz") + + FILE_NAME_PATTERN = r'

([^<]+)

' + FILE_OFFLINE_PATTERN = r'

(404 - Page|File) not found

' + FILE_CREDITS_PATTERN = r'\s*(\S+) (kB|MB|GB)\s*\((\d+) credits\)' + CREDIT_LEFT_PATTERN = r'(\d+)' + + PREMIUM_URL_PATTERN = r"launchFullDownload\('(http://[^']+)',\s*\d*\);" + DOWNLOAD_AGAIN_PATTERN = r']*title="You can download the file without deducting your credit.">' + + def setup(self): + self.resumeDownload = self.multiDL = True if self.account else False + self.chunkLimit = 1 + + def process(self, pyfile): + if not self.premium: self.fail("Only premium users can download from HellSpy.cz") + if not self.account: self.fail("Not logged in") + + # set PHPSESSID cookie + cj = self.account.getAccountCookies(self.user) + cj.setCookie(".hellspy.com", "PHPSESSID", self.account.phpsessid) + self.logDebug("PHPSESSID: " + cj.getCookie("PHPSESSID")) + + info = self.account.getAccountInfo(self.user) + self.logInfo("User %s has %i credits left" % (self.user, info["trafficleft"]/1024)) + + # load html + rel_url = re.search(self.__pattern__, pyfile.url).group(1) + self.html = self.load("http://www.hellspy.com/--%s-/%s" % (self.account.phpsessid, rel_url), decode = True) + + # get premium download URL + download_url = self.getPremiumURL() + if download_url is None: + self.checkFile(pyfile) + self.html = self.load("http://www.hellspy.com/%s?download=1" % rel_url) + download_url = self.getPremiumURL() + + # download + if download_url is None: self.fail("Parse error (DOWNLOAD URL)") + self.logDebug("Download URL: " + download_url) + self.download(download_url, disposition = True) + + info = self.account.getAccountInfo(self.user) + self.logInfo("User %s has %i credits left" % (self.user, info["trafficleft"]/1024)) + + def checkFile(self, pyfile): + # marks the file as "offline" when the pattern was found on the html-page + if re.search(self.FILE_OFFLINE_PATTERN, self.html) is not None: + self.offline() + + # parse the name from the site and set attribute in pyfile + found = re.search(self.FILE_NAME_PATTERN, self.html) + if found is None: + self.fail("Parse error (FILENAME)") + pyfile.name = found.group(1) + + # parse credits left info + found = re.search(self.CREDIT_LEFT_PATTERN, self.html) + if found is None: + self.logInfo("Not logged in... relogin and retry") + self.account.relogin(self.user) + self.retry(max_tries = 2, reason = "Not logged in") + credits_left = int(found.group(1)) + self.logInfo("User %s has %i credits left" % (self.user, credits_left)) + + # parse credit needed to proceed + found = re.search(self.DOWNLOAD_AGAIN_PATTERN, self.html) + if found: + self.logInfo("Free download (file downloaded before)") + else: + found = re.search(self.FILE_CREDITS_PATTERN, self.html) + if found is None: self.fail("Parse error (FILE CREDITS)") + file_credits = int(found.group(3)) + if file_credits > credits_left: self.fail("Not enough credits left to download file") + self.logInfo("Premium download for %i credits" % file_credits) + + + def getPremiumURL(self): + found = re.search(self.PREMIUM_URL_PATTERN, self.html) + return found.group(1) if found else None \ No newline at end of file -- cgit v1.2.3