From cb7bb3881a76e85110868643be04d200113d88f2 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 18 Sep 2011 19:04:05 +0200 Subject: plugin pack by zoidberg --- module/plugins/hoster/BezvadataCz.py | 66 +++++++++++++ module/plugins/hoster/CzshareCom.py | 173 ++++++++++++++++++++++++++++++++++ module/plugins/hoster/DataportCz.py | 77 +++++++++++++++ module/plugins/hoster/EdiskCz.py | 88 +++++++++++++++++ module/plugins/hoster/EuroshareEu.py | 71 ++++++++++++++ module/plugins/hoster/FlyshareCz.py | 90 ++++++++++++++++++ module/plugins/hoster/HellshareCz.py | 161 +++++++++++++++++++++++++++++++ module/plugins/hoster/MultishareCz.py | 83 ++++++++++++++++ module/plugins/hoster/NahrajCz.py | 54 +++++++++++ module/plugins/hoster/PrzeklejPl.py | 47 +++++++++ module/plugins/hoster/QuickshareCz.py | 100 ++++++++++++++++++++ module/plugins/hoster/SpeedfileCz.py | 80 ++++++++++++++++ module/plugins/hoster/StahnuTo.py | 97 +++++++++++++++++++ module/plugins/hoster/UlozTo.py | 167 ++++++++++++++++++++++++++++++++ module/plugins/hoster/UloziskoSk.py | 95 +++++++++++++++++++ 15 files changed, 1449 insertions(+) create mode 100644 module/plugins/hoster/BezvadataCz.py create mode 100644 module/plugins/hoster/CzshareCom.py create mode 100644 module/plugins/hoster/DataportCz.py create mode 100644 module/plugins/hoster/EdiskCz.py create mode 100644 module/plugins/hoster/EuroshareEu.py create mode 100644 module/plugins/hoster/FlyshareCz.py create mode 100644 module/plugins/hoster/HellshareCz.py create mode 100644 module/plugins/hoster/MultishareCz.py create mode 100644 module/plugins/hoster/NahrajCz.py create mode 100644 module/plugins/hoster/PrzeklejPl.py create mode 100644 module/plugins/hoster/QuickshareCz.py create mode 100644 module/plugins/hoster/SpeedfileCz.py create mode 100644 module/plugins/hoster/StahnuTo.py create mode 100644 module/plugins/hoster/UlozTo.py create mode 100644 module/plugins/hoster/UloziskoSk.py (limited to 'module/plugins/hoster') diff --git a/module/plugins/hoster/BezvadataCz.py b/module/plugins/hoster/BezvadataCz.py new file mode 100644 index 000000000..f9784142f --- /dev/null +++ b/module/plugins/hoster/BezvadataCz.py @@ -0,0 +1,66 @@ +# -*- 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 + +class BezvadataCz(Hoster): + __name__ = "BezvadataCz" + __type__ = "hoster" + __pattern__ = r"http://(\w*\.)?bezvadata.cz/stahnout/.*" + __version__ = "0.1" + __description__ = """BezvaData.cz""" + __author_name__ = ("zoidberg") + + ID_PATTERN = r'' + HASH_PATTERN = r'' + FILENAME_PATTERN = r'BezvaData \| St�hnout soubor ([^<]+)' + OFFLINE_PATTERN = r'BezvaData \| Soubor nenalezen' + + def setup(self): + self.multiDL = False + + def process(self, pyfile): + self.html = self.load(pyfile.url, decode=True) + + if re.search(self.OFFLINE_PATTERN, self.html) is not None: + self.offline() + + found = re.search(self.FILENAME_PATTERN, self.html) + if found is None: + self.fail("Parse error (FILENAME)") + pyfile.name = found.group(1) + + found = re.search(self.ID_PATTERN, self.html) + if found is None: + self.fail("Parse error (ID)") + souborId = found.group(1) + + found = re.search(self.ID_PATTERN, self.html) + if found is None: + self.fail("Parse error (HASH)") + souborHash = found.group(1) + + self.logDebug("URL:" + pyfile.url + " ID:" + souborId + " HASH:" + souborHash) + + self.download(pyfile.url, post={ + "souborId": souborId, + "souborHash": souborHash, + "_send": 'STAHNOUT SOUBOR' + }) + \ No newline at end of file diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py new file mode 100644 index 000000000..8cab02317 --- /dev/null +++ b/module/plugins/hoster/CzshareCom.py @@ -0,0 +1,173 @@ +# -*- 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(CzshareCom.FILE_OFFLINE_PATTERN, html): + # File offline + result.append((url, 0, 1, url)) + else: + # Get file info + found = re.search(CzshareCom.FILE_NAME_PATTERN, html) + if found is not None: + name = found.group(1) + result.append((name, 0, 2, url)) + yield result + + +class CzshareCom(Hoster): + __name__ = "CzshareCom" + __type__ = "hoster" + __pattern__ = r"http://.*czshare\.(com|cz)/.*" + __version__ = "0.6" + __description__ = """CZshare.com""" + __author_name__ = ("zoidberg") + + #FILE_URL_PATTERN = r'([^<]+)' + FILE_URL_PATTERN = r'[^>]*alt="([^"]+)" />' + FORM_PATTERN = r'
' + ID_PATTERN = r'' + FILE_PATTERN = r'' + #TICKET_PATTERN = r'' + SUBMIT_PATTERN = r'' + SIZE_PATTERN = r'' + SERVER_PATTERN = r'' + FILE_OFFLINE_PATTERN = r'

Soubor nenalezen 

' + MULTIDL_PATTERN = r"

Z[^<]*PROFI.

" + FILE_NAME_PATTERN = r'

([^<]+) 

' + + 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) is not None: + self.offline() + + # parse the name from the site and set attribute in pyfile + found = re.search(self.FILE_URL_PATTERN, self.html) + if found is None: + self.fail("Parse error (URL)") + + pyfile.name = found.group(2) + parsed_url = "http://czshare.com" + found.group(1) + + # get download ticket and parse html + self.logDebug("PARSED_URL:" + parsed_url) + self.logDebug("NAME:" + pyfile.name) + self.html = self.load(parsed_url) + + #if not re.search(self.FORM_PATTERN, self.html): + if re.search(self.MULTIDL_PATTERN, self.html): + self.waitForFreeSlot() + + parse_err = False + + found = re.search(self.SERVER_PATTERN, self.html) + if found is None: + parse_err = True + server = "" + else: + server = found.group(1) + + found = re.search(self.ID_PATTERN, self.html) + if found is None: + parse_err = True + file_id = "" + else: + file_id = found.group(1) + + found = re.search(self.FILE_PATTERN, self.html) + if found is None: + parse_err = True + long_id = "" + else: + long_id = found.group(1) + + found = re.search(self.SIZE_PATTERN, self.html) + if found is None: + parse_err = True + size = "" + else: + size = found.group(1) + + self.logDebug("ID:" + file_id + " F:" + long_id + " B:" + size + " S:" + server) + + if parse_err: + self.fail("Parse error") + + found = re.search(self.SUBMIT_PATTERN, self.html) + if found is None: + self.fail("Parse error (SUBMIT)") + else: + submit = found.group(1) + + # get and decrypt captcha + captcha_url = 'http://czshare.com/captcha.php' + """ + if self.getConfig("randomCaptcha") == True: + captcha = ''.join(random.choice('abcdefghijklmnopqrstuvwxyz') for i in range(5)) + else: + """ + captcha = self.decryptCaptcha(captcha_url) + self.logDebug('CAPTCHA_URL:' + captcha_url + ' CAPTCHA:' + captcha) + + """ + self.setWait(self.getConfig("multiWait"), True) + self.wait() + """ + + # download the file, destination is determined by pyLoad + #download_url = 'http://czshare.com/free.php' + self.download(parsed_url, post={ + "id": file_id, + "file": long_id, + "size": size, + "server": server, + "captchastring2": captcha, + "freedown": submit + }) + + # check download + check = self.checkDownload({ + "tempoffline": re.compile(r"^Soubor je do.asn. nedostupn.$"), + "multi_dl": re.compile(self.MULTIDL_PATTERN), + "captcha_err": re.compile(self.SUBMIT_PATTERN) + }) + + if check == "tempoffline": + self.fail("File not available - try later") + elif check == "multi_dl": + self.waitForFreeSlot() + elif check == "captcha_err": + self.invalidCaptcha() + self.retry() + + def waitForFreeSlot(self): + self.setWait(900, True) + self.wait() + self.retry() \ No newline at end of file diff --git a/module/plugins/hoster/DataportCz.py b/module/plugins/hoster/DataportCz.py new file mode 100644 index 000000000..ea1ed1282 --- /dev/null +++ b/module/plugins/hoster/DataportCz.py @@ -0,0 +1,77 @@ +# -*- 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(DataportCz.FILE_OFFLINE_PATTERN, html): + # File offline + result.append((url, 0, 1, url)) + else: + # Get file info + found = re.search(DataportCz.FILE_NAME_PATTERN, html) + if found is not None: + name = found.group(1) + result.append((name, 0, 2, url)) + yield result + + +class DataportCz(Hoster): + __name__ = "DataportCz" + __type__ = "hoster" + __pattern__ = r"http://.*dataport.cz/file/.*" + __version__ = "0.3" + __description__ = """dataport.cz""" + __author_name__ = ("zoidberg") + + FILE_NAME_PATTERN = r'

([^<]+)

' + URL_PATTERN = r']*class="ui-state-default button hover ui-corner-all ">' + NO_SLOTS_PATTERN = r']*class="ui-state-default button hover ui-corner-all ui-state-disabled">' + FILE_OFFLINE_PATTERN = r'

Soubor nebyl nalezen

' + + def setup(self): + self.multiDL = False + + def process(self, pyfile): + self.html = self.load(pyfile.url, decode=True) + + if re.search(self.FILE_OFFLINE_PATTERN, self.html): + self.offline() + + if re.search(self.NO_SLOTS_PATTERN, self.html): + self.setWait(900, True) + self.wait() + self.retry() + + found = re.search(self.FILE_NAME_PATTERN, self.html) + if found is None: + self.fail("Parse error (NAME)") + pyfile.name = found.group(1) + + found = re.search(self.URL_PATTERN, self.html) + if found is None: + self.fail("Parse error (URL)") + download_url = found.group(1) + + self.download(download_url) diff --git a/module/plugins/hoster/EdiskCz.py b/module/plugins/hoster/EdiskCz.py new file mode 100644 index 000000000..f5291547f --- /dev/null +++ b/module/plugins/hoster/EdiskCz.py @@ -0,0 +1,88 @@ +# -*- 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(EdiskCz.FILE_OFFLINE_PATTERN, html): + # File offline + result.append((url, 0, 1, url)) + else: + # Get file info + found = re.search(EdiskCz.FILE_NAME_PATTERN, html) + if found is not None: + name = found.group(1) + result.append((name, 0, 2, url)) + yield result + + +class EdiskCz(Hoster): + __name__ = "EdiskCz" + __type__ = "hoster" + __pattern__ = r"http://(\w*\.)?edisk.(cz|sk|eu)/(stahni|sk/stahni|en/download)/.*" + __version__ = "0.2" + __description__ = """Edisk.cz""" + __author_name__ = ("zoidberg") + + URL_PATTERN = r'' + FILE_NAME_PATTERN = r'' + ACTION_PATTERN = r'/en/download/(\d+/.*\.html)' + DLLINK_PATTERN = r'http://.*edisk.cz.*\.html' + FILE_OFFLINE_PATTERN = r'

This file does not exist due to one of the following: