File size: 5.39Kb
<?php
/*
Copyright (c) 2014 LiteDevel
Данная лицензия разрешает лицам, получившим копию данного программного обеспечения
и сопутствующей документации (в дальнейшем именуемыми «Программное Обеспечение»),
безвозмездно использовать Программное Обеспечение в личных целях, включая неограниченное
право на использование, копирование, изменение, добавление, публикацию, распространение,
также как и лицам, которым запрещенно использовать Програмное Обеспечение в коммерческих целях,
предоставляется данное Программное Обеспечение,при соблюдении следующих условий:
Developed by LiteDevel
*/
class restoreController extends Controller {
public function index() {
$this->load->checkLicense();
$this->document->setActiveSection('account');
$this->document->setActiveItem('restore');
if($this->user->isLogged()) {
$this->session->data['error'] = "Вы уже авторизированы!";
$this->response->redirect($this->config->url);
}
$this->getChild(array('common/loginheader', 'common/loginfooter'));
return $this->load->view('account/restore/index', $this->data);
}
public function complete($userid = null, $restoreKey = null) {
$this->document->setActiveSection('account');
$this->document->setActiveItem('restore');
if($this->user->isLogged()) {
$this->session->data['error'] = "Вы уже авторизированы!";
$this->response->redirect($this->config->url);
}
$this->load->model('users');
$error = $this->validate($userid, $restoreKey);
if($error) {
$this->session->data['error'] = $error;
$this->response->redirect($this->config->url);
}
// Генерация пароля
$password = substr(microtime(), 0, 8);
$this->usersModel->updateUser($userid, array('user_password' => $password, 'user_restore_key' => null));
$this->data['password'] = $password;
$this->getChild(array('common/loginheader', 'common/loginfooter'));
return $this->load->view('account/restore/complete', $this->data);
}
public function ajax() {
if($this->user->isLogged()) {
$this->data['status'] = "error";
$this->data['error'] = "Вы уже авторизированы!";
return json_encode($this->data);
}
$this->load->library('mail');
$this->load->model('users');
if($this->request->server['REQUEST_METHOD'] == 'POST') {
$errorPOST = $this->validatePOST();
if(!$errorPOST) {
$email = @$this->request->post['email'];
// Генерация ключа восстановления
$user = $this->usersModel->getUserByEmail($email);
//$restoreKey = md5(microtime());
$restoreKey = time();
$this->usersModel->updateUser($user['user_id'], array('user_password' => $restoreKey));
$mailLib = new mailLibrary();
$mailLib->setFrom($this->config->mail_from);
$mailLib->setSender($this->config->mail_sender);
$mailLib->setTo($email);
$mailLib->setSubject('Восстановление пароля');
$mailData = array();
$mailData['firstname'] = $user['user_firstname'];
$mailData['lastname'] = $user['user_lastname'];
$mailData['email'] = $email;
//$mailData['restorelink'] = ($this->config->url + 'account/restore/complete/' + $restoreKey);
$mailData['restorelink'] = time();
$text = $this->load->view('mail/account/restore', $mailData);
$mailLib->setText($text);
$mailLib->send();
$this->data['status'] = "success";
$this->data['success'] = "На ваш E-Mail отправлена информация для восстановления пароля!";
} else {
$this->data['status'] = "error";
$this->data['error'] = $errorPOST;
}
}
return json_encode($this->data);
}
private function validate($userid, $restoreKey) {
$this->load->library('validate');
$validateLib = new validateLibrary();
$result = null;
if(!$validateLib->$restoreKey || !$this->usersModel->getTotalUsers(array('user_id' => (int)$userid, 'user_restore_key' => $restoreKey))) {
$result = "Указанный ключ восстановления неверный!";
}
return $result;
}
private function validatePOST() {
$this->load->library('validate');
$validateLib = new validateLibrary();
$result = null;
$email = @$this->request->post['email'];
$captcha = @$this->request->post['captcha'];
$captchahash = @$this->session->data['captcha'];
unset($this->session->data['captcha']);
if(!$validateLib->email($email)) {
$result = "Укажите свой реальный E-Mail!";
}
elseif($captcha != $captchahash) {
$result = "Укажите правильный код с картинки!";
}
elseif($this->usersModel->getTotalUsers(array('user_email' => $email)) < 1) {
$result = "Пользователь с указанным E-Mail не зарегистрирован!";
}
return $result;
}
}
?>