summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UlozTo.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-09-18 19:04:05 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-09-18 19:04:05 +0200
commitcb7bb3881a76e85110868643be04d200113d88f2 (patch)
treeabc99358b0249c998e477a69c1bc922b7d04ef6d /module/plugins/hoster/UlozTo.py
parentclosed #371 (diff)
downloadpyload-cb7bb3881a76e85110868643be04d200113d88f2.tar.xz
plugin pack by zoidberg
Diffstat (limited to 'module/plugins/hoster/UlozTo.py')
-rw-r--r--module/plugins/hoster/UlozTo.py167
1 files changed, 167 insertions, 0 deletions
diff --git a/module/plugins/hoster/UlozTo.py b/module/plugins/hoster/UlozTo.py
new file mode 100644
index 000000000..b16240ab7
--- /dev/null
+++ b/module/plugins/hoster/UlozTo.py
@@ -0,0 +1,167 @@
+# -*- 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 <http://www.gnu.org/licenses/>.
+
+ @author: zoidberg
+"""
+
+import re
+from module.plugins.Hoster import Hoster
+from module.network.RequestFactory import getURL
+
+def getInfo(urls):
+ result = []
+
+ for url in urls:
+ try:
+ html = getURL(url, decode=True)
+
+ if re.search(UlozTo.FILE_OFFLINE_PATTERN, html):
+ # File offline
+ result.append((url, 0, 1, url))
+ else:
+ # Get file info
+ name = ''
+ found = re.search(UlozTo.FILE_NAME_PATTERN, html)
+ if found is not None:
+ name = found.group(1)
+ else:
+ found = re.search(UlozTo.LIVE_NAME_PATTERN, html)
+ if found is not None:
+ name = found.group(1)
+
+ if name:
+ found = re.search(UlozTo.FILE_SIZE_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))
+ except Exception:
+ result.append((url, 0, 1, url))
+
+ yield result
+
+
+class UlozTo(Hoster):
+ __name__ = "UlozTo"
+ __type__ = "hoster"
+ __pattern__ = r"http://(\w*\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj.cz|zachowajto.pl)/.*"
+ __version__ = "0.7"
+ __description__ = """uloz.to"""
+ __config__ = [("reuseCaptcha", "bool", "Reuse captcha", "True"),
+ ("captchaUser", "str", "captcha_user", ""),
+ ("captchaNb", "str", "captcha_nb", "")]
+ __author_name__ = ("zoidberg")
+
+ FILE_URL_PATTERN = r'<form name="dwn" action="([^"]+)"'
+ FILE_NAME_PATTERN = r'<h2 class="nadpis" style="margin-left:196px;"><a href="[^"]+">([^<]+)</a></h2>'
+ CAPTCHA_PATTERN = r'<img style=".*src="([^"]+)" alt="Captcha" class="captcha"'
+ CAPTCHA_NB_PATTERN = r'<input class="captcha_nb" type="hidden" name="captcha_nb" value="([0-9]+)" >'
+ FILE_OFFLINE_PATTERN = r'href="http://www.ulozto.net/(neexistujici|smazano)/\?lg=en&amp;'
+ PASSWD_PATTERN = r'<input type="password" class="text" name="file_password" id="frmfilepasswordForm-file_password" />'
+ LIVE_URL_PATTERN = r'<div id="flashplayer"[^>]*>\s*<a href="([^"]+)"'
+ LIVE_NAME_PATTERN = r'<a share_url="[^&]*&amp;t=([^"]+)"'
+ FILE_SIZE_PATTERN = r'<div class="info_velikost" style="top:-55px;">\s*<div>[^<]*\s+([0-9.]+)\s(kB|MB|GB)\s*</div>\s*</div>'
+ VIPLINK_PATTERN = r'<a href="[^"]*\?disclaimer=1" class="linkVip">'
+
+ def setup(self):
+ self.multiDL = False
+
+ def process(self, pyfile):
+ self.html = self.load(pyfile.url, decode=True)
+
+ #marks the file as "offline" when the pattern was found on the html-page
+ if re.search(self.FILE_OFFLINE_PATTERN, self.html):
+ self.offline()
+
+ if re.search(self.VIPLINK_PATTERN, self.html):
+ self.html = self.load(pyfile.url, get={"disclaimer": "1"})
+
+ found = re.search(self.LIVE_URL_PATTERN, self.html)
+ if found is not None:
+ # Uloz.to LIVE
+ parsed_url = found.group(1)
+ self.logDebug("LIVE URL:" + parsed_url)
+
+ found = re.search(self.LIVE_NAME_PATTERN, self.html)
+ if found is None:
+ self.fail("Parse error (LIVE_NAME)")
+ pyfile.name = found.group(1)
+ self.log.debug("LIVE NAME:" + pyfile.name)
+
+ self.download(parsed_url)
+ else:
+ # Uloz.to DATA
+ # 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)
+ self.log.debug("PARSED_NAME:" + pyfile.name)
+
+ found = re.search(self.FILE_URL_PATTERN, self.html)
+ if found is None:
+ self.fail("Parse error (URL)")
+ parsed_url = found.group(1)
+ self.log.debug("PARSED_URL:" + parsed_url)
+
+ # get and decrypt captcha
+ reuse_captcha = self.getConfig("reuseCaptcha")
+ captcha = self.getConfig("captchaUser")
+ captcha_nb = self.getConfig("captchaNb")
+ captcha_url = "DUMMY"
+
+ if not reuse_captcha or not captcha or not captcha_nb:
+ found = re.search(self.CAPTCHA_PATTERN, self.html)
+ if found is None:
+ self.fail("Parse error (CAPTCHA)")
+ captcha_url = found.group(1)
+ captcha = self.decryptCaptcha(captcha_url)
+ found = re.search(self.CAPTCHA_NB_PATTERN, self.html)
+ if found is None:
+ self.fail("Parse error (CAPTCHA_NB)")
+ captcha_nb = found.group(1)
+ self.log.debug('CAPTCHA_URL:' + captcha_url + ' CAPTCHA:' + captcha + ' CAPTCHA_NB:' + captcha_nb)
+
+ # download the file, destination is determined by pyLoad
+ self.download(parsed_url, post={
+ "captcha_user": captcha,
+ "captcha_nb": captcha_nb
+ })
+
+ check = self.checkDownload({
+ "wrong_captcha": re.compile(self.CAPTCHA_PATTERN),
+ "offline": re.compile(self.FILE_OFFLINE_PATTERN),
+ "passwd": self.PASSWD_PATTERN
+ })
+
+ if check == "wrong_captcha":
+ if reuse_captcha:
+ self.setConfig("captchaUser", "")
+ self.setConfig("captchaNb", "")
+ self.invalidCaptcha()
+ self.retry(reason="Wrong captcha code")
+ elif check == "offline":
+ self.offline()
+ elif check == "passwd":
+ self.fail("Password protected")
+
+ if reuse_captcha:
+ self.setConfig("captchaUser", captcha)
+ self.setConfig("captchaNb", captcha_nb)
+ \ No newline at end of file