summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/account/DebridItaliaCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/account/DebridItaliaCom.py')
-rw-r--r--pyload/plugin/account/DebridItaliaCom.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/pyload/plugin/account/DebridItaliaCom.py b/pyload/plugin/account/DebridItaliaCom.py
deleted file mode 100644
index c8990f882..000000000
--- a/pyload/plugin/account/DebridItaliaCom.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-
-from time import mktime, strptime
-
-from pyload.plugin.Account import Account
-
-
-class DebridItaliaCom(Account):
- __name__ = "DebridItaliaCom"
- __type__ = "account"
- __version__ = "0.11"
-
- __description__ = """Debriditalia.com account plugin"""
- __license__ = "GPLv3"
- __authors__ = [("stickell", "l.stickell@yahoo.it"),
- ("Walter Purcaro", "vuolter@gmail.com")]
-
-
- WALID_UNTIL_PATTERN = r'Premium valid till: (.+?) \|'
-
-
- def loadAccountInfo(self, user, req):
- info = {'premium': False, 'validuntil': None, 'trafficleft': None}
- html = req.load("http://debriditalia.com/")
-
- if 'Account premium not activated' not in html:
- m = re.search(self.WALID_UNTIL_PATTERN, html)
- if m:
- validuntil = int(mktime(strptime(m.group(1), "%d/%m/%Y %H:%M")))
- info = {'premium': True, 'validuntil': validuntil, 'trafficleft': -1}
- else:
- self.logError(_("Unable to retrieve account information"))
-
- return info
-
-
- def login(self, user, data, req):
- html = req.load("http://debriditalia.com/login.php",
- get={'u': user, 'p': data['password']})
-
- if 'NO' in html:
- self.wrongPassword()