mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 08:36:09 +01:00
203 lines
3.8 KiB
PHP
203 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace Wrm\Events\Domain\Model;
|
|
|
|
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
|
|
|
|
/**
|
|
* Date
|
|
*/
|
|
class Date extends AbstractEntity
|
|
{
|
|
/**
|
|
* @var \DateTime
|
|
*/
|
|
protected $start = null;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*/
|
|
protected $end = null;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $canceled = "no";
|
|
|
|
/**
|
|
* @var null|Date
|
|
*/
|
|
protected $postponedDate;
|
|
|
|
/**
|
|
* @var null|Date
|
|
*/
|
|
protected $originalDate;
|
|
|
|
/**
|
|
* @var \Wrm\Events\Domain\Model\Event
|
|
*/
|
|
protected $event = null;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $canceledLink = '';
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $_languageUid;
|
|
|
|
/**
|
|
* @return \DateTime $start
|
|
*/
|
|
public function getStart()
|
|
{
|
|
return $this->start;
|
|
}
|
|
|
|
/**
|
|
* @param \DateTime $start
|
|
* @return void
|
|
*/
|
|
public function setStart(\DateTime $start)
|
|
{
|
|
$this->start = $start;
|
|
}
|
|
|
|
public function getHasUsefulStartTime(): bool
|
|
{
|
|
return $this->getStart()->format('H:i') !== '00:00';
|
|
}
|
|
|
|
/**
|
|
* @return \DateTime end
|
|
*/
|
|
public function getEnd()
|
|
{
|
|
return $this->end;
|
|
}
|
|
|
|
/**
|
|
* @param \DateTime $end
|
|
* @return void
|
|
*/
|
|
public function setEnd(\DateTime $end)
|
|
{
|
|
$this->end = $end;
|
|
}
|
|
|
|
public function getHasUsefulEndTime(): bool
|
|
{
|
|
return $this->getEnd()->format('H:i') !== '23:59';
|
|
}
|
|
|
|
public function getEndsOnSameDay(): bool
|
|
{
|
|
return $this->getStart()->format('Y-m-d') === $this->getEnd()->format('Y-m-d');
|
|
}
|
|
|
|
/**
|
|
* @return Event
|
|
*/
|
|
public function getEvent(): Event
|
|
{
|
|
return $this->event;
|
|
}
|
|
|
|
/**
|
|
* @param Event $event
|
|
*/
|
|
public function setEvent(Event $event): self
|
|
{
|
|
$this->event = $event;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param int $languageUid
|
|
* @return void
|
|
*/
|
|
public function setLanguageUid($languageUid)
|
|
{
|
|
$this->_languageUid = $languageUid;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getLanguageUid()
|
|
{
|
|
return $this->_languageUid;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCanceled(): string
|
|
{
|
|
return $this->canceled;
|
|
}
|
|
|
|
/**
|
|
* @param string $canceled
|
|
* @return void
|
|
*/
|
|
public function setCanceled(string $canceled)
|
|
{
|
|
$this->canceled = $canceled;
|
|
}
|
|
|
|
public function getPostponedDate(): ?Date
|
|
{
|
|
if ($this->getCanceled() === 'postponed') {
|
|
return $this->postponedDate;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function getOriginalDate(): ?Date
|
|
{
|
|
return $this->originalDate;
|
|
}
|
|
|
|
public function getCanceledLink(): string
|
|
{
|
|
if ($this->getCanceled() === 'canceled') {
|
|
return $this->canceledLink;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
public static function createFromDestinationDataDate(
|
|
array $date,
|
|
bool $canceled
|
|
): self {
|
|
return self::createFromDestinationData(
|
|
new \DateTimeImmutable($date['start'], new \DateTimeZone($date['tz'])),
|
|
new \DateTimeImmutable($date['end'], new \DateTimeZone($date['tz'])),
|
|
$canceled
|
|
);
|
|
}
|
|
|
|
public static function createFromDestinationData(
|
|
\DateTimeImmutable $start,
|
|
\DateTimeImmutable $end,
|
|
bool $canceled
|
|
): self {
|
|
$date = new Date();
|
|
$date->setLanguageUid(-1);
|
|
|
|
$date->setStart(new \DateTime($start->format(\DateTime::W3C), $start->getTimezone()));
|
|
$date->setEnd(new \DateTime($end->format(\DateTime::W3C), $end->getTimezone()));
|
|
|
|
if ($canceled) {
|
|
$date->setCanceled('canceled');
|
|
}
|
|
|
|
return $date;
|
|
}
|
|
}
|