You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Actions\Fortify;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||
|
use Illuminate\Support\Facades\Validator;
|
||
|
use Illuminate\Validation\Rule;
|
||
|
use Laravel\Fortify\Contracts\UpdatesUserProfileInformation;
|
||
|
|
||
|
class UpdateUserProfileInformation implements UpdatesUserProfileInformation
|
||
|
{
|
||
|
/**
|
||
|
* Validate and update the given user's profile information.
|
||
|
*
|
||
|
* @param array<string, string> $input
|
||
|
*/
|
||
|
public function update(User $user, array $input): void
|
||
|
{
|
||
|
Validator::make($input, [
|
||
|
'name' => ['required', 'string', 'max:255'],
|
||
|
'email' => ['required', 'email', 'max:255', Rule::unique('users')->ignore($user->id)],
|
||
|
'photo' => ['nullable', 'mimes:jpg,jpeg,png', 'max:1024'],
|
||
|
])->validateWithBag('updateProfileInformation');
|
||
|
|
||
|
if (isset($input['photo'])) {
|
||
|
$user->updateProfilePhoto($input['photo']);
|
||
|
}
|
||
|
|
||
|
if ($input['email'] !== $user->email &&
|
||
|
$user instanceof MustVerifyEmail) {
|
||
|
$this->updateVerifiedUser($user, $input);
|
||
|
} else {
|
||
|
$user->forceFill([
|
||
|
'name' => $input['name'],
|
||
|
'email' => $input['email'],
|
||
|
])->save();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Update the given verified user's profile information.
|
||
|
*
|
||
|
* @param array<string, string> $input
|
||
|
*/
|
||
|
protected function updateVerifiedUser(User $user, array $input): void
|
||
|
{
|
||
|
$user->forceFill([
|
||
|
'name' => $input['name'],
|
||
|
'email' => $input['email'],
|
||
|
'email_verified_at' => null,
|
||
|
])->save();
|
||
|
|
||
|
$user->sendEmailVerificationNotification();
|
||
|
}
|
||
|
}
|