diff options
Diffstat (limited to 'pyload/plugin/account/FilefactoryCom.py')
| -rw-r--r-- | pyload/plugin/account/FilefactoryCom.py | 49 | 
1 files changed, 49 insertions, 0 deletions
| diff --git a/pyload/plugin/account/FilefactoryCom.py b/pyload/plugin/account/FilefactoryCom.py new file mode 100644 index 000000000..71a040b65 --- /dev/null +++ b/pyload/plugin/account/FilefactoryCom.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +import re +import time + +from pycurl import REFERER + +from pyload.plugin.Account import Account + + +class FilefactoryCom(Account): +    __name    = "FilefactoryCom" +    __type    = "account" +    __version = "0.15" + +    __description = """Filefactory.com account plugin""" +    __license     = "GPLv3" +    __authors     = [("zoidberg", "zoidberg@mujmail.cz"), +                       ("stickell", "l.stickell@yahoo.it")] + + +    VALID_UNTIL_PATTERN = r'Premium valid until: <strong>(?P<D>\d{1,2})\w{1,2} (?P<M>\w{3}), (?P<Y>\d{4})</strong>' + + +    def loadAccountInfo(self, user, req): +        html = req.load("http://www.filefactory.com/account/") + +        m = re.search(self.VALID_UNTIL_PATTERN, html) +        if m: +            premium = True +            validuntil = re.sub(self.VALID_UNTIL_PATTERN, '\g<D> \g<M> \g<Y>', m.group(0)) +            validuntil = time.mktime(time.strptime(validuntil, "%d %b %Y")) +        else: +            premium = False +            validuntil = -1 + +        return {"premium": premium, "trafficleft": -1, "validuntil": validuntil} + + +    def login(self, user, data, req): +        req.http.c.setopt(REFERER, "http://www.filefactory.com/member/login.php") + +        html = req.load("http://www.filefactory.com/member/signin.php", +                        post={"loginEmail"   : user, +                              "loginPassword": data['password'], +                              "Submit"       : "Sign In"}) + +        if req.lastEffectiveURL != "http://www.filefactory.com/account/": +            self.wrongPassword() | 
