diff options
| author | 2015-02-16 21:59:10 +0100 | |
|---|---|---|
| committer | 2015-02-16 21:59:10 +0100 | |
| commit | 8e7d14bae4d3c836f029a1235eb227380acc3f75 (patch) | |
| tree | ebd0679642cccb994e70a89a106b394189cb28bc /module/plugins/hoster/LoadTo.py | |
| parent | Merge branch 'stable' into 0.4.10 (diff) | |
| download | pyload-8e7d14bae4d3c836f029a1235eb227380acc3f75.tar.xz | |
Fix plugins to work on 0.4.10
Diffstat (limited to 'module/plugins/hoster/LoadTo.py')
| -rw-r--r-- | module/plugins/hoster/LoadTo.py | 68 | 
1 files changed, 0 insertions, 68 deletions
| diff --git a/module/plugins/hoster/LoadTo.py b/module/plugins/hoster/LoadTo.py deleted file mode 100644 index 0f344a88b..000000000 --- a/module/plugins/hoster/LoadTo.py +++ /dev/null @@ -1,68 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Test links: -# http://www.load.to/JWydcofUY6/random.bin -# http://www.load.to/oeSmrfkXE/random100.bin - -import re - -from pyload.plugin.internal.captcha import SolveMedia -from pyload.plugin.internal.SimpleHoster import SimpleHoster, create_getInfo - - -class LoadTo(SimpleHoster): -    __name__    = "LoadTo" -    __type__    = "hoster" -    __version__ = "0.22" - -    __pattern__ = r'http://(?:www\.)?load\.to/\w+' - -    __description__ = """Load.to hoster plugin""" -    __license__     = "GPLv3" -    __authors__     = [("halfman", "Pulpan3@gmail.com"), -                       ("stickell", "l.stickell@yahoo.it")] - - -    NAME_PATTERN = r'<h1>(?P<N>.+)</h1>' -    SIZE_PATTERN = r'Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+)' -    OFFLINE_PATTERN = r'>Can\'t find file' - -    LINK_FREE_PATTERN = r'<form method="post" action="(.+?)"' -    WAIT_PATTERN = r'type="submit" value="Download \((\d+)\)"' - -    URL_REPLACEMENTS = [(r'(\w)$', r'\1/')] - - -    def setup(self): -        self.multiDL = True -        self.chunkLimit = 1 - - -    def handleFree(self, pyfile): -        # Search for Download URL -        m = re.search(self.LINK_FREE_PATTERN, self.html) -        if m is None: -            self.error(_("LINK_FREE_PATTERN not found")) - -        download_url = m.group(1) - -        # Set Timer - may be obsolete -        m = re.search(self.WAIT_PATTERN, self.html) -        if m: -            self.wait(m.group(1)) - -        # Load.to is using solvemedia captchas since ~july 2014: -        solvemedia  = SolveMedia(self) -        captcha_key = solvemedia.detect_key() - -        if captcha_key is None: -            self.download(download_url) -        else: -            response, challenge = solvemedia.challenge(captcha_key) -            self.download(download_url, -                          post={'adcopy_challenge': challenge, -                                'adcopy_response' : response, -                                'returnUrl'       : pyfile.url}) - - -getInfo = create_getInfo(LoadTo) | 
