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\Config\ConfigContainerInterface;
28use Ampache\Module\Util\UiInterface;
29use Psr\Http\Message\ResponseInterface;
30use Psr\Http\Message\ServerRequestInterface;
31
32final class AddToAllCatalogsAction extends AbstractCatalogAction
33{
34    public const REQUEST_KEY = 'add_to_all_catalogs';
35
36    private ConfigContainerInterface $configContainer;
37
38    private UiInterface $ui;
39
40    public function __construct(
41        UiInterface $ui,
42        ConfigContainerInterface $configContainer
43    ) {
44        parent::__construct($ui);
45        $this->configContainer = $configContainer;
46        $this->ui              = $ui;
47    }
48
49    /**
50     * @param int[] $catalogIds
51     */
52    protected function handle(
53        ServerRequestInterface $request,
54        array $catalogIds
55    ): ?ResponseInterface {
56        catalog_worker('add_to_all_catalogs');
57        $this->ui->showConfirmation(
58            T_('Catalog update process has started'),
59            '',
60            sprintf('%s/admin/catalog.php', $this->configContainer->getWebPath()),
61            0,
62            'confirmation',
63            false
64        );
65
66        return null;
67    }
68}
69