add new getters to userrepository

This commit is contained in:
Bence Pőcze 2023-09-24 00:42:26 +02:00
parent c25ba2dd28
commit 77c6e6c4e6
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -22,6 +22,23 @@ class UserRepository implements IUserRepository
return \Container::$persistentDataManager->selectFromDb($select, User::class); return \Container::$persistentDataManager->selectFromDb($select, User::class);
} }
public function getByUsername(string $username): ?User
{
$select = new Select(\Container::$dbConnection);
$select->where('username', '=', $username);
return \Container::$persistentDataManager->selectFromDb($select, User::class);
}
public function getByEmailOrUsername(string $emailOrUsername): ?User
{
if (filter_var($emailOrUsername, FILTER_VALIDATE_EMAIL)) {
return $this->getByEmail($emailOrUsername);
}
return $this->getByUsername($emailOrUsername);
}
public function getByGoogleSub(string $sub): ?User public function getByGoogleSub(string $sub): ?User
{ {
$select = new Select(\Container::$dbConnection); $select = new Select(\Container::$dbConnection);