mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
48 lines
1 KiB
PHP
48 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Auth;
|
|
|
|
use Model\User;
|
|
use Event\AuthEvent;
|
|
|
|
/**
|
|
* Database authentication
|
|
*
|
|
* @package auth
|
|
* @author Frederic Guillot
|
|
*/
|
|
class Database extends Base
|
|
{
|
|
/**
|
|
* Backend name
|
|
*
|
|
* @var string
|
|
*/
|
|
const AUTH_NAME = 'Database';
|
|
|
|
/**
|
|
* Authenticate a user
|
|
*
|
|
* @access public
|
|
* @param string $username Username
|
|
* @param string $password Password
|
|
* @return boolean
|
|
*/
|
|
public function authenticate($username, $password)
|
|
{
|
|
$user = $this->db
|
|
->table(User::TABLE)
|
|
->eq('username', $username)
|
|
->eq('disable_login_form', 0)
|
|
->eq('is_ldap_user', 0)
|
|
->findOne();
|
|
|
|
if (is_array($user) && password_verify($password, $user['password'])) {
|
|
$this->userSession->refresh($user);
|
|
$this->container['dispatcher']->dispatch('auth.success', new AuthEvent(self::AUTH_NAME, $user['id']));
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|