# -*- 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
Файл номер [^<]* не найден !!!
' 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)