Code Coverage  | 
      ||||||||||
Lines  | 
       Functions and Methods  | 
       Classes and Traits  | 
      ||||||||
| Total |         | 
       100.00%  | 
       60 / 60  | 
               | 
       100.00%  | 
       3 / 3  | 
       CRAP |         | 
       100.00%  | 
       1 / 1  | 
      
| ExchangeRequestscope |         | 
       100.00%  | 
       60 / 60  | 
               | 
       100.00%  | 
       3 / 3  | 
       9 |         | 
       100.00%  | 
       1 / 1  | 
      
| readEntity |         | 
       100.00%  | 
       27 / 27  | 
               | 
       100.00%  | 
       1 / 1  | 
       3 | |||
| readSubjectList |         | 
       100.00%  | 
       11 / 11  | 
               | 
       100.00%  | 
       1 / 1  | 
       2 | |||
| readPeriodList |         | 
       100.00%  | 
       22 / 22  | 
               | 
       100.00%  | 
       1 / 1  | 
       4 | |||
| 1 | <?php | 
| 2 | |
| 3 | namespace BO\Zmsdb; | 
| 4 | |
| 5 | use BO\Zmsentities\Exchange; | 
| 6 | |
| 7 | class ExchangeRequestscope extends Base | 
| 8 | { | 
| 9 | protected $groupBy = array( | 
| 10 | 'month' => '%Y-%m', | 
| 11 | 'day' => '%Y-%m-%d', | 
| 12 | 'hour' => '%H-%i' | 
| 13 | ); | 
| 14 | |
| 15 | public function readEntity( | 
| 16 | $subjectid, | 
| 17 | \DateTimeInterface $datestart, | 
| 18 | \DateTimeInterface $dateend, | 
| 19 | $period = 'day' | 
| 20 | ) { | 
| 21 | $scope = (new Scope())->readEntity($subjectid); | 
| 22 | $entity = new Exchange(); | 
| 23 | $entity['title'] = "Dienstleistungsstatistik " . $scope->contact->name . " " . $scope->shortName; | 
| 24 | $entity->setPeriod($datestart, $dateend, $period); | 
| 25 | $entity->addDictionaryEntry('scopeid', 'string', 'ID of a scope', 'scope.id'); | 
| 26 | $entity->addDictionaryEntry('departmentid', 'string', 'ID of a department', ''); | 
| 27 | $entity->addDictionaryEntry('organisationid', 'string', 'ID of an organisation', ''); | 
| 28 | $entity->addDictionaryEntry('date', 'string', 'Date of entry'); | 
| 29 | $entity->addDictionaryEntry('name', 'string', 'Name of request'); | 
| 30 | $entity->addDictionaryEntry('requestscount', 'number', 'Amount of requests'); | 
| 31 | $entity->addDictionaryEntry('processingtime', 'number', 'Average processing time in minutes'); | 
| 32 | $subjectIdList = explode(',', $subjectid); | 
| 33 | |
| 34 | foreach ($subjectIdList as $subjectid) { | 
| 35 | $raw = $this | 
| 36 | ->getReader() | 
| 37 | ->fetchAll( | 
| 38 | constant("\BO\Zmsdb\Query\ExchangeRequestscope::QUERY_READ_REPORT"), | 
| 39 | [ | 
| 40 | 'scopeid' => $subjectid, | 
| 41 | 'datestart' => $datestart->format('Y-m-d'), | 
| 42 | 'dateend' => $dateend->format('Y-m-d'), | 
| 43 | 'groupby' => $this->groupBy[$period] | 
| 44 | ] | 
| 45 | ); | 
| 46 | foreach ($raw as $entry) { | 
| 47 | $entity->addDataSet(array_values($entry)); | 
| 48 | } | 
| 49 | } | 
| 50 | return $entity; | 
| 51 | } | 
| 52 | |
| 53 | public function readSubjectList() | 
| 54 | { | 
| 55 | $raw = $this->getReader()->fetchAll(Query\ExchangeRequestscope::QUERY_SUBJECTS, []); | 
| 56 | $entity = new Exchange(); | 
| 57 | $entity['title'] = "Dienstleistungsstatistik"; | 
| 58 | $entity->setPeriod(new \DateTimeImmutable(), new \DateTimeImmutable()); | 
| 59 | $entity->addDictionaryEntry('subject', 'string', 'Standort ID', 'scope.id'); | 
| 60 | $entity->addDictionaryEntry('periodstart', 'string', 'Datum von'); | 
| 61 | $entity->addDictionaryEntry('periodend', 'string', 'Datum bis'); | 
| 62 | $entity->addDictionaryEntry('description', 'string', 'Beschreibung des Standortes'); | 
| 63 | foreach ($raw as $entry) { | 
| 64 | $entity->addDataSet(array_values($entry)); | 
| 65 | } | 
| 66 | return $entity; | 
| 67 | } | 
| 68 | |
| 69 | public function readPeriodList($subjectid, $period = 'day') | 
| 70 | { | 
| 71 | $scope = (new Scope())->readEntity($subjectid); | 
| 72 | $entity = new Exchange(); | 
| 73 | $entity['title'] = "Dienstleistungsstatistik " . $scope->contact->name . " " . $scope->shortName; | 
| 74 | $entity->setPeriod(new \DateTimeImmutable(), new \DateTimeImmutable(), $period); | 
| 75 | $entity->addDictionaryEntry('period'); | 
| 76 | |
| 77 | $montsList = $this->getReader()->fetchAll( | 
| 78 | constant("\BO\Zmsdb\Query\ExchangeRequestscope::QUERY_PERIODLIST_MONTH"), | 
| 79 | [ | 
| 80 | 'scopeid' => $subjectid, | 
| 81 | ] | 
| 82 | ); | 
| 83 | $raw = []; | 
| 84 | foreach ($montsList as $month) { | 
| 85 | $date = new \DateTimeImmutable($month['date']); | 
| 86 | $raw[$date->format('Y')][] = $month['date']; | 
| 87 | rsort($raw[$date->format('Y')]); | 
| 88 | } | 
| 89 | krsort($raw); | 
| 90 | |
| 91 | foreach ($raw as $year => $months) { | 
| 92 | $entity->addDataSet([$year]); | 
| 93 | foreach ($months as $month) { | 
| 94 | $entity->addDataSet([$month]); | 
| 95 | } | 
| 96 | } | 
| 97 | return $entity; | 
| 98 | } | 
| 99 | } |