* @package PHPCI * @subpackage Web */ class SessionController extends Controller { /** * @var \PHPCensor\Store\UserStore */ protected $userStore; /** * Initialise the controller, set up stores and services. */ public function init() { $this->response->disableLayout(); $this->userStore = b8\Store\Factory::getStore('User'); } /** * Handles user login (form and processing) */ public function login() { $isLoginFailure = false; if ($this->request->getMethod() == 'POST') { $token = $this->getParam('token'); if (!isset($token, $_SESSION['login_token']) || $token !== $_SESSION['login_token']) { $isLoginFailure = true; } else { unset($_SESSION['login_token']); $user = $this->userStore->getByEmail($this->getParam('email')); if ($user && password_verify($this->getParam('password', ''), $user->getHash())) { session_regenerate_id(true); $_SESSION['php-censor-user-id'] = $user->getId(); $response = new b8\Http\Response\RedirectResponse(); $response->setHeader('Location', $this->getLoginRedirect()); return $response; } else { $isLoginFailure = true; } } } $form = new b8\Form(); $form->setMethod('POST'); $form->setAction(APP_URL.'session/login'); $email = new b8\Form\Element\Email('email'); $email->setLabel(Lang::get('email_address')); $email->setRequired(true); $email->setContainerClass('form-group'); $email->setClass('form-control'); $form->addField($email); $pwd = new b8\Form\Element\Password('password'); $pwd->setLabel(Lang::get('password')); $pwd->setRequired(true); $pwd->setContainerClass('form-group'); $pwd->setClass('form-control'); $form->addField($pwd); $pwd = new b8\Form\Element\Submit(); $pwd->setValue(Lang::get('log_in')); $pwd->setClass('btn-success'); $form->addField($pwd); $tokenValue = $this->generateToken(); $_SESSION['login_token'] = $tokenValue; $token = new b8\Form\Element\Hidden('token'); $token->setValue($tokenValue); $form->addField($token); $this->view->form = $form->render(); $this->view->failed = $isLoginFailure; return $this->view->render(); } /** * Handles user logout. */ public function logout() { unset($_SESSION['php-censor-user']); unset($_SESSION['php-censor-user-id']); session_destroy(); $response = new b8\Http\Response\RedirectResponse(); $response->setHeader('Location', APP_URL); return $response; } /** * Allows the user to request a password reset email. * @return string */ public function forgotPassword() { if ($this->request->getMethod() == 'POST') { $email = $this->getParam('email', null); $user = $this->userStore->getByEmail($email); if (empty($user)) { $this->view->error = Lang::get('reset_no_user_exists'); return $this->view->render(); } $key = md5(date('Y-m-d') . $user->getHash()); $url = APP_URL; $message = Lang::get('reset_email_body', $user->getName(), $url, $user->getId(), $key); $email = new Email(); $email->setEmailTo($user->getEmail(), $user->getName()); $email->setSubject(Lang::get('reset_email_title', $user->getName())); $email->setBody($message); $email->send(); $this->view->emailed = true; } return $this->view->render(); } /** * Allows the user to change their password after a password reset email. * @param $userId * @param $key * @return string */ public function resetPassword($userId, $key) { $user = $this->userStore->getById($userId); $userKey = md5(date('Y-m-d') . $user->getHash()); if (empty($user) || $key != $userKey) { $this->view->error = Lang::get('reset_invalid'); return $this->view->render(); } if ($this->request->getMethod() == 'POST') { $hash = password_hash($this->getParam('password'), PASSWORD_DEFAULT); $user->setHash($hash); $_SESSION['php-censor-user'] = $this->userStore->save($user); $_SESSION['php-censor-user-id'] = $user->getId(); $response = new b8\Http\Response\RedirectResponse(); $response->setHeader('Location', APP_URL); return $response; } $this->view->id = $userId; $this->view->key = $key; return $this->view->render(); } /** * Get the URL the user was trying to go to prior to being asked to log in. * @return string */ protected function getLoginRedirect() { $rtn = APP_URL; if (!empty($_SESSION['php-censor-login-redirect'])) { $rtn .= $_SESSION['php-censor-login-redirect']; $_SESSION['php-censor-login-redirect'] = null; } return $rtn; } /** Generate a random token. * * @return string */ protected function generateToken() { if (function_exists('openssl_random_pseudo_bytes')) { return bin2hex(openssl_random_pseudo_bytes(16)); } return sprintf("%04x", mt_rand(0, 0xFFFF)) . sprintf("%04x", mt_rand(0, 0xFFFF)) . sprintf("%04x", mt_rand(0, 0xFFFF)) . sprintf("%04x", mt_rand(0, 0xFFFF)); } }