# -*- coding: utf-8 -*- import re import time import urlparse from module.plugins.internal.Account import Account class FilejungleCom(Account): __name__ = "FilejungleCom" __type__ = "account" __version__ = "0.14" __description__ = """Filejungle.com account plugin""" __license__ = "GPLv3" __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] login_timeout = 60 URL = "http://filejungle.com/" TRAFFIC_LEFT_PATTERN = r'"/extend_premium\.php">Until (\d+ \w+ \d+)' def load_account_info(self, user, req): html = self.load(self.URL + "dashboard.php") m = re.search(self.TRAFFIC_LEFT_PATTERN, html) if m: premium = True validuntil = time.mktime(time.strptime(m.group(1), "%d %b %Y")) else: premium = False validuntil = -1 return {"premium": premium, "trafficleft": -1, "validuntil": validuntil} def login(self, user, data, req): html = self.load(urlparse.urljoin(self.URL, "login.php"), post={"loginUserName" : user, "loginUserPassword" : data['password'], "loginFormSubmit" : "Login", "recaptcha_challenge_field" : "", "recaptcha_response_field" : "", "recaptcha_shortencode_field": ""}) if re.search(self.LOGIN_FAILED_PATTERN, html): self.wrong_password()