diff options
Diffstat (limited to 'module/plugins/hoster/DuckloadCom.py')
-rw-r--r-- | module/plugins/hoster/DuckloadCom.py | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/module/plugins/hoster/DuckloadCom.py b/module/plugins/hoster/DuckloadCom.py deleted file mode 100644 index 34a6a5146..000000000 --- a/module/plugins/hoster/DuckloadCom.py +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-import re
-from module.plugins.Hoster import Hoster
-from time import time
-
-class DuckloadCom(Hoster):
- __name__ = "DuckloadCom"
- __type__ = "hoster"
- __pattern__ = r"http://(?:www\.)?duckload\.com/divx/"
- __version__ = "0.1"
- __description__ = """Duckload.com Download Hoster"""
- __author_name__ = ("wugy")
- __author_mail__ = ("wugy@qip.ru")
-
- def __init__(self, parent):
- Hoster.__init__(self, parent)
- self.parent = parent
- self.html = [None, None]
- self.want_reconnect = False
- self.multi_dl = False
-
- def prepare(self, thread):
- pyfile = self.parent
-
- self.want_reconnect = False
-
- self.download_html()
-
- pyfile.status.exists = self.file_exists()
-
- if not pyfile.status.exists:
- return False
-
- pyfile.status.filename = self.get_file_name()
-
- pyfile.status.waituntil = time()
- pyfile.status.url = self.get_file_url()
- pyfile.status.want_reconnect = self.want_reconnect
-
- thread.wait(self.parent)
-
- return True
-
- def download_html(self):
- url = self.parent.url
- self.html[0] = self.load(url)
- self.html[1] = self.load(url, post={"server": "1", "sn": "Stream Starten"})
-
- def get_file_url(self):
- """ returns the absolute downloadable filepath
- """
- if self.html[1] == None:
- self.download_html()
- if not self.want_reconnect:
- file_url = re.search('type=\"video/divx\"\ src=\"(.*?)\"', self.html[1]).group(1)
- #print file_url
- return file_url
- else:
- return False
-
- def get_file_name(self):
- if self.html[1] == None:
- self.download_html()
- if not self.want_reconnect:
- file_name = re.search('Film\ \"(\S*?)\"\ anschauen', self.html[1]).group(1)
- return file_name
- else:
- return self.parent.url
-
- def file_exists(self):
- """ returns True or False
- """
- if self.html[0] == None:
- self.download_html()
- if re.search(r"Datei wurde nicht gefunden!", self.html) != None:
- return False
- else:
- return True
|