koel/app/Services/AuthenticationService.php

42 lines
1.1 KiB
PHP
Raw Normal View History

2023-08-20 22:35:58 +00:00
<?php
namespace App\Services;
use App\Exceptions\InvalidCredentialsException;
use App\Models\User;
use App\Repositories\UserRepository;
use App\Values\CompositeToken;
2023-08-20 22:35:58 +00:00
use Illuminate\Hashing\HashManager;
class AuthenticationService
{
public function __construct(
private UserRepository $userRepository,
private TokenManager $tokenManager,
private HashManager $hash
) {
}
public function login(string $email, string $password): CompositeToken
2023-08-20 22:35:58 +00:00
{
/** @var User|null $user */
$user = $this->userRepository->getFirstWhere('email', $email);
if (!$user || !$this->hash->check($password, $user->password)) {
throw new InvalidCredentialsException();
}
if ($this->hash->needsRehash($user->password)) {
$user->password = $this->hash->make($password);
$user->save();
}
return $this->tokenManager->createCompositeToken($user);
2023-08-20 22:35:58 +00:00
}
public function logoutViaBearerToken(string $token): void
{
$this->tokenManager->deleteCompositionToken($token);
}
}