From 75daf919fbd4918b3d4ecb1084501e081be8da17 Mon Sep 17 00:00:00 2001 From: zapp-brannigan Date: Thu, 12 Feb 2015 12:06:09 +0100 Subject: [New Hoster] mystore.to As requested in https://github.com/pyload/pyload/issues/1169 --- module/plugins/hoster/MystoreTo.py | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 module/plugins/hoster/MystoreTo.py (limited to 'module/plugins/hoster/MystoreTo.py') 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'

(?P.*?)

' + SIZE_PATTERN = r'FILESIZE: (?P[\d\.,]+) (?P[\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) -- cgit v1.2.3 From eecc0ca9fca1134dda36ea6a2f43017a5354a102 Mon Sep 17 00:00:00 2001 From: stickell Date: Thu, 12 Feb 2015 12:51:41 +0100 Subject: [MystoreTo] Multiple downloads and resume seems to be always allowed --- module/plugins/hoster/MystoreTo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/plugins/hoster/MystoreTo.py') diff --git a/module/plugins/hoster/MystoreTo.py b/module/plugins/hoster/MystoreTo.py index 3389d2ff5..3512ab6ce 100644 --- a/module/plugins/hoster/MystoreTo.py +++ b/module/plugins/hoster/MystoreTo.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class MystoreTo(SimpleHoster): __name__ = "MystoreTo" __type__ = "hoster" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'https?://(?:www\.)?mystore.to/dl/.+' @@ -25,6 +25,7 @@ class MystoreTo(SimpleHoster): def setup(self): self.chunkLimit = 1 + self.resumeDownload = self.multiDL = True def handleFree(self, pyfile): -- cgit v1.2.3 From 1694a5c6b3c1bbe6e86b950d1c164b95bb27cc50 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Thu, 12 Feb 2015 13:08:48 +0100 Subject: [MystoreTo] Cleanup --- module/plugins/hoster/MystoreTo.py | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) (limited to 'module/plugins/hoster/MystoreTo.py') diff --git a/module/plugins/hoster/MystoreTo.py b/module/plugins/hoster/MystoreTo.py index 3512ab6ce..3bb424d4d 100644 --- a/module/plugins/hoster/MystoreTo.py +++ b/module/plugins/hoster/MystoreTo.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- -# Testlink: http://mystore.to/dl/mxcA50jKfP +# +# Test link: +# http://mystore.to/dl/mxcA50jKfP import re @@ -9,32 +11,35 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class MystoreTo(SimpleHoster): __name__ = "MystoreTo" __type__ = "hoster" - __version__ = "0.02" + __version__ = "0.03" - __pattern__ = r'https?://(?:www\.)?mystore.to/dl/.+' + __pattern__ = r'https?://(?:www\.)?mystore\.to/dl/.+' __description__ = """Mystore.to hoster plugin""" __license__ = "GPLv3" __authors__ = [("zapp-brannigan", "")] - NAME_PATTERN = r'

(?P.*?)

' - SIZE_PATTERN = r'FILESIZE: (?P[\d\.,]+) (?P[\w^_]+)<' - OFFLINE_PATTERN = r'the file is no longer available' + NAME_PATTERN = r'

(?P.+?)<' + SIZE_PATTERN = r'FILESIZE: (?P[\d\.,]+) (?P[\w^_]+)' + OFFLINE_PATTERN = r'>file not found<' def setup(self): - self.chunkLimit = 1 - self.resumeDownload = self.multiDL = True + self.chunkLimit = 1 + self.resumeDownload = True + self.multiDL = True def handleFree(self, pyfile): try: - fid = re.search(r'wert="(.*?)"', self.html).group(1) + 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}) + post={'FID': fid}) + getInfo = create_getInfo(MystoreTo) -- cgit v1.2.3