mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-06 00:24:08 +01:00
* [ADD] Using URL routing * [ADD] Using dependency injection * [MOD] Big app structure changes
157 lines
4.1 KiB
PHP
157 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2017, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Auth\Browser;
|
|
|
|
use SP\Auth\AuthInterface;
|
|
use SP\Config\Config;
|
|
use SP\Config\ConfigData;
|
|
use SP\Core\Traits\InjectableTrait;
|
|
use SP\DataModel\UserLoginData;
|
|
|
|
/**
|
|
* Class Browser
|
|
*
|
|
* Autentificación basada en credenciales del navegador
|
|
*
|
|
* @package SP\Auth\Browser
|
|
*/
|
|
class Browser implements AuthInterface
|
|
{
|
|
use InjectableTrait;
|
|
|
|
/** @var ConfigData */
|
|
protected $ConfigData;
|
|
|
|
/**
|
|
* Browser constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->injectDependencies();
|
|
}
|
|
|
|
/**
|
|
* @param Config $config
|
|
*/
|
|
public function inject(Config $config)
|
|
{
|
|
$this->Config = $config;
|
|
$this->ConfigData = $config->getConfigData();
|
|
}
|
|
|
|
/**
|
|
* Autentificar al usuario
|
|
*
|
|
* @param UserLoginData $UserData Datos del usuario
|
|
* @return BrowserAuthData
|
|
*/
|
|
public function authenticate(UserLoginData $UserData)
|
|
{
|
|
$AuthData = new BrowserAuthData();
|
|
$AuthData->setAuthGranted($this->isAuthGranted());
|
|
|
|
if (!empty($UserData->getLogin()) && !empty($UserData->getLoginPass())) {
|
|
return $AuthData->setAuthenticated($this->checkServerAuthUser($UserData->getLogin()));
|
|
}
|
|
|
|
if ($this->ConfigData->isAuthBasicAutoLoginEnabled()) {
|
|
$authUser = Browser::getServerAuthUser();
|
|
$authPass = $this->getAuthPass();
|
|
|
|
if ($authUser !== null && $authPass !== null) {
|
|
$UserData->setLogin($authUser);
|
|
$UserData->setLoginPass($authPass);
|
|
|
|
$AuthData->setName($authUser);
|
|
return $AuthData->setAuthenticated(true);
|
|
}
|
|
|
|
return $AuthData->setAuthenticated(false);
|
|
}
|
|
|
|
return $AuthData->setAuthenticated($this->checkServerAuthUser($UserData->getLogin()));
|
|
}
|
|
|
|
/**
|
|
* Indica si es requerida para acceder a la aplicación
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function isAuthGranted()
|
|
{
|
|
return $this->ConfigData->isAuthBasicAutoLoginEnabled();
|
|
}
|
|
|
|
/**
|
|
* Comprobar si el usuario es autentificado por el servidor web
|
|
*
|
|
* @param $login string El login del usuario a comprobar
|
|
* @return bool
|
|
*/
|
|
public function checkServerAuthUser($login)
|
|
{
|
|
$domain = $this->ConfigData->getAuthBasicDomain();
|
|
|
|
if (!empty($domain)) {
|
|
$login = self::getServerAuthUser() . '@' . $domain;
|
|
}
|
|
|
|
$authUser = self::getServerAuthUser();
|
|
|
|
return $authUser === null ?: $authUser === $login;
|
|
}
|
|
|
|
/**
|
|
* Devolver el nombre del usuario autentificado por el servidor web
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getServerAuthUser()
|
|
{
|
|
if (isset($_SERVER['PHP_AUTH_USER']) && !empty($_SERVER['PHP_AUTH_USER'])) {
|
|
return $_SERVER['PHP_AUTH_USER'];
|
|
}
|
|
|
|
if (isset($_SERVER['REMOTE_USER']) && !empty($_SERVER['REMOTE_USER'])) {
|
|
return $_SERVER['REMOTE_USER'];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Devolver la clave del usuario autentificado por el servidor web
|
|
*
|
|
* @return string|null
|
|
*/
|
|
protected function getAuthPass()
|
|
{
|
|
if (isset($_SERVER['PHP_AUTH_PW']) && !empty($_SERVER['PHP_AUTH_PW'])) {
|
|
return $_SERVER['PHP_AUTH_PW'];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
} |