mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-14 01:06:12 +01:00
134 lines
3.6 KiB
PHP
134 lines
3.6 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;
|
|
|
|
use DateTimeImmutable;
|
|
use DateTimeZone;
|
|
use WerkraumMedia\ThueCat\Domain\TimingFormat;
|
|
|
|
class OpeningHour
|
|
{
|
|
/**
|
|
* @param mixed[] $daysOfWeek
|
|
*/
|
|
private function __construct(
|
|
private readonly string $opens,
|
|
private readonly string $closes,
|
|
private array $daysOfWeek,
|
|
private readonly ?DateTimeImmutable $from,
|
|
private readonly ?DateTimeImmutable $through
|
|
) {
|
|
}
|
|
|
|
public static function createFromArray(array $rawData): OpeningHour
|
|
{
|
|
$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 TimingFormat::format($this->opens);
|
|
}
|
|
|
|
public function getCloses(): string
|
|
{
|
|
return TimingFormat::format($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;
|
|
}
|
|
|
|
public function isSingleDay(): bool
|
|
{
|
|
$from = $this->getFrom();
|
|
$through = $this->getThrough();
|
|
|
|
return $from instanceof DateTimeImmutable
|
|
&& $through instanceof DateTimeImmutable
|
|
&& $from->format('Ymd') === $through->format('Ymd');
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|