Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryContainerRegistry
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 5
90
0.00% covered (danger)
0.00%
0 / 1
 getExtension
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getConfigId
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 registerContainerType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 fromJson
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
12
 getDeliveryContainer
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 1
12
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) 2016 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\taoDelivery\model\container\delivery;
22
23use oat\oatbox\AbstractRegistry;
24use Zend\ServiceManager\ServiceLocatorAwareInterface;
25use Zend\ServiceManager\ServiceLocatorAwareTrait;
26use oat\oatbox\Configurable;
27
28class DeliveryContainerRegistry extends AbstractRegistry implements ServiceLocatorAwareInterface
29{
30    use ServiceLocatorAwareTrait;
31
32    protected function getExtension()
33    {
34        return $this
35            ->getServiceLocator()
36            ->get(\common_ext_ExtensionsManager::SERVICE_ID)
37            ->getExtensionById('taoDelivery');
38    }
39
40    protected function getConfigId()
41    {
42        return 'deliveryContainerRegistry';
43    }
44
45    public function registerContainerType($id, Configurable $container)
46    {
47        $this->set($id, $container);
48    }
49
50    public function fromJson($string)
51    {
52        $data = json_decode($string, true);
53        if (!isset($data['container']) || !isset($data['params'])) {
54            throw new \common_exception_InconsistentData('Invalid container json');
55        }
56        return $this->getDeliveryContainer($data['container'], $data['params']);
57    }
58
59    public function getDeliveryContainer($id, $params)
60    {
61        $container = $this->get($id);
62        if (empty($container)) {
63            throw new \common_exception_InconsistentData('Conainer "' . $id . '" not found.');
64        }
65        $container->setId($id);
66        $container->setRuntimeParams($params);
67        if ($container instanceof ServiceLocatorAwareInterface) {
68            $container->setServiceLocator($this->getServiceLocator());
69        }
70        return $container;
71    }
72}