summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/DatafileComFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/DatafileComFolder.py')
-rw-r--r--module/plugins/crypter/DatafileComFolder.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/module/plugins/crypter/DatafileComFolder.py b/module/plugins/crypter/DatafileComFolder.py
new file mode 100644
index 000000000..a5d7d7764
--- /dev/null
+++ b/module/plugins/crypter/DatafileComFolder.py
@@ -0,0 +1,40 @@
+# -*- coding: utf-8 -*-
+
+import re
+
+from module.plugins.internal.Crypter import Crypter
+
+
+class DatafileComFolder(Crypter):
+ __name__ = "DatafileComFolder"
+ __type__ = "crypter"
+ __version__ = "0.01"
+ __status__ = "testing"
+
+ __pattern__ = r'https?://(?:www\.)?datafile\.com/f/\w{12}'
+ __config__ = [("activated" , "bool" , "Activated" , True ),
+ ("use_premium" , "bool" , "Use premium account if available" , True ),
+ ("folder_per_package", "Default;Yes;No", "Create folder for each package" , "Default"),
+ ("max_wait" , "int" , "Reconnect if waiting time is greater than minutes", 10 )]
+
+
+ __description__ = """datafile.com decrypter plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("GammaC0de", "nitzo2001[AT]yahoo[DOT]com")]
+
+ LINK_PATTERN = r'https?://(?:www\.)?datafile\.com/d/\w{17}'
+ NAME_PATTERN = r'<div class="file-name">(?P<N>.+?)<'
+
+
+ def decrypt(self, pyfile):
+ self.data = self.load(pyfile.url)
+
+ links = re.findall(self.LINK_PATTERN, self.data)
+
+ m = re.search(self.NAME_PATTERN, self.data)
+ if m:
+ name = m.group('N')
+ self.packages.append((name, links, name))
+
+ else:
+ self.links.extend(links) \ No newline at end of file