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\Catalog;
26
27use Ampache\Repository\Model\Catalog;
28use Ampache\Module\Application\ApplicationActionInterface;
29use Ampache\Module\Application\Exception\AccessDeniedException;
30use Ampache\Module\Authorization\AccessLevelEnum;
31use Ampache\Module\Authorization\GuiGatekeeperInterface;
32use Ampache\Module\Util\Ui;
33use Ampache\Module\Util\UiInterface;
34use Ampache\Repository\UserRepositoryInterface;
35use Psr\Http\Message\ResponseInterface;
36use Psr\Http\Message\ServerRequestInterface;
37
38final class ShowCustomizeCatalogAction implements ApplicationActionInterface
39{
40    public const REQUEST_KEY = 'show_customize_catalog';
41
42    private UiInterface $ui;
43
44    public function __construct(
45        UiInterface $ui
46    ) {
47        $this->ui = $ui;
48    }
49
50    public function run(ServerRequestInterface $request, GuiGatekeeperInterface $gatekeeper): ?ResponseInterface
51    {
52        if ($gatekeeper->mayAccess(AccessLevelEnum::TYPE_INTERFACE, AccessLevelEnum::LEVEL_MANAGER) === false) {
53            throw new AccessDeniedException();
54        }
55
56        $this->ui->showHeader();
57
58        $catalog = Catalog::create_from_id($_REQUEST['catalog_id']);
59        $catalog->format();
60        $users    = static::getUserRepository()->getValidArray();
61        $users[0] = T_('Public Catalog');
62
63        require_once Ui::find_template('show_edit_catalog.inc.php');
64
65        $this->ui->showQueryStats();
66        $this->ui->showFooter();
67
68        return null;
69    }
70
71    /**
72     * @deprecated inject dependency
73     */
74    private static function getUserRepository(): UserRepositoryInterface
75    {
76        global $dic;
77
78        return $dic->get(UserRepositoryInterface::class);
79    }
80}
81