Lines 93.43% 185 / 198
Methods 84.44% 38 / 45
Classes 0.00% 0 / 1
Name Lines Methods CRAP
 getDefaults 100.00% 6 / 6 100.00% 1 / 1 1
 withResolvedCollections 100.00% 6 / 6 100.00% 1 / 1 4
 hasScopeList 100.00% 1 / 1 100.00% 1 / 1 1
 hasClusterList 100.00% 1 / 1 100.00% 1 / 1 1
 setServerTime 100.00% 2 / 2 100.00% 1 / 1 1
 getFullScopeList 100.00% 8 / 8 100.00% 1 / 1 5
 getScopeList 100.00% 6 / 6 100.00% 1 / 1 3
 getClusterList 100.00% 6 / 6 100.00% 1 / 1 3
 getImageName 100.00% 10 / 10 100.00% 1 / 1 5
 withOutClusterDuplicates 100.00% 15 / 15 100.00% 1 / 1 8
 getScopeListFromCsv 100.00% 8 / 8 100.00% 1 / 1 3
 getClusterListFromCsv 100.00% 8 / 8 100.00% 1 / 1 3
 [BO\Zmsentities\Schema\Entity] __construct 100.00% 4 / 4 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] exchangeArray 100.00% 4 / 4 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] offsetSet 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] getUnflattenedArray 100.00% 5 / 5 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] getValidator 100.00% 6 / 6 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] isValid 100.00% 2 / 2 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] testValid 100.00% 7 / 7 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] createExample 100.00% 2 / 2 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] getExample 100.00% 5 / 5 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] readJsonSchema 66.66% 6 / 9 0.00% 0 / 1 3.33
 [BO\Zmsentities\Schema\Entity] getEntityName 100.00% 4 / 4 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] setJsonCompressLevel 100.00% 2 / 2 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] jsonSerialize 100.00% 11 / 11 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] __toString 100.00% 2 / 2 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] __get 0.00% 0 / 1 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] __isset 0.00% 0 / 1 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] __set 0.00% 0 / 1 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] __unset 0.00% 0 / 1 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] __clone 100.00% 3 / 3 100.00% 1 / 1 3
 [BO\Zmsentities\Schema\Entity] addData 100.00% 14 / 14 100.00% 1 / 1 6
 [BO\Zmsentities\Schema\Entity] withData 0.00% 0 / 3 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] hasId 100.00% 1 / 1 100.00% 1 / 1 2
 [BO\Zmsentities\Schema\Entity] getId 100.00% 2 / 2 100.00% 1 / 1 3
 [BO\Zmsentities\Schema\Entity] toProperty 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] hasProperty 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] getProperty 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] withProperty 0.00% 0 / 3 0.00% 0 / 1 2
 [BO\Zmsentities\Schema\Entity] withLessData 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] withCleanedUpFormData 100.00% 6 / 6 100.00% 1 / 1 3
 [BO\Zmsentities\Schema\Entity] getResolveLevel 100.00% 1 / 1 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] setResolveLevel 100.00% 2 / 2 100.00% 1 / 1 1
 [BO\Zmsentities\Schema\Entity] withResolveLevel 100.00% 9 / 9 100.00% 1 / 1 5
 [BO\Zmsentities\Schema\Entity] withReference 100.00% 5 / 5 100.00% 1 / 1 2
15class Calldisplay extends Schema\Entity
16{
17    public const string PRIMARY = 'serverTime';
18
19    public static $schema = "calldisplay.json";
20
21    /**
22     * @return (Collection\ClusterList|Collection\ScopeList|Organisation|int)[]
23     *
24     */
25    #[\Override]
26    public function getDefaults()
27    {
28        return [
29            'serverTime' => (new \DateTime())->getTimestamp(),
30            'clusters' => new Collection\ClusterList(),
31            'scopes' => new Collection\ScopeList(),
32            'organisation' => new Organisation(),
33        ];
34    }
35
36    public function withResolvedCollections(mixed $input): static
37    {
38        $input =  (is_object($input)) ? $input->getArrayCopy() : $input;
39        if (Property::__keyExists('scopelist', $input)) {
40            $this->scopes = $this->getScopeListFromCsv($input['scopelist']);
41        }
42        if (Property::__keyExists('clusterlist', $input)) {
43            $this->clusters = $this->getClusterListFromCsv($input['clusterlist']);
44        }
45        return $this;
46    }
47
48    public function hasScopeList(): bool
49    {
50        return (0 < $this->getScopeList()->count());
51    }
52
53    public function hasClusterList(): bool
54    {
55        return (0 < $this->getClusterList()->count());
56    }
57
58    public function setServerTime(mixed $timestamp): static
59    {
60        $this->serverTime = $timestamp;
61        return $this;
62    }
63
64    public function getFullScopeList(): \BO\Zmsentities\Collection\ScopeList
65    {
66        $scopeList = $this->getScopeList();
67        foreach ($this->clusters as $cluster) {
68            if (Property::__keyExists('scopes', $cluster)) {
69                foreach ($cluster['scopes'] as $clusterScope) {
70                    $scope = new Scope($clusterScope);
71                    if (! $scopeList->hasEntity($scope['id'])) {
72                        $scopeList->addEntity($scope);
73                    }
74                }
75            }
76        }
77        return $scopeList;
78    }
79
80    public function getScopeList(): Collection\ScopeList
81    {
82        if (!$this->scopes instanceof Collection\ScopeList) {
83            $scopeList = new Collection\ScopeList();
84            foreach ($this->scopes as $scope) {
85                $scopeList->addEntity(new Scope($scope));
86            }
87            $this->scopes = $scopeList;
88        }
89        return $this->scopes;
90    }
91
92    public function getClusterList(): Collection\ClusterList
93    {
94        if (!$this->clusters instanceof Collection\ClusterList) {
95            $clusterList = new Collection\ClusterList();
96            foreach ($this->clusters as $cluster) {
97                $clusterList->addEntity(new Cluster($cluster));
98            }
99            $this->clusters = $clusterList;
100        }
101        return $this->clusters;
102    }
103
104    public function getImageName(): string
105    {
106        $name = '';
107        if (1 == $this->getScopeList()->count()) {
108            $scope = $this->getScopeList()->getFirst();
109            if ($scope !== null) {
110                $name = "s_" . $scope->id . "_bild";
111            }
112        } elseif (1 == $this->getClusterList()->count()) {
113            $cluster = $this->getClusterList()->getFirst();
114            if ($cluster !== null) {
115                $name = "c_" . $cluster->id . "_bild";
116            }
117        }
118        return $name;
119    }
120
121    public function withOutClusterDuplicates(): self
122    {
123        $calldisplay = new self($this);
124        if ($calldisplay->hasClusterList() && $calldisplay->hasScopeList()) {
125            $clusterScopeList = new Collection\ScopeList();
126            foreach ($calldisplay->clusters as $cluster) {
127                if (Property::__keyExists('scopes', $cluster)) {
128                    foreach ($cluster['scopes'] as $clusterScope) {
129                        $scope = new Scope($clusterScope);
130                        $clusterScopeList->addEntity($scope);
131                    }
132                }
133            }
134            $scopeList = new Collection\ScopeList();
135            foreach ($calldisplay->scopes as $scope) {
136                if (! $clusterScopeList->hasEntity($scope['id'])) {
137                    $scope = new Scope($scope);
138                    $scopeList->addEntity($scope);
139                }
140            }
141            $calldisplay->scopes = $scopeList;
142        }
143        return $calldisplay;
144    }
145
146    protected function getScopeListFromCsv(string $scopeIds = ''): Collection\ScopeList
147    {
148        $scopeList = new Collection\ScopeList();
149        $scopeIds = explode(',', $scopeIds);
150        foreach ($scopeIds as $scopeId) {
151            if ($scopeId === '') {
152                continue;
153            }
154            $scope = new Scope(array('id' => $scopeId));
155            $scopeList->addEntity($scope);
156        }
157        return $scopeList;
158    }
159
160    protected function getClusterListFromCsv(string $clusterIds = ''): Collection\ClusterList
161    {
162        $clusterList = new Collection\ClusterList();
163        $clusterIds = explode(',', $clusterIds);
164        foreach ($clusterIds as $clusterId) {
165            if ($clusterId === '') {
166                continue;
167            }
168            $cluster = new Cluster(array('id' => $clusterId));
169            $clusterList->addEntity($cluster);
170        }
171        return $clusterList;
172    }
173}

Inherited from BO\Zmsentities\Schema\Entity

59    public function __construct(mixed $input = null, int $flags = \ArrayObject::ARRAY_AS_PROPS, string $iterator_class = "ArrayIterator")
60    {
61        /** @var class-string<\ArrayIterator> $iterator_class */
62        parent::__construct($this->getDefaults(), $flags, $iterator_class);
63        if ($input) {
64            $input = $this->getUnflattenedArray($input);
65            $this->addData($input);
66        }
67    }
70    public function exchangeArray(object|array $input): array
71    {
72        parent::exchangeArray($this->getDefaults());
73        $input = $this->getUnflattenedArray($input);
74        $this->addData($input);
75        return $this->getArrayCopy();
76    }
82    public function offsetSet(mixed $key, mixed $value): void
83    {
84        /** @psalm-suppress PossiblyNullArgument */
85        parent::offsetSet($key, $value);
86    }
88    public function getUnflattenedArray(mixed $input): mixed
89    {
90        if (!$input instanceof UnflattedArray) {
91            $input = new UnflattedArray($input);
92            $input->getUnflattenedArray();
93        }
94        $input = $input->getValue();
95        return $input;
96    }
112    public function getValidator(string $locale = 'de_DE', int $resolveLevel = 0): Validator
113    {
114        $jsonSchema = self::readJsonSchema()->withResolvedReferences($resolveLevel);
115        $data = (new Schema($this))->withoutRefs();
116        if (Property::__keyExists('$schema', $data)) {
117            unset($data['$schema']);
118        }
119        $validator = new Validator($data->toJsonObject(true), $jsonSchema, $locale);
120        return $validator;
121    }
128    public function isValid(int $resolveLevel = 0): bool
129    {
130        $validator = $this->getValidator('de_DE', $resolveLevel = 0);
131        return $validator->isValid();
132    }
140    public function testValid(string $locale = 'de_DE', int $resolveLevel = 0): bool
141    {
142        $validator = $this->getValidator($locale, $resolveLevel);
143        if (!$validator->isValid()) {
144            $exception = new \BO\Zmsentities\Exception\SchemaValidation();
145            $exception->setSchemaName($this->getEntityName());
146            $exception->setValidationError($validator->getErrors());
147            throw $exception;
148        }
149        return true;
150    }
157    public static function createExample()
158    {
159        $object = new static();
160        return $object->getExample();
161    }
168    public static function getExample()
169    {
170        $class = get_called_class();
171        $jsonSchema = self::readJsonSchema();
172        if ($jsonSchema->offsetExists('example')) {
173            return new $class($jsonSchema['example']);
174        }
175        return new $class();
176    }
178    protected static function readJsonSchema(): mixed
179    {
180        $class = get_called_class();
181        if (!array_key_exists($class, self::$schemaCache)) {
182            $schemaFile = $class::$schema;
183            if (!is_string($schemaFile)) {
184                throw new \BO\Zmsentities\Exception\SchemaMissingJsonFile(
185                    'Missing JSON-Schema file for ' . $class
186                );
187            }
188            self::$schemaCache[$class] = Loader::asArray($schemaFile);
189        }
190        return self::$schemaCache[$class];
191    }
193    public function getEntityName(): string
194    {
195        $entity = get_class($this);
196        $entity = preg_replace('#.*[\\\]#', '', $entity) ?? '';
197        $entity = strtolower($entity);
198        return $entity;
199    }
201    public function setJsonCompressLevel(mixed $jsonCompressLevel): static
202    {
203        $this->jsonCompressLevel = $jsonCompressLevel;
204        return $this;
205    }
208    public function jsonSerialize(): mixed
209    {
210        $schema = array(
211            '$schema' => 'https://schema.berlin.de/queuemanagement/' . $this->getEntityName() . '.json'
212        );
213        $schema = array_merge($schema, $this->getArrayCopy());
214        if ($this instanceof \BO\Zmsentities\Helper\NoSanitize) {
215            $serialize = $schema;
216        } else {
217            $schema = new Schema($schema);
218            $schema->setDefaults($this->getDefaults());
219            $schema->setJsonCompressLevel($this->jsonCompressLevel);
220            $serialize = $schema->toJsonObject();
221        }
222        return $serialize;
223    }
225    public function __toString()
226    {
227        $encoded = json_encode($this->jsonSerialize(), JSON_HEX_QUOT);
228        return $encoded !== false ? $encoded : '';
229    }
235    public function __get(string $name): mixed
236    {
237        return $this->offsetGet($name);
238    }
240    public function __isset(string $name): bool
241    {
242        return $this->offsetExists($name);
243    }
245    public function __set(string $name, mixed $value): void
246    {
247        $this->offsetSet($name, $value);
248    }
250    public function __unset(string $name): void
251    {
252        $this->offsetUnset($name);
253    }
255    public function __clone()
256    {
257        foreach ($this as $key => $property) {
258            if (is_object($property)) {
259                $this[$key] = clone $property;
260            }
261        }
262    }
268    public function addData(array|object $mergeData): static
269    {
270        foreach ($mergeData as $key => $item) {
271            if (isset($this[$key])) {
272                if ($this[$key] instanceof Entity) {
273                    $this[$key]->setResolveLevel(($this->getResolveLevel() ?? 0) - 1);
274                    $this[$key]->addData($item);
275                } elseif ($this[$key] instanceof \BO\Zmsentities\Collection\Base) {
276                    $this[$key]->exchangeArray([]);
277                    $this[$key]->setResolveLevel(($this->getResolveLevel() ?? 0) - 1);
278                    $this[$key]->addData($item);
279                } elseif (is_array($this[$key])) {
280                    $this[$key] = array_replace_recursive($this[$key], $item);
281                } else {
282                    $this[$key] = $item;
283                }
284            } else {
285                $this[$key] = $item;
286            }
287        }
288        return $this;
289    }
294    public function withData(mixed $mergeData): static
295    {
296        $entity = clone $this;
297        $entity->addData($mergeData);
298        return $entity;
299    }
301    public function hasId(): bool
302    {
303        return (false !== $this->getId()) ? true : false;
304    }
306    public function getId(): mixed
307    {
308        $idName = $this::PRIMARY;
309        return ($this->offsetExists($idName) && $this[$idName]) ? $this[$idName] : false;
310    }
317    public function toProperty()
318    {
319        return new \BO\Zmsentities\Helper\Property($this);
320    }
322    public function hasProperty(mixed $propertyName): mixed
323    {
324        return $this->toProperty()->{$propertyName}->isAvailable();
325    }
327    public function getProperty(string $propertyName, mixed $default = ''): mixed
328    {
329        return $this->toProperty()->{$propertyName}->get($default);
330    }
335    public function withProperty(mixed $propertyName, mixed $newValue): static
336    {
337        $entity = clone $this;
338        $entity[$propertyName] = $newValue;
339        return $entity;
340    }
347    public function withLessData()
348    {
349        return clone $this;
350    }
357    public function withCleanedUpFormData()
358    {
359        $entity = clone $this;
360        if (isset($entity['save'])) {
361            unset($entity['save']);
362        }
363        if (isset($entity['removeImage'])) {
364            unset($entity['removeImage']);
365        }
366        return $entity;
367    }
372    public function getResolveLevel()
373    {
374        return $this->resolveLevel;
375    }
381    public function setResolveLevel($resolveLevel)
382    {
383        $this->resolveLevel = $resolveLevel;
384        return $this;
385    }
393    public function withResolveLevel($resolveLevel): self|array
394    {
395        if ($resolveLevel >= 0) {
396            $entity = clone $this;
397            foreach ($entity as $key => $value) {
398                if ($value instanceof Entity || $value instanceof \BO\Zmsentities\Collection\Base) {
399                    $entity[$key] = $value->withResolveLevel($resolveLevel - 1);
400                } else {
401                    $entity[$key] = $value;
402                }
403            }
404            $entity->setResolveLevel($resolveLevel);
405            return $entity;
406        } else {
407            return $this->withReference();
408        }
409    }
417    public function withReference($additionalData = []): self|array
418    {
419        if (isset($this[$this::PRIMARY])) {
420            $additionalData['$ref'] =
421                $this::$schemaRefPrefix . $this->getEntityName() . '/' . $this[$this::PRIMARY] . '/';
422            return $additionalData;
423        } else {
424            return $this->withResolveLevel(0);
425        }
426    }