diff options
| author | 2015-02-12 12:47:18 +0100 | |
|---|---|---|
| committer | 2015-02-12 12:47:18 +0100 | |
| commit | b4faf0f156b35a20cb2b9e7b3ad9d7ced41f1262 (patch) | |
| tree | 08cd846baa53101d3f9d376ba559e3044b5a9ec1 /module/plugins | |
| parent | [SkipRev] Fix https://github.com/pyload/pyload/issues/1007 (diff) | |
| parent | [New Hoster] mystore.to (diff) | |
| download | pyload-b4faf0f156b35a20cb2b9e7b3ad9d7ced41f1262.tar.xz | |
Merge pull request #1172 from zapp-brannigan/patch-2
[New Hoster] mystore.to
Diffstat (limited to 'module/plugins')
| -rw-r--r-- | module/plugins/hoster/MystoreTo.py | 39 | 
1 files changed, 39 insertions, 0 deletions
| diff --git a/module/plugins/hoster/MystoreTo.py b/module/plugins/hoster/MystoreTo.py new file mode 100644 index 000000000..3389d2ff5 --- /dev/null +++ b/module/plugins/hoster/MystoreTo.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# Testlink: http://mystore.to/dl/mxcA50jKfP + +import re + +from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo + + +class MystoreTo(SimpleHoster): +    __name__    = "MystoreTo" +    __type__    = "hoster" +    __version__ = "0.01" + +    __pattern__ = r'https?://(?:www\.)?mystore.to/dl/.+' + +    __description__ = """Mystore.to hoster plugin""" +    __license__     = "GPLv3" +    __authors__     = [("zapp-brannigan", "")] + + +    NAME_PATTERN    = r'<h1>(?P<N>.*?)</h1>' +    SIZE_PATTERN    = r'FILESIZE: (?P<S>[\d\.,]+) (?P<U>[\w^_]+)<' +    OFFLINE_PATTERN = r'the file is no longer available' + + +    def setup(self): +        self.chunkLimit = 1 + + +    def handleFree(self, pyfile): +        try: +            fid = re.search(r'wert="(.*?)"', self.html).group(1) +        except AttributeError: +            self.error(_("File-ID not found")) +             +        self.link = self.load("http://mystore.to/api/download", +                              post={"FID":fid}) + +getInfo = create_getInfo(MystoreTo) | 
