AzuraCast/src/Entity/Relay.php

128 lines
2.7 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Entity;
use App\Entity\Interfaces\IdentifiableEntityInterface;
use App\OpenApi;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use OpenApi\Attributes as OA;
#[
OA\Schema(type: "object"),
ORM\Entity,
ORM\Table(name: 'relays'),
ORM\HasLifecycleCallbacks
]
class Relay implements IdentifiableEntityInterface
{
use Traits\HasAutoIncrementId;
use Traits\TruncateStrings;
#[
OA\Property(example: "https://custom-url.example.com"),
ORM\Column(length: 255)
]
protected string $base_url;
#[
OA\Property(example: "Relay"),
ORM\Column(length: 100, nullable: true)
]
protected ?string $name = 'Relay';
#[
OA\Property(example: true),
ORM\Column
]
protected bool $is_visible_on_public_pages = true;
#[
OA\Property(example: OpenApi::SAMPLE_TIMESTAMP),
ORM\Column
]
protected int $created_at;
#[
OA\Property(example: OpenApi::SAMPLE_TIMESTAMP),
ORM\Column
]
protected int $updated_at;
/** @var Collection<int, StationRemote> */
#[ORM\OneToMany(mappedBy: 'relay', targetEntity: StationRemote::class)]
protected Collection $remotes;
public function __construct(string $baseUrl)
{
$this->base_url = $this->truncateString($baseUrl);
$this->created_at = time();
$this->updated_at = time();
$this->remotes = new ArrayCollection();
}
#[ORM\PreUpdate]
public function preUpdate(): void
{
$this->updated_at = time();
}
public function getBaseUrl(): string
{
return $this->base_url;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): void
{
$this->name = $this->truncateNullableString($name, 100);
}
public function getIsVisibleOnPublicPages(): bool
{
return $this->is_visible_on_public_pages;
}
public function setIsVisibleOnPublicPages(bool $isVisibleOnPublicPages): void
{
$this->is_visible_on_public_pages = $isVisibleOnPublicPages;
}
public function getCreatedAt(): int
{
return $this->created_at;
}
public function setCreatedAt(int $createdAt): void
{
$this->created_at = $createdAt;
}
public function getUpdatedAt(): int
{
return $this->updated_at;
}
public function setUpdatedAt(int $updatedAt): void
{
$this->updated_at = $updatedAt;
}
/**
* @return Collection<int, StationRemote>
*/
public function getRemotes(): Collection
{
return $this->remotes;
}
}