# -*- coding: utf-8 -*- """ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, see . @author: zoidberg """ import re from urllib import quote from module.plugins.Hoster import Hoster from module.network.RequestFactory import getURL def getInfo(urls): result = [] for url in urls: html = getURL(url, decode=True) if re.search(IfolderRu.FILE_OFFLINE_PATTERN, html): # File offline result.append((url, 0, 1, url)) else: # Get file info found = re.search(IfolderRu.FILE_NAME_PATTERN, html) if found is not None: name = found.group(1) found = re.search(IfolderRu.FILE_SIZE_PATTERN, html) if found is not None: size = float(found.group(1)) * 1024 ** {u'Кб': 1, u'Мб': 2, u'Гб': 3}[found.group(2)] result.append((name, size, 2, url)) yield result class IfolderRu(Hoster): __name__ = "IfolderRu" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)?ifolder.ru/(\d+).*" __version__ = "0.3" __description__ = """ifolder.ru""" __author_name__ = ("zoidberg") __author_mail__ = ("zoidberg@mujmail.cz") FILE_NAME_PATTERN = ur'^\s*(?:
)?Название:(?:)? ([^<]+)<(?:/div|br)>' FILE_SIZE_PATTERN = ur'^\s*(?:
)?Размер:(?:)? ([0-9.]+) ([^<]+)<(?:/div|br)>' SESSION_ID_PATTERN = r']+)>' FORM1_PATTERN = r'
(.*?)
' FORM_INPUT_PATTERN = r']* name="?([^" ]+)"? value="?([^" ]+)"?[^>]*>' INTS_SESSION_PATTERN = r'\(\'ints_session\'\);\s*if\(tag\)\{tag.value = "([^"]+)";\}' HIDDEN_INPUT_PATTERN = r"var s= 'hh([^']*)';" DOWNLOAD_LINK_PATTERN = r'
неверный код,
введите еще раз
' FILE_OFFLINE_PATTERN = ur'

Файл номер [^<]* не найден !!!

' def setup(self): self.resumeDownload = self.multiDL = True if self.account else False self.chunkLimit = 1 def process(self, pyfile): file_id = re.search(self.__pattern__, pyfile.url).group(1) self.html = self.load("http://ifolder.ru/%s" % file_id, cookies=True, decode=True) if re.search(self.FILE_OFFLINE_PATTERN, self.html): self.offline() found = re.search(self.FILE_NAME_PATTERN, self.html) if not found: self.fail("Parse error (File name)") pyfile.name = found.group(1) found = re.search(self.FILE_SIZE_PATTERN, self.html) if not found: self.fail("Parse error (File size)") pyfile.size = float(found.group(1)) * 1024 ** {u'Кб': 1, u'Мб': 2, u'Гб': 3}[found.group(2)] url = "http://ints.ifolder.ru/ints/?ifolder.ru/%s?ints_code=" % file_id self.html = self.load(url, cookies=True, decode=True) url, session_id = re.search(self.SESSION_ID_PATTERN, self.html).groups() self.html = self.load(url, cookies=True, decode=True) url = "http://ints.ifolder.ru/ints/frame/?session=%s" % session_id self.html = self.load(url, cookies=True) self.setWait(31, False) self.wait() captcha_url = "http://ints.ifolder.ru/random/images/?session=%s" % session_id for i in range(5): self.html = self.load(url, cookies=True) inputs = {} form = re.search(self.FORM1_PATTERN, self.html, re.DOTALL).group(1) inputs = dict(re.findall(self.FORM_INPUT_PATTERN, form)) inputs['ints_session'] = re.search(self.INTS_SESSION_PATTERN, form).group(1) inputs['Submit1'] = u"Подтвердить".encode("utf-8") inputs[re.search(self.HIDDEN_INPUT_PATTERN, form).group(1)] = '1' inputs['confirmed_number'] = self.decryptCaptcha(captcha_url, cookies = True) self.logDebug(inputs) self.html = self.load(url, decode = True, cookies = True, post = inputs) if self.WRONG_CAPTCHA_PATTERN in self.html: self.invalidCaptcha() else: break; else: self.fail("Invalid captcha") self.html = self.load("http://ifolder.ru/%s?ints_code=%s" % (file_id, session_id), decode=True, cookies = True) download_url = re.search(self.DOWNLOAD_LINK_PATTERN, self.html).group(1) self.correctCaptcha() self.logDebug("Download URL: %s" % download_url) self.download(download_url)