| Server IP : 185.252.147.100 / Your IP : 216.73.216.196 Web Server : nginx/1.27.3 System : Linux mitrofanov.ru 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : mitr ( 1000) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/html/kanboard/app/Controller/ |
Upload File : |
<?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'));
}
}
}