diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-10-24 22:18:11 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-10-24 22:18:11 +0100 |
| commit | a49d0e3f7d5d6400af7be7d1e718b56f3b490f38 (patch) | |
| tree | 5a64496652afb9cec1147e3e35ad8b5d33355d56 /app/Http/RequestHandlers/AccountDelete.php | |
| parent | 57bfa969ae5adb60a68faad19182a580933467cd (diff) | |
| download | webtrees-a49d0e3f7d5d6400af7be7d1e718b56f3b490f38.tar.gz webtrees-a49d0e3f7d5d6400af7be7d1e718b56f3b490f38.tar.bz2 webtrees-a49d0e3f7d5d6400af7be7d1e718b56f3b490f38.zip | |
Fix: #2691 - Routing for account edit/delete
Diffstat (limited to 'app/Http/RequestHandlers/AccountDelete.php')
| -rw-r--r-- | app/Http/RequestHandlers/AccountDelete.php | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/app/Http/RequestHandlers/AccountDelete.php b/app/Http/RequestHandlers/AccountDelete.php new file mode 100644 index 0000000000..b992b7603e --- /dev/null +++ b/app/Http/RequestHandlers/AccountDelete.php @@ -0,0 +1,69 @@ +<?php + +/** + * webtrees: online genealogy + * Copyright (C) 2019 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +declare(strict_types=1); + +namespace Fisharebest\Webtrees\Http\RequestHandlers; + +use Fisharebest\Webtrees\Auth; +use Fisharebest\Webtrees\Services\UserService; +use Fisharebest\Webtrees\Tree; +use Fisharebest\Webtrees\User; +use Psr\Http\Message\ResponseInterface; +use Psr\Http\Message\ServerRequestInterface; +use Psr\Http\Server\RequestHandlerInterface; + +use function redirect; +use function route; + +/** + * Delete a user account. + */ +class AccountDelete implements RequestHandlerInterface +{ + /** @var UserService */ + private $user_service; + + /** + * AccountController constructor. + * + * @param UserService $user_service + */ + public function __construct(UserService $user_service) + { + $this->user_service = $user_service; + } + + /** + * @param ServerRequestInterface $request + * + * @return ResponseInterface + */ + public function handle(ServerRequestInterface $request): ResponseInterface + { + $tree = $request->getAttribute('tree'); + $user = $request->getAttribute('user'); + + // An administrator can only be deleted by another administrator + if ($user instanceof User && !$user->getPreference('canadmin')) { + $this->user_service->delete($user); + Auth::logout(); + } + + return redirect(route(AccountEdit::class, ['tree' => $tree instanceof Tree ? $tree->name() : null])); + } +} |
