1d403609dSGreg Roach<?php 2d403609dSGreg Roach 3d403609dSGreg Roach/** 4d403609dSGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6d403609dSGreg Roach * This program is free software: you can redistribute it and/or modify 7d403609dSGreg Roach * it under the terms of the GNU General Public License as published by 8d403609dSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9d403609dSGreg Roach * (at your option) any later version. 10d403609dSGreg Roach * This program is distributed in the hope that it will be useful, 11d403609dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12d403609dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13d403609dSGreg Roach * GNU General Public License for more details. 14d403609dSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16d403609dSGreg Roach */ 17fcfa147eSGreg Roach 18d403609dSGreg Roachdeclare(strict_types=1); 19d403609dSGreg Roach 20d403609dSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 21d403609dSGreg Roach 22d403609dSGreg Roachuse Fig\Http\Message\StatusCodeInterface; 23d403609dSGreg Roachuse Fisharebest\Webtrees\FlashMessages; 24d403609dSGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait; 25d403609dSGreg Roachuse Fisharebest\Webtrees\I18N; 26d403609dSGreg Roachuse Fisharebest\Webtrees\Services\UserService; 27f917a287SGreg Roachuse Fisharebest\Webtrees\Tree; 28d403609dSGreg Roachuse Fisharebest\Webtrees\User; 29b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 30d403609dSGreg Roachuse Psr\Http\Message\ResponseInterface; 31d403609dSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 32d403609dSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 3371378461SGreg Roach 34d403609dSGreg Roachuse function redirect; 35d403609dSGreg Roach 36d403609dSGreg Roach/** 37d403609dSGreg Roach * Set a new password. 38d403609dSGreg Roach */ 39d403609dSGreg Roachclass PasswordResetPage implements RequestHandlerInterface, StatusCodeInterface 40d403609dSGreg Roach{ 41d403609dSGreg Roach use ViewResponseTrait; 42d403609dSGreg Roach 43c4943cffSGreg Roach private UserService $user_service; 44d403609dSGreg Roach 45d403609dSGreg Roach /** 46d403609dSGreg Roach * @param UserService $user_service 47d403609dSGreg Roach */ 48d403609dSGreg Roach public function __construct(UserService $user_service) 49d403609dSGreg Roach { 50d403609dSGreg Roach $this->user_service = $user_service; 51d403609dSGreg Roach } 52d403609dSGreg Roach 53d403609dSGreg Roach /** 54d403609dSGreg Roach * @param ServerRequestInterface $request 55d403609dSGreg Roach * 56d403609dSGreg Roach * @return ResponseInterface 57d403609dSGreg Roach */ 58d403609dSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 59d403609dSGreg Roach { 60b55cbc6bSGreg Roach $tree = Validator::attributes($request)->treeOptional(); 61f917a287SGreg Roach $token = $request->getAttribute('token'); 62d403609dSGreg Roach $title = I18N::translate('Set a new password'); 63d403609dSGreg Roach $user = $this->user_service->findByToken($token); 64d403609dSGreg Roach 65d403609dSGreg Roach if ($user instanceof User) { 66ef5d23f1SGreg Roach return $this->viewResponse('password-reset-page', [ 67ef5d23f1SGreg Roach 'title' => $title, 68ef5d23f1SGreg Roach 'tree' => $tree, 69ef5d23f1SGreg Roach 'user' => $user, 70ef5d23f1SGreg Roach 'token' => $token, 71ef5d23f1SGreg Roach ]); 72d403609dSGreg Roach } 73d403609dSGreg Roach 74d403609dSGreg Roach $message1 = I18N::translate('The password reset link has expired.'); 75d403609dSGreg Roach $message2 = I18N::translate('Please try again.'); 76d403609dSGreg Roach $message = $message1 . '<br>' . $message2; 77d403609dSGreg Roach 78d403609dSGreg Roach FlashMessages::addMessage($message, 'danger'); 79d403609dSGreg Roach 8081bf3221SGreg Roach return redirect(route(PasswordRequestPage::class, ['tree' => $tree?->name()])); 81d403609dSGreg Roach } 82d403609dSGreg Roach} 83