xref: /webtrees/app/Http/RequestHandlers/DeleteUser.php (revision a2ae7ae7adc4e4e4194daa1015ae0ff3e965ca0e)
1a0801ffbSGreg Roach<?php
23976b470SGreg Roach
3a0801ffbSGreg Roach/**
4a0801ffbSGreg Roach * webtrees: online genealogy
5a0801ffbSGreg Roach * Copyright (C) 2019 webtrees development team
6a0801ffbSGreg Roach * This program is free software: you can redistribute it and/or modify
7a0801ffbSGreg Roach * it under the terms of the GNU General Public License as published by
8a0801ffbSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9a0801ffbSGreg Roach * (at your option) any later version.
10a0801ffbSGreg Roach * This program is distributed in the hope that it will be useful,
11a0801ffbSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12a0801ffbSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13a0801ffbSGreg Roach * GNU General Public License for more details.
14a0801ffbSGreg Roach * You should have received a copy of the GNU General Public License
15a0801ffbSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16a0801ffbSGreg Roach */
17fcfa147eSGreg Roach
18a0801ffbSGreg Roachdeclare(strict_types=1);
19a0801ffbSGreg Roach
20a0801ffbSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21a0801ffbSGreg Roach
22a0801ffbSGreg Roachuse Fig\Http\Message\StatusCodeInterface;
23a0801ffbSGreg Roachuse Fisharebest\Webtrees\Auth;
24a0801ffbSGreg Roachuse Fisharebest\Webtrees\Log;
25a0801ffbSGreg Roachuse Fisharebest\Webtrees\Services\UserService;
26a0801ffbSGreg Roachuse Psr\Http\Message\ResponseInterface;
27a0801ffbSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
28a0801ffbSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
29a0801ffbSGreg Roachuse Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
30a0801ffbSGreg Roachuse Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
313976b470SGreg Roach
32a0801ffbSGreg Roachuse function response;
33a0801ffbSGreg Roach
34a0801ffbSGreg Roach/**
35a0801ffbSGreg Roach * Delete a user.
36a0801ffbSGreg Roach */
37a0801ffbSGreg Roachclass DeleteUser implements RequestHandlerInterface, StatusCodeInterface
38a0801ffbSGreg Roach{
39a0801ffbSGreg Roach    /** @var UserService */
40a0801ffbSGreg Roach    private $user_service;
41a0801ffbSGreg Roach
42a0801ffbSGreg Roach    /**
43a0801ffbSGreg Roach     * @param UserService   $user_service
44a0801ffbSGreg Roach     */
45a0801ffbSGreg Roach    public function __construct(UserService $user_service)
46a0801ffbSGreg Roach    {
47a0801ffbSGreg Roach        $this->user_service = $user_service;
48a0801ffbSGreg Roach    }
49a0801ffbSGreg Roach
50a0801ffbSGreg Roach    /**
51a0801ffbSGreg Roach     * @param ServerRequestInterface $request
52a0801ffbSGreg Roach     *
53a0801ffbSGreg Roach     * @return ResponseInterface
54a0801ffbSGreg Roach     */
55a0801ffbSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
56a0801ffbSGreg Roach    {
57*a2ae7ae7SGreg Roach        $user_id = (int) $request->getAttribute('user_id');
58a0801ffbSGreg Roach
59a0801ffbSGreg Roach        $user = $this->user_service->find($user_id);
60a0801ffbSGreg Roach
61a0801ffbSGreg Roach        if ($user === null) {
62a0801ffbSGreg Roach            throw new NotFoundHttpException('User ID ' . $user_id . ' not found');
63a0801ffbSGreg Roach        }
64a0801ffbSGreg Roach
65a0801ffbSGreg Roach        if (Auth::isAdmin($user)) {
66a0801ffbSGreg Roach            throw new AccessDeniedHttpException('Cannot delete an administrator');
67a0801ffbSGreg Roach        }
68a0801ffbSGreg Roach
69a0801ffbSGreg Roach        Log::addAuthenticationLog('Deleted user: ' . $user->userName());
70a0801ffbSGreg Roach        $this->user_service->delete($user);
71a0801ffbSGreg Roach
72a0801ffbSGreg Roach        return response('', StatusCodeInterface::STATUS_NO_CONTENT);
73a0801ffbSGreg Roach    }
74a0801ffbSGreg Roach}
75