Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
CopyClassTask
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 1
6
 getClassCopier
0.00% covered (danger)
0.00%
0 / 1
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 Andrei Shapiro <andrei.shapiro@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\tao\model\task;
26
27use oat\tao\model\resources\Command\ResourceTransferCommand;
28use oat\tao\model\resources\Contract\ResourceTransferInterface;
29use oat\tao\model\resources\Service\ResourceTransferProxy;
30use Throwable;
31use oat\oatbox\action\Action;
32use oat\oatbox\reporting\Report;
33use oat\oatbox\log\LoggerAwareTrait;
34use oat\generis\model\OntologyAwareTrait;
35use oat\tao\model\taskQueue\Task\TaskAwareTrait;
36use Laminas\ServiceManager\ServiceLocatorAwareTrait;
37use oat\tao\model\taskQueue\Task\TaskAwareInterface;
38use Laminas\ServiceManager\ServiceLocatorAwareInterface;
39use oat\oatbox\log\logger\extender\ContextExtenderInterface;
40
41class CopyClassTask implements Action, TaskAwareInterface, ServiceLocatorAwareInterface
42{
43    use OntologyAwareTrait;
44    use ServiceLocatorAwareTrait;
45    use LoggerAwareTrait;
46    use TaskAwareTrait;
47
48    public const PARAM_CLASS_URI = 'classUri';
49    public const PARAM_DESTINATION_CLASS_URI = 'destinationClassUri';
50    public const PARAM_ACL_MODE = 'aclMode';
51
52    public function __invoke($params): Report
53    {
54        try {
55            $result = $this->getClassCopier()->transfer(
56                new ResourceTransferCommand(
57                    $params[self::PARAM_CLASS_URI],
58                    $params[self::PARAM_DESTINATION_CLASS_URI],
59                    $params[self::PARAM_ACL_MODE] ?? null,
60                    ResourceTransferCommand::TRANSFER_MODE_COPY
61                )
62            );
63
64            return Report::createSuccess(__('The class has been copied.'), $this->getClass($result->getDestination()));
65        } catch (Throwable $exception) {
66            $this->logError($exception->getMessage(), [ContextExtenderInterface::CONTEXT_EXCEPTION => $exception]);
67
68            return Report::createError(__('Failed to copy class.'));
69        }
70    }
71
72    private function getClassCopier(): ResourceTransferInterface
73    {
74        return $this->getServiceLocator()->getContainer()->get(ResourceTransferProxy::class);
75    }
76}