mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
126 lines
2.4 KiB
PHP
126 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Auth;
|
|
|
|
use Kanboard\Core\Base;
|
|
use Kanboard\Core\Security\PasswordAuthenticationProviderInterface;
|
|
use Kanboard\Core\Security\SessionCheckProviderInterface;
|
|
use Kanboard\Model\User;
|
|
use Kanboard\User\DatabaseUserProvider;
|
|
|
|
/**
|
|
* Database Authentication Provider
|
|
*
|
|
* @package auth
|
|
* @author Frederic Guillot
|
|
*/
|
|
class DatabaseAuth extends Base implements PasswordAuthenticationProviderInterface, SessionCheckProviderInterface
|
|
{
|
|
/**
|
|
* User properties
|
|
*
|
|
* @access protected
|
|
* @var array
|
|
*/
|
|
protected $userInfo = array();
|
|
|
|
/**
|
|
* Username
|
|
*
|
|
* @access protected
|
|
* @var string
|
|
*/
|
|
protected $username = '';
|
|
|
|
/**
|
|
* Password
|
|
*
|
|
* @access protected
|
|
* @var string
|
|
*/
|
|
protected $password = '';
|
|
|
|
/**
|
|
* Get authentication provider name
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return 'Database';
|
|
}
|
|
|
|
/**
|
|
* Authenticate the user
|
|
*
|
|
* @access public
|
|
* @return boolean
|
|
*/
|
|
public function authenticate()
|
|
{
|
|
$user = $this->db
|
|
->table(User::TABLE)
|
|
->columns('id', 'password')
|
|
->eq('username', $this->username)
|
|
->eq('disable_login_form', 0)
|
|
->eq('is_ldap_user', 0)
|
|
->eq('is_active', 1)
|
|
->findOne();
|
|
|
|
if (! empty($user) && password_verify($this->password, $user['password'])) {
|
|
$this->userInfo = $user;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Check if the user session is valid
|
|
*
|
|
* @access public
|
|
* @return boolean
|
|
*/
|
|
public function isValidSession()
|
|
{
|
|
return $this->user->isActive($this->userSession->getId());
|
|
}
|
|
|
|
/**
|
|
* Get user object
|
|
*
|
|
* @access public
|
|
* @return \Kanboard\User\DatabaseUserProvider
|
|
*/
|
|
public function getUser()
|
|
{
|
|
if (empty($this->userInfo)) {
|
|
return null;
|
|
}
|
|
|
|
return new DatabaseUserProvider($this->userInfo);
|
|
}
|
|
|
|
/**
|
|
* Set username
|
|
*
|
|
* @access public
|
|
* @param string $username
|
|
*/
|
|
public function setUsername($username)
|
|
{
|
|
$this->username = $username;
|
|
}
|
|
|
|
/**
|
|
* Set password
|
|
*
|
|
* @access public
|
|
* @param string $password
|
|
*/
|
|
public function setPassword($password)
|
|
{
|
|
$this->password = $password;
|
|
}
|
|
}
|