diff options
author | guidobelix <guidobelix@hotmail.it> | 2014-10-15 02:05:25 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-15 02:05:25 +0200 |
commit | e7e59f4f7c3211920016bb3e5e063f954a19c92e (patch) | |
tree | d5b4cedffa28322978ac63f1a340207bf1b97512 | |
parent | [XFSPAccount] Improve TRAFFIC_LEFT_PATTERN (diff) | |
download | pyload-e7e59f4f7c3211920016bb3e5e063f954a19c92e.tar.xz |
New plugin RapidfileshareNet (account + hoster)
-rw-r--r-- | module/plugins/accounts/RapidfileshareNet.py | 18 | ||||
-rw-r--r-- | module/plugins/hoster/RapidfileshareNet.py | 31 |
2 files changed, 49 insertions, 0 deletions
diff --git a/module/plugins/accounts/RapidfileshareNet.py b/module/plugins/accounts/RapidfileshareNet.py new file mode 100644 index 000000000..56ae80cf0 --- /dev/null +++ b/module/plugins/accounts/RapidfileshareNet.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class RapidfileshareNet(XFSPAccount): + __name__ = "RapidfileshareNet" + __type__ = "account" + __version__ = "0.01" + + __description__ = """Rapidfileshare.net account plugin""" + __license__ = "GPLv3" + __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + + + HOSTER_URL = "http://www.rapidfileshare.net/" + + TRAFFIC_LEFT_PATTERN = r'>Traffic available today:</TD><TD><label for="name">(?P<S>.+?)</label></TD></TR>' diff --git a/module/plugins/hoster/RapidfileshareNet.py b/module/plugins/hoster/RapidfileshareNet.py new file mode 100644 index 000000000..f29e2b6a1 --- /dev/null +++ b/module/plugins/hoster/RapidfileshareNet.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPHoster import XFSPHoster, create_getInfo + + +class RapidfileshareNet(XFSPHoster): + __name__ = "RapidfileshareNet" + __type__ = "hoster" + __version__ = "0.01" + + __pattern__ = r'http://(?:www\.)?rapidfileshare\.net/\w{12}' + + __description__ = """Rapidfileshare.net hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + + + HOSTER_NAME = "rapidfileshare.net" + + FILE_NAME_PATTERN = r'<input type="hidden" name="fname" value="(?P<N>.+?)">' + FILE_SIZE_PATTERN = r'>http://www.rapidfileshare.net/\w+?</font> \((?P<S>[\d.,]+) (?P<U>[\w^_]+)\)</font>' + + OFFLINE_PATTERN = r'>No such file with this filename' + TEMP_OFFLINE_PATTERN = r'The page may have been renamed, removed or be temporarily unavailable.<' + + + def handlePremium(self): + self.fail("Premium download not implemented") + + +getInfo = create_getInfo(RapidfileshareNet) |