1<?php
2/*
3 * vim:set softtabstop=4 shiftwidth=4 expandtab:
4 *
5 * LICENSE: GNU Affero General Public License, version 3 (AGPL-3.0-or-later)
6 * Copyright 2001 - 2020 Ampache.org
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22
23declare(strict_types=0);
24
25namespace Ampache\Module\Application\Admin\User;
26
27use Ampache\Config\ConfigContainerInterface;
28use Ampache\Repository\Model\ModelFactoryInterface;
29use Ampache\Module\User\UserStateTogglerInterface;
30use Ampache\Module\Util\UiInterface;
31use Psr\Http\Message\ResponseInterface;
32use Psr\Http\Message\ServerRequestInterface;
33
34final class EnableAction extends AbstractUserAction
35{
36    public const REQUEST_KEY = 'enable';
37
38    private UiInterface $ui;
39
40    private ModelFactoryInterface $modelFactory;
41
42    private ConfigContainerInterface $configContainer;
43
44    private UserStateTogglerInterface $userStateToggler;
45
46    public function __construct(
47        UiInterface $ui,
48        ModelFactoryInterface $modelFactory,
49        ConfigContainerInterface $configContainer,
50        UserStateTogglerInterface $userStateToggler
51    ) {
52        $this->ui               = $ui;
53        $this->modelFactory     = $modelFactory;
54        $this->configContainer  = $configContainer;
55        $this->userStateToggler = $userStateToggler;
56    }
57
58    protected function handle(ServerRequestInterface $request): ?ResponseInterface
59    {
60        $this->ui->showHeader();
61
62        $user = $this->modelFactory->createUser((int) $request->getQueryParams()['user_id'] ?? 0);
63
64        $this->userStateToggler->enable($user);
65
66        $this->ui->showConfirmation(
67            T_('No Problem'),
68            /* HINT: Username and fullname together: Username (fullname) */
69            sprintf(T_('%s (%s) has been enabled'), $user->username, $user->fullname),
70            'admin/users.php'
71        );
72
73        $this->ui->showQueryStats();
74        $this->ui->showFooter();
75
76        return null;
77    }
78}
79