AzuraCast/src/Entity/Podcast.php

199 lines
4.1 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Entity;
use App\Annotations\AuditLog;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Table(name="podcast")
* @ORM\Entity
*
* @AuditLog\Auditable
*/
class Podcast
{
use Traits\TruncateStrings;
public const DIR_PODCAST_ARTWORK = '.podcast_art';
/**
* @ORM\Id
* @ORM\Column(name="id", type="guid", unique=true)
* @ORM\GeneratedValue(strategy="UUID")
*
* @var string|null
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="StorageLocation")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="storage_location_id", referencedColumnName="id", onDelete="CASCADE")
* })
*
* @var StorageLocation
*/
protected $storage_location;
/**
* @ORM\Column(name="title", type="string", length=255)
*
* @Assert\NotBlank
*
* @var string The name of your podcast
*/
protected $title;
/**
* @ORM\Column(name="link", type="string", length=255, nullable=true)
*
* @var string|null A link to your website
*/
protected $link;
/**
* @ORM\Column(name="description", type="text")
*
* @Assert\NotBlank
*
* @var string A description of your podcast
*/
protected $description;
/**
* @ORM\Column(name="language", type="string", length=2)
*
* @Assert\NotBlank
*
* @var string The ISO 639-1 language code for your podcast
*/
protected $language;
/**
* @ORM\Column(name="art_updated_at", type="integer")
* @AuditLog\AuditIgnore()
*
* @var int The latest time (UNIX timestamp) when album art was updated.
*/
protected $art_updated_at = 0;
/**
* @ORM\OneToMany(targetEntity="PodcastCategory", mappedBy="podcast")
*
* @var Collection
*/
protected $categories;
/**
* @ORM\OneToMany(targetEntity="PodcastEpisode", mappedBy="podcast")
*
* @var Collection
*/
protected $episodes;
public function __construct(StorageLocation $storageLocation)
{
$this->storage_location = $storageLocation;
$this->categories = new ArrayCollection();
$this->episodes = new ArrayCollection();
}
public function getId(): ?string
{
return $this->id;
}
public function getStorageLocation(): StorageLocation
{
return $this->storage_location;
}
public function getTitle(): string
{
return $this->title;
}
public function setTitle(string $title): self
{
$this->title = $this->truncateString($title);
return $this;
}
public function getLink(): ?string
{
return $this->link;
}
public function setLink(?string $link): self
{
$this->link = $this->truncateString($link);
return $this;
}
public function getDescription(): string
{
return $this->description;
}
public function setDescription(string $description): self
{
$this->description = $this->truncateString($description);
return $this;
}
public function getLanguage(): string
{
return $this->language;
}
public function setLanguage(string $language): self
{
$this->language = $this->truncateString($language);
return $this;
}
public function getArtUpdatedAt(): int
{
return $this->art_updated_at;
}
public function setArtUpdatedAt(int $art_updated_at): self
{
$this->art_updated_at = $art_updated_at;
return $this;
}
/**
* @return Collection|PodcastCategory[]
*/
public function getCategories(): Collection
{
return $this->categories;
}
/**
* @return Collection|PodcastEpisode[]
*/
public function getEpisodes(): Collection
{
return $this->episodes;
}
public static function getArtPath(string $uniqueId): string
{
return self::DIR_PODCAST_ARTWORK . '/' . $uniqueId . '.jpg';
}
}