mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-05 04:46:12 +01:00
Daniel Siepmann
355e4717b0
DayOfWeek is an enum as defined at https://schema.org/DayOfWeek We missed the PublicHolidays enum value when building `getDaysOfWeekWithMondayFirstWeekDay()` which is used in templates to get ordered result. Opening hours for public holidays were not rendered, which is now fixed.
150 lines
3.5 KiB
PHP
150 lines
3.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyright (C) 2021 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Model\Frontend;
|
|
|
|
class OpeningHour
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $opens;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $closes;
|
|
|
|
/**
|
|
* @var mixed[]
|
|
*/
|
|
private $daysOfWeek;
|
|
|
|
/**
|
|
* @var \DateTimeImmutable|null
|
|
*/
|
|
private $from;
|
|
|
|
/**
|
|
* @var \DateTimeImmutable|null
|
|
*/
|
|
private $through;
|
|
|
|
private function __construct(
|
|
string $opens,
|
|
string $closes,
|
|
array $daysOfWeek,
|
|
?\DateTimeImmutable $from,
|
|
?\DateTimeImmutable $through
|
|
) {
|
|
$this->opens = $opens;
|
|
$this->closes = $closes;
|
|
$this->daysOfWeek = $daysOfWeek;
|
|
$this->from = $from;
|
|
$this->through = $through;
|
|
}
|
|
|
|
/**
|
|
* @return OpeningHour
|
|
*/
|
|
public static function createFromArray(array $rawData)
|
|
{
|
|
$from = null;
|
|
if (isset($rawData['from'])) {
|
|
$timeZone = new \DateTimeZone($rawData['from']['timezone'] ?? 'Europe/Berlin');
|
|
$from = new \DateTimeImmutable($rawData['from']['date'], $timeZone);
|
|
}
|
|
$through = null;
|
|
if (isset($rawData['through'])) {
|
|
$timeZone = new \DateTimeZone($rawData['through']['timezone'] ?? 'Europe/Berlin');
|
|
$through = new \DateTimeImmutable($rawData['through']['date'], $timeZone);
|
|
}
|
|
|
|
return new self(
|
|
$rawData['opens'] ?? '',
|
|
$rawData['closes'] ?? '',
|
|
$rawData['daysOfWeek'] ?? [],
|
|
$from,
|
|
$through
|
|
);
|
|
}
|
|
|
|
public function getOpens(): string
|
|
{
|
|
return $this->opens;
|
|
}
|
|
|
|
public function getCloses(): string
|
|
{
|
|
return $this->closes;
|
|
}
|
|
|
|
public function getDaysOfWeek(): array
|
|
{
|
|
return $this->daysOfWeek;
|
|
}
|
|
|
|
public function getDaysOfWeekWithMondayFirstWeekDay(): array
|
|
{
|
|
return $this->sortedDaysOfWeek([
|
|
'Monday',
|
|
'Tuesday',
|
|
'Wednesday',
|
|
'Thursday',
|
|
'Friday',
|
|
'Saturday',
|
|
'Sunday',
|
|
'PublicHolidays',
|
|
]);
|
|
}
|
|
|
|
public function getFrom(): ?\DateTimeImmutable
|
|
{
|
|
return $this->from;
|
|
}
|
|
|
|
public function getThrough(): ?\DateTimeImmutable
|
|
{
|
|
return $this->through;
|
|
}
|
|
|
|
private function sortedDaysOfWeek(array $sorting): array
|
|
{
|
|
if ($this->daysOfWeek === []) {
|
|
return [];
|
|
}
|
|
|
|
$days = [];
|
|
|
|
foreach ($sorting as $weekDay) {
|
|
$position = array_search($weekDay, $this->daysOfWeek);
|
|
if ($position === false) {
|
|
continue;
|
|
}
|
|
|
|
$days[] = $this->daysOfWeek[$position];
|
|
}
|
|
|
|
return $days;
|
|
}
|
|
}
|