Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 27
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
CopyServiceProvider
0.00% covered (danger)
0.00%
0 / 27
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 27
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2022-2023 (original work) Open Assessment Technologies SA.
19 *
20 * @author Gabriel Felipe Soares <gabriel.felipe.soares@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\taoDacSimple\model\Copy\ServiceProvider;
26
27use oat\taoDacSimple\model\DataBaseAccess;
28use oat\tao\model\clientConfig\ClientConfigStorage;
29use oat\tao\model\resources\Command\ResourceTransferCommand;
30use oat\taoDacSimple\model\Copy\Service\DacSimplePermissionCopier;
31use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface;
32use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
33
34use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
35use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
36
37class CopyServiceProvider implements ContainerServiceProviderInterface
38{
39    public function __invoke(ContainerConfigurator $configurator): void
40    {
41        $services = $configurator->services();
42        $parameters = $configurator->parameters();
43
44        $services
45            ->set(DacSimplePermissionCopier::class, DacSimplePermissionCopier::class)
46            ->args(
47                [
48                    service(DataBaseAccess::SERVICE_ID),
49                ]
50            )
51            ->tag('tao.copier.permissions');
52
53        $parameters->set('ACL_TRANSFER_MODE', ResourceTransferCommand::ACL_KEEP_ORIGINAL);
54
55        $services
56            ->get(ClientConfigStorage::class)
57            ->call(
58                'setConfigByPath',
59                [
60                    [
61                        'libConfigs' => [
62                            'layout/actions/common' => [
63                                'aclTransferMode' => env('ACL_TRANSFER_MODE')
64                                    ->default('ACL_TRANSFER_MODE')
65                                    ->string(),
66                            ],
67                        ],
68                    ],
69                ]
70            );
71    }
72}