summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/DebridItaliaCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/DebridItaliaCom.py')
-rw-r--r--module/plugins/hoster/DebridItaliaCom.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/module/plugins/hoster/DebridItaliaCom.py b/module/plugins/hoster/DebridItaliaCom.py
deleted file mode 100644
index dbac000c8..000000000
--- a/module/plugins/hoster/DebridItaliaCom.py
+++ /dev/null
@@ -1,50 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-
-from module.plugins.Hoster import Hoster
-
-
-class DebridItaliaCom(Hoster):
- __name__ = "DebridItaliaCom"
- __type__ = "hoster"
- __version__ = "0.05"
-
- __pattern__ = r'https?://(?:[^/]*\.)?debriditalia\.com'
-
- __description__ = """Debriditalia.com hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("stickell", "l.stickell@yahoo.it")]
-
-
- def setup(self):
- self.chunkLimit = -1
- self.resumeDownload = True
-
-
- def process(self, pyfile):
- if re.match(self.__pattern__, pyfile.url):
- new_url = pyfile.url
- elif not self.account:
- self.logError(_("Please enter your %s account or deactivate this plugin") % "DebridItalia")
- self.fail(_("No DebridItalia account provided"))
- else:
- self.logDebug("Old URL: %s" % pyfile.url)
- url = "http://debriditalia.com/linkgen2.php?xjxfun=convertiLink&xjxargs[]=S<![CDATA[%s]]>" % pyfile.url
- page = self.load(url)
- self.logDebug("XML data: %s" % page)
-
- if 'File not available' in page:
- self.fail(_("File not available"))
- else:
- new_url = re.search(r'<a href="(?:[^"]+)">(?P<direct>[^<]+)</a>', page).group('direct')
-
- if new_url != pyfile.url:
- self.logDebug("New URL: %s" % new_url)
-
- self.download(new_url, disposition=True)
-
- check = self.checkDownload({"empty": re.compile(r"^$")})
-
- if check == "empty":
- self.retry(5, 2 * 60, "Empty file downloaded")