#!/usr/bin/python # -*- coding: utf-8 -*- import re import time from time import time from Plugin import Plugin class RapidshareCom(Plugin): def __init__(self, parent): Plugin.__init__(self, parent) props = {} props['name'] = "RapidshareCom" props['type'] = "hoster" props['pattern'] = r"http://(?:www.)?rapidshare.com/files/" props['version'] = "0.1" props['description'] = """Rapidshare.com Download Plugin""" props['author_name'] = ("spoob") props['author_mail'] = ("spoob@pyload.org") self.props = props self.parent = parent self.html = [None, None] self.html_old = None #time() where loaded the HTML self.time_plus_wait = None #time() + wait in seconds self.want_reconnect = False self.multi_dl = False self.read_config() if self.config['premium']: self.multi_dl = True def set_parent_status(self): """ sets all available Statusinfos about a File in self.parent.status """ if self.html[0] == None: self.download_html() self.get_wait_time() self.parent.status.filename = self.get_file_name() self.parent.status.url = self.get_file_url() self.parent.status.waituntil = self.wait_until() def download_html(self): """ gets the url from self.parent.url saves html in self.html and parses """ url = self.parent.url html = self.req.load(url) self.html[0] = html self.html_old = time() def download_serverhtml(self): """downloads html with the important informations """ if self.html[0] == None: self.download_html() file_server_url = re.search(r"
This limit is reached.

)", self.html[0]) or \ re.search(r"(.*is momentarily not available.*)", self.html[0]) or \ re.search(r"(.*The uploader has removed this file from the server.*)", self.html[0]) or \ re.search(r"(.*This file is suspected to contain illegal content.*)", self.html[0]): return False else: return True def get_file_url(self): """ returns the absolute downloadable filepath """ if self.config['premium']: return self.parent.url if self.html[1] == None: self.download_serverhtml() if (self.html_old + 5 * 60) < time(): # nach einiger zeit ist die file_url nicht mehr aktuell self.download_serverhtml() if not self.want_reconnect: file_url_pattern = r".*name=\"dlf\" action=\"(.*)\" method=.*" return re.search(file_url_pattern, self.html[1]).group(1) else: return False def get_file_name(self): if self.html[1] == None: self.download_serverhtml() if not self.want_reconnect: file_name_pattern = r".*name=\"dlf\" action=\"(.*)\" method=.*" return re.search(file_name_pattern, self.html[1]).group(1).split('/')[-1] else: return self.parent.url def proceed(self, url, location): if self.config['premium']: self.req.add_auth(self.config['username'], self.config['password']) self.req.download(url, location)