Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
LocalListClassSpecification
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 4
42
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 isSatisfiedBy
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
12
 isBoolean
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 isNotRemoteList
0.00% covered (danger)
0.00%
0 / 2
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) 2021 (original work) Open Assessment Technologies SA;
19 */
20
21declare(strict_types=1);
22
23namespace oat\tao\model\Lists\Business\Specification;
24
25use core_kernel_classes_Class;
26use oat\generis\model\GenerisRdf;
27use oat\tao\model\Specification\ClassSpecificationInterface;
28use oat\tao\model\Lists\Business\Service\RemoteSourcedListOntology;
29
30class LocalListClassSpecification implements ClassSpecificationInterface
31{
32    /** @var ClassSpecificationInterface */
33    private $listClassSpecification;
34
35    public function __construct(ClassSpecificationInterface $listClassSpecification)
36    {
37        $this->listClassSpecification = $listClassSpecification;
38    }
39
40    public function isSatisfiedBy(core_kernel_classes_Class $class): bool
41    {
42        return (
43            $this->listClassSpecification->isSatisfiedBy($class)
44            || $this->isBoolean($class)
45        ) && $this->isNotRemoteList($class);
46    }
47
48    private function isBoolean(core_kernel_classes_Class $class): bool
49    {
50        return $class->getUri() === GenerisRdf::GENERIS_BOOLEAN;
51    }
52
53    private function isNotRemoteList(core_kernel_classes_Class $class): bool
54    {
55        $propertyListType = $class->getProperty(RemoteSourcedListOntology::PROPERTY_LIST_TYPE);
56
57        return $class->getOnePropertyValue($propertyListType) === null;
58    }
59}