mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Grocy\Middleware;
|
|
|
|
use Grocy\Services\DatabaseService;
|
|
use Grocy\Services\UsersService;
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
|
|
class ReverseProxyAuthMiddleware extends AuthMiddleware
|
|
{
|
|
public function authenticate(Request $request)
|
|
{
|
|
define('GROCY_EXTERNALLY_MANAGED_AUTHENTICATION', true);
|
|
|
|
$db = DatabaseService::getInstance()->GetDbConnection();
|
|
|
|
// API key authentication is also ok
|
|
$auth = new ApiKeyAuthMiddleware($this->AppContainer, $this->ResponseFactory);
|
|
$user = $auth->authenticate($request);
|
|
if ($user !== null)
|
|
{
|
|
return $user;
|
|
}
|
|
|
|
$username = $request->getHeader(GROCY_REVERSE_PROXY_AUTH_HEADER);
|
|
if (count($username) !== 1)
|
|
{
|
|
// Invalid configuration of Proxy
|
|
throw new \Exception('ReverseProxyAuthMiddleware: Invalid username from proxy: ' . var_dump($username));
|
|
}
|
|
$username = $username[0];
|
|
|
|
$user = $db->users()->where('username', $username)->fetch();
|
|
if ($user == null)
|
|
{
|
|
$user = UsersService::getInstance()->CreateUser($username, '', '', '');
|
|
}
|
|
|
|
return $user;
|
|
}
|
|
|
|
public static function ProcessLogin(array $postParams)
|
|
{
|
|
throw new \Exception('Not implemented');
|
|
}
|
|
}
|