From 34f7be2c545ab5db55406444ff3829e14090cb95 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 5 Jun 2009 19:17:18 +0200 Subject: bluehost working, but slow --- Plugins/BluehostTo.py | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'Plugins/BluehostTo.py') diff --git a/Plugins/BluehostTo.py b/Plugins/BluehostTo.py index 80ed1e61b..d7f9f1e81 100644 --- a/Plugins/BluehostTo.py +++ b/Plugins/BluehostTo.py @@ -34,19 +34,19 @@ class BluehostTo(Plugin): if self.html == None: self.download_html() - #@todo: regexp not correct, value switches its position + inputs = re.findall(r"(<(input|form)[^>]+)", self.html) + for i in inputs: + if re.search(r"name=\"BluehostVers2dl\"",i[0]): + self.BluehostVers2dl = re.search(r"value=\"([^\"]+)", i[0]).group(1) + elif re.search(r"name=\"PHPSESSID\"",i[0]): + self.PHPSESSID = re.search(r"value=\"([^\"]+)", i[0]).group(1) + elif re.search(r"name=\"DownloadV2Hash\"",i[0]): + self.DownloadV2Hash = re.search(r"value=\"([^\"]+)", i[0]).group(1) + elif re.search(r"name=\"access\"",i[0]): + self.access = re.search(r"value=\"([^\"]+)", i[0]).group(1) + elif re.search(r"name=\"download\"",i[0]): + url = re.search(r"action=\"([^\"]+)", i[0]).group(1) - - self.BluehostVers2dl = re.search(r"(name=\"BluehostVers2dl\")?.{1,10}value=\"([^\"]+).{1,10}(name=\"BluehostVers2dl\")?", self.html).group(2) - print self.BluehostVers2dl - self.DownloadV2Hash = re.search(r"value=\"([^\"]+) name=\"DownloadV2Hash\"", self.html).group(1) - print self.DownloadV2Hash - self.PHPSESSID = re.search(r"value=\"([^\"]+) name=\"PHPSESSID\"", self.html).group(1) - print self.PHPSESSID - self.access = re.search(r"value=\"([^\"]+) name=\"access\"", self.html).group(1) - print self.access - - url = re.search("