mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Fortify;
|
|
|
|
use App\Enums\Weekday;
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Validation\Rule;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Korridor\LaravelModelValidationRules\Rules\UniqueEloquent;
|
|
use Laravel\Fortify\Contracts\UpdatesUserProfileInformation;
|
|
|
|
class UpdateUserProfileInformation implements UpdatesUserProfileInformation
|
|
{
|
|
/**
|
|
* Validate and update the given user's profile information.
|
|
*
|
|
* @param array<string, mixed> $input
|
|
*
|
|
* @throws ValidationException
|
|
*/
|
|
public function update(User $user, array $input): void
|
|
{
|
|
Validator::make($input, [
|
|
'name' => [
|
|
'required',
|
|
'string',
|
|
'max:255',
|
|
],
|
|
'email' => [
|
|
'required',
|
|
'email',
|
|
'max:255',
|
|
UniqueEloquent::make(User::class, 'email')->ignore($user->id)->query(function (Builder $query) {
|
|
/** @var Builder<User> $query */
|
|
return $query->where('is_placeholder', '=', false);
|
|
}),
|
|
],
|
|
'photo' => [
|
|
'nullable',
|
|
'mimes:jpg,jpeg,png',
|
|
'max:1024',
|
|
],
|
|
'timezone' => [
|
|
'required',
|
|
'timezone:all',
|
|
],
|
|
'week_start' => [
|
|
'required',
|
|
Rule::enum(Weekday::class),
|
|
],
|
|
])->validateWithBag('updateProfileInformation');
|
|
|
|
if (isset($input['photo'])) {
|
|
$user->updateProfilePhoto($input['photo']);
|
|
}
|
|
|
|
if ($input['email'] !== $user->email &&
|
|
$user instanceof MustVerifyEmail) {
|
|
$user->forceFill([
|
|
'name' => $input['name'],
|
|
'email' => $input['email'],
|
|
'email_verified_at' => null,
|
|
'timezone' => $input['timezone'],
|
|
'week_start' => $input['week_start'],
|
|
])->save();
|
|
|
|
$user->sendEmailVerificationNotification();
|
|
} else {
|
|
$user->forceFill([
|
|
'name' => $input['name'],
|
|
'timezone' => $input['timezone'],
|
|
'week_start' => $input['week_start'],
|
|
])->save();
|
|
}
|
|
}
|
|
}
|