| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | namespace BookStack\Access\Controllers; | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Access\EmailConfirmationService; | 
					
						
							|  |  |  | use BookStack\Access\LoginService; | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | use BookStack\Exceptions\ConfirmationEmailException; | 
					
						
							|  |  |  | use BookStack\Exceptions\UserTokenExpiredException; | 
					
						
							|  |  |  | use BookStack\Exceptions\UserTokenNotFoundException; | 
					
						
							| 
									
										
										
										
											2023-05-19 03:53:39 +08:00
										 |  |  | use BookStack\Http\Controller; | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Users\UserRepo; | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | use Exception; | 
					
						
							|  |  |  | use Illuminate\Http\Request; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ConfirmEmailController extends Controller | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-18 00:45:00 +08:00
										 |  |  |     public function __construct( | 
					
						
							| 
									
										
										
										
											2023-04-04 17:44:38 +08:00
										 |  |  |         protected EmailConfirmationService $emailConfirmationService, | 
					
						
							|  |  |  |         protected LoginService $loginService, | 
					
						
							|  |  |  |         protected UserRepo $userRepo | 
					
						
							| 
									
										
										
										
											2021-08-21 22:49:40 +08:00
										 |  |  |     ) { | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the page to tell the user to check their email | 
					
						
							|  |  |  |      * and confirm their address. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function show() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return view('auth.register-confirm'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Shows a notice that a user's email address has not been confirmed, | 
					
						
							|  |  |  |      * Also has the option to re-send the confirmation email. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function showAwaiting() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-07-18 23:52:31 +08:00
										 |  |  |         $user = $this->loginService->getLastLoginAttemptUser(); | 
					
						
							| 
									
										
										
										
											2021-08-21 22:49:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-18 23:52:31 +08:00
										 |  |  |         return view('auth.user-unconfirmed', ['user' => $user]); | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-12 23:10:14 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Show the form for a user to provide their positive confirmation of their email. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function showAcceptForm(string $token) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return view('auth.register-confirm-accept', ['token' => $token]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Confirms an email via a token and logs the user into the system. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |      * @throws ConfirmationEmailException | 
					
						
							|  |  |  |      * @throws Exception | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-11-12 23:10:14 +08:00
										 |  |  |     public function confirm(Request $request) | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-11-12 23:10:14 +08:00
										 |  |  |         $validated = $this->validate($request, [ | 
					
						
							|  |  |  |             'token' => ['required', 'string'] | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $token = $validated['token']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $userId = $this->emailConfirmationService->checkTokenAndGetUserId($token); | 
					
						
							| 
									
										
										
										
											2021-11-06 08:32:01 +08:00
										 |  |  |         } catch (UserTokenNotFoundException $exception) { | 
					
						
							|  |  |  |             $this->showErrorNotification(trans('errors.email_confirmation_invalid')); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-06 08:32:01 +08:00
										 |  |  |             return redirect('/register'); | 
					
						
							|  |  |  |         } catch (UserTokenExpiredException $exception) { | 
					
						
							|  |  |  |             $user = $this->userRepo->getById($exception->userId); | 
					
						
							|  |  |  |             $this->emailConfirmationService->sendConfirmation($user); | 
					
						
							|  |  |  |             $this->showErrorNotification(trans('errors.email_confirmation_expired')); | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-06 08:32:01 +08:00
										 |  |  |             return redirect('/register/confirm'); | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $user = $this->userRepo->getById($userId); | 
					
						
							|  |  |  |         $user->email_confirmed = true; | 
					
						
							|  |  |  |         $user->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->emailConfirmationService->deleteByUser($user); | 
					
						
							| 
									
										
										
										
											2021-07-18 01:24:50 +08:00
										 |  |  |         $this->showSuccessNotification(trans('auth.email_confirm_success')); | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-15 18:50:28 +08:00
										 |  |  |         return redirect('/login'); | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Resend the confirmation email. | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function resend(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2021-11-05 08:26:55 +08:00
										 |  |  |             'email' => ['required', 'email', 'exists:users,email'], | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |         $user = $this->userRepo->getByEmail($request->get('email')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $this->emailConfirmationService->sendConfirmation($user); | 
					
						
							|  |  |  |         } catch (Exception $e) { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             $this->showErrorNotification(trans('auth.email_confirm_send_error')); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |             return redirect('/register/confirm'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $this->showSuccessNotification(trans('auth.email_confirm_resent')); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 17:47:59 +08:00
										 |  |  |         return redirect('/register/confirm'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |