From d4751c2d0797796af14c4a8ab0746eba91cebc99 Mon Sep 17 00:00:00 2001 From: zoidberg10 Date: Fri, 3 Feb 2012 00:47:08 +0100 Subject: fix ul.to --- module/plugins/hoster/CoolshareCz.py | 57 ++++++++++++++++++++++++++++++++++ module/plugins/hoster/UploadedTo.py | 6 +++- module/plugins/hoster/YibaishiwuCom.py | 24 +++++--------- 3 files changed, 70 insertions(+), 17 deletions(-) create mode 100644 module/plugins/hoster/CoolshareCz.py (limited to 'module/plugins/hoster') diff --git a/module/plugins/hoster/CoolshareCz.py b/module/plugins/hoster/CoolshareCz.py new file mode 100644 index 000000000..63bc4cf37 --- /dev/null +++ b/module/plugins/hoster/CoolshareCz.py @@ -0,0 +1,57 @@ +# -*- 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.internal.SimpleHoster import SimpleHoster, create_getInfo +from module.network.HTTPRequest import BadHeader + +class CoolshareCz(SimpleHoster): + __name__ = "CoolshareCz" + __type__ = "hoster" + __pattern__ = r"http://(?:\w*\.)?coolshare.cz/stahnout/(?P\d+)/.+" + __version__ = "0.1" + __description__ = """CoolShare.cz""" + __author_name__ = ("zoidberg") + + FILE_NAME_PATTERN = r'

(?P[^<]+)

' + FILE_SIZE_PATTERN = r'
  • Velikost: (?P[^<]+)' + FILE_OFFLINE_PATTERN = r'

    Soubor nenalezen

    ' + + PREMIUM_URL_PATTERN = r'
    \s*

    (\d+) seconds", self.html).group(1) self.setWait(wait) diff --git a/module/plugins/hoster/YibaishiwuCom.py b/module/plugins/hoster/YibaishiwuCom.py index be4742715..5926cc227 100644 --- a/module/plugins/hoster/YibaishiwuCom.py +++ b/module/plugins/hoster/YibaishiwuCom.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# -*- 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 @@ -24,7 +24,7 @@ class YibaishiwuCom(SimpleHoster): __name__ = "YibaishiwuCom" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?(?:u\.)?115.com/file/(?P\w+)" - __version__ = "0.1" + __version__ = "0.11" __description__ = """115.com""" __author_name__ = ("zoidberg") @@ -32,24 +32,16 @@ class YibaishiwuCom(SimpleHoster): FILE_SIZE_PATTERN = r"file_size: '(?P[^']+)'" FILE_OFFLINE_PATTERN = ur'

    哎呀!提取码不存在!不妨搜搜看吧!

    ' - AJAX_GUEST_URL_PATTERN = r'url: "(/\?ct=pickcode[^"]+)"' - AJAX_FREEUSER_URL_PATTERN = r'url: "(/\?ct=download&ac=get^"]+)"' + AJAX_URL_PATTERN = r'(/\?ct=(pickcode|download)[^"\']+)' def handleFree(self): - url = False - if self.account: - found = re.search(self.AJAX_FREEUSER_URL_PATTERN, self.html) - if found: - url = found.group(1) - self.logDebug('FREEUSER URL: ' + url) - if not url: - found = re.search(self.AJAX_GUEST_URL_PATTERN, self.html) - if not found: self.parseError("AJAX URL") - url = found.group(1) - self.logDebug('GUEST URL: ' + url) + found = re.search(self.AJAX_URL_PATTERN, self.html) + if not found: self.parseError("AJAX URL") + url = found.group(1) + self.logDebug(('FREEUSER' if found.group(2) == 'download' else 'GUEST') + ' URL', url) response = json_loads(self.load("http://115.com" + url, decode = False)) - for mirror in response['data']: + for mirror in (response['urls'] if 'urls' in response else response['data'] if 'data' in response else []): try: url = mirror['url'].replace('\\','') self.logDebug("Trying URL: " + url) -- cgit v1.2.3