File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/acl/src/Traits/ResetsPasswords.php
Back
<?php namespace Botble\ACL\Traits; use Botble\Base\Rules\EmailRule; use Illuminate\Auth\Events\PasswordReset; use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Password; use Illuminate\Support\Str; use Illuminate\Validation\ValidationException; trait ResetsPasswords { use RedirectsUsers; public function showResetForm(Request $request, $token = null) { return null; } public function reset(Request $request) { $request->validate($this->rules(), $this->validationErrorMessages()); // Here we will attempt to reset the user's password. If it is successful we // will update the password on an actual user model and persist it to the // database. Otherwise, we will parse the error and return the response. $response = $this->broker()->reset($this->credentials($request), function ($user, $password) { $this->resetPassword($user, $password); }); // If the password was successfully reset, we will redirect the user back to // the application's home authenticated view. If there is an error we can // redirect them back to where they came from with their error message. return $response == Password::PASSWORD_RESET ? $this->sendResetResponse($request, $response) : $this->sendResetFailedResponse($request, $response); } protected function rules(): array { return [ 'token' => ['required', 'string'], 'email' => ['required', new EmailRule()], 'password' => ['required', 'confirmed', 'min:6'], ]; } protected function validationErrorMessages(): array { return []; } public function broker() { return Password::broker(); } protected function credentials(Request $request): array { return $request->only( 'email', 'password', 'password_confirmation', 'token' ); } protected function resetPassword($user, $password): void { $this->setUserPassword($user, $password); $user->setRememberToken(Str::random(60)); $user->save(); event(new PasswordReset($user)); $this->guard()->login($user); } protected function setUserPassword($user, $password) { // @phpstan-ignore-next-line $user->password = Hash::make($password); } protected function guard() { return Auth::guard(); } protected function sendResetResponse(Request $request, $response) { if ($request->wantsJson()) { return new JsonResponse(['message' => trans($response)], 200); } return redirect($this->redirectPath()) ->with('status', trans($response)); } protected function sendResetFailedResponse(Request $request, $response) { if ($request->wantsJson()) { throw ValidationException::withMessages([ 'email' => [trans($response)], ]); } return redirect()->back() ->withInput($request->only('email')) ->withErrors(['email' => trans($response)]); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.11 |
proxy
|
phpinfo
|
Settings