mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
45 lines
1,009 B
PHP
45 lines
1,009 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Hashing\Hasher;
|
|
|
|
class UserService
|
|
{
|
|
public function __construct(private Hasher $hash)
|
|
{
|
|
}
|
|
|
|
public function createUser(string $name, string $email, string $plainTextPassword, bool $isAdmin): User
|
|
{
|
|
return User::query()->create([
|
|
'name' => $name,
|
|
'email' => $email,
|
|
'password' => $this->hash->make($plainTextPassword),
|
|
'is_admin' => $isAdmin,
|
|
]);
|
|
}
|
|
|
|
public function updateUser(User $user, string $name, string $email, string|null $password, bool $isAdmin): User
|
|
{
|
|
$data = [
|
|
'name' => $name,
|
|
'email' => $email,
|
|
'is_admin' => $isAdmin,
|
|
];
|
|
|
|
if ($password) {
|
|
$data['password'] = $this->hash->make($password);
|
|
}
|
|
|
|
$user->update($data);
|
|
|
|
return $user;
|
|
}
|
|
|
|
public function deleteUser(User $user): void
|
|
{
|
|
$user->delete();
|
|
}
|
|
}
|