summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/container/CCF.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/container/CCF.py')
-rw-r--r--pyload/plugins/container/CCF.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/pyload/plugins/container/CCF.py b/pyload/plugins/container/CCF.py
deleted file mode 100644
index 9488d75f9..000000000
--- a/pyload/plugins/container/CCF.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from __future__ import with_statement
-
-import re
-
-from os import makedirs
-from os.path import exists
-from urllib2 import build_opener
-
-from MultipartPostHandler import MultipartPostHandler
-
-from pyload.plugins.Container import Container
-from pyload.utils import safe_join
-
-
-class CCF(Container):
- __name = "CCF"
- __version = "0.20"
-
- __pattern = r'.+\.ccf'
-
- __description = """CCF container decrypter plugin"""
- __license = "GPLv3"
- __authors = [("Willnix", "Willnix@pyload.org")]
-
-
- def decrypt(self, pyfile):
- infile = pyfile.url.replace("\n", "")
-
- opener = build_opener(MultipartPostHandler)
- params = {"src": "ccf",
- "filename": "test.ccf",
- "upload": open(infile, "rb")}
- tempdlc_content = opener.open('http://service.jdownloader.net/dlcrypt/getDLC.php', params).read()
-
- download_folder = self.config['general']['download_folder']
-
- tempdlc_name = safe_join(download_folder, "tmp_%s.dlc" % pyfile.name)
- with open(tempdlc_name, "w") as tempdlc:
- tempdlc.write(re.search(r'<dlc>(.*)</dlc>', tempdlc_content, re.S).group(1))
-
- self.urls = [tempdlc_name]