2021-02-03 17:20:01 +01:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2021-08-10 09:38:59 +02:00
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Model\Frontend;
|
|
|
|
|
2023-12-05 09:43:55 +01:00
|
|
|
use DateTimeImmutable;
|
|
|
|
use DateTimeZone;
|
2023-01-05 10:30:23 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\TimingFormat;
|
|
|
|
|
2021-02-03 17:20:01 +01:00
|
|
|
class OpeningHour
|
|
|
|
{
|
2021-04-13 14:43:04 +02:00
|
|
|
/**
|
2023-12-05 09:43:55 +01:00
|
|
|
* @param mixed[] $daysOfWeek
|
2021-04-13 14:43:04 +02:00
|
|
|
*/
|
2021-02-03 17:20:01 +01:00
|
|
|
private function __construct(
|
2023-12-05 09:43:55 +01:00
|
|
|
private readonly string $opens,
|
|
|
|
private readonly string $closes,
|
|
|
|
private array $daysOfWeek,
|
|
|
|
private readonly ?DateTimeImmutable $from,
|
|
|
|
private readonly ?DateTimeImmutable $through
|
2021-02-03 17:20:01 +01:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2023-12-05 09:43:55 +01:00
|
|
|
public static function createFromArray(array $rawData): OpeningHour
|
2021-02-03 17:20:01 +01:00
|
|
|
{
|
|
|
|
$from = null;
|
|
|
|
if (isset($rawData['from'])) {
|
2023-12-05 09:43:55 +01:00
|
|
|
$timeZone = new DateTimeZone($rawData['from']['timezone'] ?? 'Europe/Berlin');
|
|
|
|
$from = new DateTimeImmutable($rawData['from']['date'], $timeZone);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
$through = null;
|
|
|
|
if (isset($rawData['through'])) {
|
2023-12-05 09:43:55 +01:00
|
|
|
$timeZone = new DateTimeZone($rawData['through']['timezone'] ?? 'Europe/Berlin');
|
|
|
|
$through = new DateTimeImmutable($rawData['through']['date'], $timeZone);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return new self(
|
|
|
|
$rawData['opens'] ?? '',
|
|
|
|
$rawData['closes'] ?? '',
|
2021-04-14 11:27:15 +02:00
|
|
|
$rawData['daysOfWeek'] ?? [],
|
2021-02-03 17:20:01 +01:00
|
|
|
$from,
|
|
|
|
$through
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getOpens(): string
|
|
|
|
{
|
2023-01-05 10:30:23 +01:00
|
|
|
return TimingFormat::format($this->opens);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getCloses(): string
|
|
|
|
{
|
2023-01-05 10:30:23 +01:00
|
|
|
return TimingFormat::format($this->closes);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDaysOfWeek(): array
|
|
|
|
{
|
|
|
|
return $this->daysOfWeek;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDaysOfWeekWithMondayFirstWeekDay(): array
|
|
|
|
{
|
|
|
|
return $this->sortedDaysOfWeek([
|
|
|
|
'Monday',
|
|
|
|
'Tuesday',
|
|
|
|
'Wednesday',
|
|
|
|
'Thursday',
|
|
|
|
'Friday',
|
|
|
|
'Saturday',
|
|
|
|
'Sunday',
|
2021-09-14 14:51:14 +02:00
|
|
|
'PublicHolidays',
|
2021-02-03 17:20:01 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-12-05 09:43:55 +01:00
|
|
|
public function getFrom(): ?DateTimeImmutable
|
2021-02-03 17:20:01 +01:00
|
|
|
{
|
|
|
|
return $this->from;
|
|
|
|
}
|
|
|
|
|
2023-12-05 09:43:55 +01:00
|
|
|
public function getThrough(): ?DateTimeImmutable
|
2021-02-03 17:20:01 +01:00
|
|
|
{
|
|
|
|
return $this->through;
|
|
|
|
}
|
|
|
|
|
2022-11-29 10:02:44 +01:00
|
|
|
public function isSingleDay(): bool
|
|
|
|
{
|
|
|
|
$from = $this->getFrom();
|
|
|
|
$through = $this->getThrough();
|
|
|
|
|
2023-12-05 09:43:55 +01:00
|
|
|
return $from instanceof DateTimeImmutable
|
|
|
|
&& $through instanceof DateTimeImmutable
|
|
|
|
&& $from->format('Ymd') === $through->format('Ymd');
|
2022-11-29 10:02:44 +01:00
|
|
|
}
|
|
|
|
|
2021-02-03 17:20:01 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|