Files
kanboard/app/Controller/AuthController.php
T
2026-06-01 21:23:12 -07:00

79 lines
2.1 KiB
PHP

<?php
namespace Kanboard\Controller;
/**
* Authentication Controller
*
* @package Kanboard\Controller
* @author Frederic Guillot
*/
class AuthController extends BaseController
{
/**
* Display the form login
*
* @access public
* @param array $values
* @param array $errors
*/
public function login(array $values = array(), array $errors = array())
{
if ($this->userSession->isLogged()) {
$this->response->redirect($this->helper->url->to('DashboardController', 'show'));
} else {
$showCaptcha = false;
if (! empty($values['username']) && $this->userLockingModel->hasCaptcha($values['username'])) {
$showCaptcha = true;
} elseif ($this->captchaModel->isLocked($this->request->getIpAddress())) {
$showCaptcha = true;
}
$this->response->html($this->helper->layout->app('auth/index', array(
'captcha' => $showCaptcha,
'errors' => $errors,
'values' => $values,
'no_layout' => true,
'title' => t('Login')
)));
}
}
/**
* Check credentials
*
* @access public
*/
public function check()
{
$values = $this->request->getValues();
if (REMEMBER_ME_AUTH) {
session_set('hasRememberMe', ! empty($values['remember_me']));
}
list($valid, $errors) = $this->authValidator->validateForm($values);
if ($valid) {
$this->redirectAfterLogin();
} else {
$this->login($values, $errors);
}
}
/**
* Logout and destroy session
*
* @access public
*/
public function logout()
{
if (! DISABLE_LOGOUT) {
$this->checkCSRFParam();
$this->sessionManager->close();
$this->response->redirect($this->helper->url->to('AuthController', 'login'));
} else {
$this->response->redirect($this->helper->url->to('DashboardController', 'show'));
}
}
}