Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
58.67% covered (warning)
58.67%
44 / 75
55.56% covered (warning)
55.56%
5 / 9
CRAP
0.00% covered (danger)
0.00%
0 / 1
Service
58.67% covered (warning)
58.67%
44 / 75
55.56% covered (warning)
55.56%
5 / 9
83.36
0.00% covered (danger)
0.00%
0 / 1
 parseData
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
3
 searchAll
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 1
30
 fetchList
100.00% covered (success)
100.00%
7 / 7
100.00% covered (success)
100.00%
1 / 1
3
 fetchListRelated
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 1
12
 fetchCombinations
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 fetchLocationCsv
85.71% covered (warning)
85.71%
6 / 7
0.00% covered (danger)
0.00%
0 / 1
2.01
 fetchFromCsv
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
4
 fetchListFromTopic
86.67% covered (warning)
86.67%
13 / 15
0.00% covered (danger)
0.00%
0 / 1
6.09
 readSearchResultList
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * @package 115Mandant
5 * @copyright BerlinOnline Stadtportal GmbH & Co. KG
6 **/
7
8namespace BO\Zmsdldb\File;
9
10use BO\Zmsdldb\Entity\Service as Entity;
11use BO\Zmsdldb\Collection\Services as Collection;
12
13/**
14 * Common methods shared by access classes
15 *
16 * @extends Base<Collection, Entity>
17 */
18class Service extends Base
19{
20    /**
21     * @return Collection
22     */
23    #[\Override]
24    protected function parseData(mixed $data)
25    {
26        $itemList = new Collection();
27        foreach ($data['data'] as $item) {
28            $service = new Entity($item);
29            if ($service->isLocale($this->locale)) {
30                $itemList[$item['id']] = $service;
31            }
32        }
33        return $itemList;
34    }
35
36    /**
37     *
38     * @SuppressWarnings(Param)
39     * @return Collection
40     * @psalm-api
41     */
42    public function searchAll(mixed $querystring, bool|string $service_csv = false, bool|string $location_csv = false)
43    {
44        $serviceList = new Collection($this->fetchList($location_csv)->getArrayCopy());
45        if ($querystring) {
46            $serviceList = new Collection(array_filter((array) $serviceList, function ($item) use ($querystring) {
47                $length = (3 < strlen($querystring)) ? strlen($querystring) : 3;
48                $nameMatch = preg_match('/[' . $querystring . ']{' . $length . ',}/i', $item['name']);
49                $keywordMatch = preg_match('/[' . $querystring . ']{' . $length . ',}/i', $item['meta']['keywords']);
50                return ($nameMatch || $keywordMatch);
51            }));
52        }
53        /** @var array<int|string, Entity> $sortedItems */
54        $sortedItems = $serviceList->sortByName()->getArrayCopy();
55        $serviceList = new Collection($sortedItems);
56        if (!is_string($location_csv)) {
57            return $serviceList;
58        }
59        return $serviceList->containsLocation($location_csv);
60    }
61
62    /**
63     * @return Collection
64     *
65     * @param bool|string $location_csv
66     */
67    public function fetchList(bool|string $location_csv = false)
68    {
69        #echo '<pre>' . print_r($this,1) . '</pre>';exit;
70        $servicelist = $this->getItemList();
71        if (is_string($location_csv) && $location_csv !== '') {
72            $servicelist = new Collection(array_filter((array) $servicelist, function ($item) use ($location_csv) {
73                $service = new Entity($item);
74                return $service->containsLocation($location_csv);
75            }));
76        }
77        return $servicelist;
78    }
79
80    /**
81     *
82     * @return Collection
83     * @psalm-api
84     */
85    public function fetchListRelated(mixed $service_id)
86    {
87        $service = $this->fetchId($service_id);
88        if ($service === false) {
89            return new Collection();
90        }
91        $serviceList = $this->getItemList();
92
93        $relatedList = new Collection(
94            array_filter(
95                (array) $serviceList,
96                function ($item) use ($service) {
97                    $leikaIdentItem = substr(strval($item['leika']), 0, 11);
98                    $leikaIdentService = substr(strval($service['leika']), 0, 11);
99                    return ($leikaIdentItem == $leikaIdentService && $item['id'] != $service['id']);
100                }
101            )
102        );
103        return $relatedList;
104    }
105
106    /**
107     *
108     * @return Collection
109     */
110    public function fetchCombinations(mixed $service_csv)
111    {
112        return $this->fetchList($this->fetchLocationCsv($service_csv));
113    }
114
115    /**
116     *
117     * @return string
118     */
119    protected function fetchLocationCsv(mixed $service_csv)
120    {
121        $locationlist = $this->access()
122            ->fromLocation()
123            ->fetchList($service_csv);
124        $locationIdList = array();
125        foreach ($locationlist as $location) {
126            $locationIdList[] = $location['id'];
127        }
128        return implode(',', $locationIdList);
129    }
130
131    /**
132     *
133     * @return Collection
134     */
135    public function fetchFromCsv(string $service_csv)
136    {
137        $servicelist = new Collection();
138        foreach (explode(',', $service_csv) as $service_id) {
139            $service = $this->fetchId($service_id);
140            if ($service && $service->isLocale($this->locale)) {
141                $servicelist[$service_id] = $service;
142            }
143        }
144        return $servicelist;
145    }
146
147    /**
148     * Return services by topic
149     * If topic is root, include sub-services
150     * root_topic in realations not usable because of multiple roots for one service
151     *
152     * @return Collection
153     * @psalm-api
154     */
155    public function fetchListFromTopic(\BO\Zmsdldb\Entity\Topic $topic)
156    {
157        $itemlist = new Collection();
158        $serviceIds = $topic->getServiceIds();
159        if ($topic['relation']['navi'] && isset($topic['relation']['childs'])) {
160            foreach ($topic['relation']['childs'] as $child) {
161                $childtopic = $this->access()
162                    ->fromTopic()
163                    ->fetchPath($child['path']);
164                if ($childtopic) {
165                    $serviceIds = array_merge($serviceIds, $childtopic->getServiceIds());
166                }
167            }
168        }
169        if (count($serviceIds)) {
170            $servicelistCSV = implode(',', $serviceIds);
171            $servicelist = $this->fetchFromCsv($servicelistCSV);
172            return $servicelist;
173        }
174        /** @var Collection $sorted */
175        $sorted = $itemlist->sortByName();
176        return $sorted;
177    }
178
179    /**
180     *
181     * @return Collection
182     * @psalm-api
183     */
184    public function readSearchResultList(mixed $query, string $service_csv = '')
185    {
186        $servicelist = $this->fetchCombinations($service_csv);
187        $servicelist = new Collection(array_filter((array) $servicelist, function ($item) use ($query) {
188            return false !== strpos($item['name'], $query);
189        }));
190        return $servicelist;
191    }
192}