2
0
Fork 0
mirror of https://github.com/koel/koel synced 2024-12-24 03:23:06 +00:00
koel/app/Services/ProxyAuthService.php
2024-07-06 17:44:56 +02:00

37 lines
908 B
PHP

<?php
namespace App\Services;
use App\Models\User;
use App\Values\SSOUser;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Symfony\Component\HttpFoundation\IpUtils;
use Throwable;
class ProxyAuthService
{
public function __construct(private UserService $userService)
{
}
public function tryGetProxyAuthenticatedUserFromRequest(Request $request): ?User
{
if (!self::validateProxyIp($request)) {
return null;
}
try {
return $this->userService->createOrUpdateUserFromSSO(SSOUser::fromProxyAuthRequest($request));
} catch (Throwable $e) {
Log::error($e->getMessage(), ['exception' => $e]);
}
return null;
}
private static function validateProxyIp(Request $request): bool
{
return IpUtils::checkIp($request->ip(), config('koel.proxy_auth.allow_list'));
}
}