summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/SexuriaCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-07 01:23:55 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-07 01:23:55 +0200
commitb1759bc440cd6013837697eb8de540914f693ffd (patch)
treed170caf63d7f65e44d23ea2d91a65759a1665928 /module/plugins/crypter/SexuriaCom.py
parent[Plugin] Fix decoding in load method (diff)
downloadpyload-b1759bc440cd6013837697eb8de540914f693ffd.tar.xz
No camelCase style anymore
Diffstat (limited to 'module/plugins/crypter/SexuriaCom.py')
-rw-r--r--module/plugins/crypter/SexuriaCom.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/module/plugins/crypter/SexuriaCom.py b/module/plugins/crypter/SexuriaCom.py
index cce2177f4..db827ca27 100644
--- a/module/plugins/crypter/SexuriaCom.py
+++ b/module/plugins/crypter/SexuriaCom.py
@@ -8,7 +8,7 @@ from module.plugins.internal.Crypter import Crypter
class SexuriaCom(Crypter):
__name__ = "SexuriaCom"
__type__ = "crypter"
- __version__ = "0.03"
+ __version__ = "0.04"
__pattern__ = r'http://(?:www\.)?sexuria\.com/(v1/)?(Pornos_Kostenlos_.+?_(\d+)\.html|dl_links_\d+_\d+\.html|id=\d+\&part=\d+\&link=\d+)'
__config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True),
@@ -34,11 +34,11 @@ class SexuriaCom(Crypter):
self.package = pyfile.package()
#: Get package links
- package_name, self.links, folder_name, package_pwd = self.decryptLinks(self.pyfile.url)
+ package_name, self.links, folder_name, package_pwd = self.decrypt_links(self.pyfile.url)
self.packages = [(package_name, self.links, folder_name)]
- def decryptLinks(self, url):
+ def decrypt_links(self, url):
linklist = []
name = self.package.name
folder = self.package.folder
@@ -65,30 +65,30 @@ class SexuriaCom(Crypter):
title = re.search(self.PATTERN_TITLE, html, re.I).group('TITLE').strip()
if title:
name = folder = title
- self.logDebug("Package info found, name [%s] and folder [%s]" % (name, folder))
+ self.log_debug("Package info found, name [%s] and folder [%s]" % (name, folder))
pwd = re.search(self.PATTERN_PASSWORD, html, re.I | re.S).group('PWD')
if pwd and pwd not in ("Kein Passwort", "-"):
password = pwd.strip()
- self.logDebug("Password info [%s] found" % password)
+ self.log_debug("Password info [%s] found" % password)
#: Process link (dl_link)
html = self.load(url)
links = re.findall(self.PATTERN_REDIRECT_LINKS, html, re.I)
if len(links) == 0:
- self.logError("Broken for link %s" % link)
+ self.log_error("Broken for link %s" % link)
else:
for link in links:
link = link.replace("http://sexuria.com/", "http://www.sexuria.com/")
finallink = self.load(link, just_header=True)['location']
if not finallink or "sexuria.com/" in finallink:
- self.logError("Broken for link %s" % link)
+ self.log_error("Broken for link %s" % link)
else:
linklist.append(finallink)
#: Debug log
- self.logDebug("%d supported links" % len(linklist))
+ self.log_debug("%d supported links" % len(linklist))
for i, link in enumerate(linklist):
- self.logDebug("Supported link %d, %s" % (i + 1, link))
+ self.log_debug("Supported link %d, %s" % (i + 1, link))
return name, linklist, folder, password