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=1);
24
25namespace Ampache\Module\Application\Label;
26
27use Ampache\Config\ConfigContainerInterface;
28use Ampache\Config\ConfigurationKeyEnum;
29use Ampache\Module\Application\ApplicationActionInterface;
30use Ampache\Module\Authorization\GuiGatekeeperInterface;
31use Ampache\Module\Util\UiInterface;
32use Psr\Http\Message\ResponseInterface;
33use Psr\Http\Message\ServerRequestInterface;
34
35final class DeleteAction implements ApplicationActionInterface
36{
37    public const REQUEST_KEY = 'delete';
38
39    private ConfigContainerInterface $configContainer;
40
41    private UiInterface $ui;
42
43    public function __construct(
44        ConfigContainerInterface $configContainer,
45        UiInterface $ui
46    ) {
47        $this->configContainer = $configContainer;
48        $this->ui              = $ui;
49    }
50
51    public function run(ServerRequestInterface $request, GuiGatekeeperInterface $gatekeeper): ?ResponseInterface
52    {
53        $this->ui->showHeader();
54
55        if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DEMO_MODE)) {
56            $this->ui->showQueryStats();
57            $this->ui->showFooter();
58
59            return null;
60        }
61
62        $labelId = (int) ($request->getQueryParams()['label_id'] ?? 0);
63
64        $this->ui->showConfirmation(
65            T_('Are You Sure?'),
66            T_('This Label will be deleted'),
67            sprintf(
68                '%s/labels.php?action=confirm_delete&label_id=%s',
69                $this->configContainer->getWebPath(),
70                $labelId
71            ),
72            1,
73            'delete_label'
74        );
75
76        $this->ui->showQueryStats();
77        $this->ui->showFooter();
78
79        return null;
80    }
81}
82