Newer
Older
<?php

Yassine Doghri
committed
declare(strict_types=1);
/**
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace App\Entities;
use App\Models\PodcastModel;

Yassine Doghri
committed
use Modules\Fediverse\Entities\Actor as ActivityPubActor;

Yassine Doghri
committed
use RuntimeException;
/**
* @property Podcast|null $podcast
* @property boolean $is_podcast
*/
class Actor extends ActivityPubActor
{

Yassine Doghri
committed
protected ?Podcast $podcast = null;

Yassine Doghri
committed
protected bool $is_podcast = false;
public function getIsPodcast(): bool
{

Yassine Doghri
committed
return $this->getPodcast() !== null;
}
public function getPodcast(): ?Podcast
{
if ($this->id === null) {

Yassine Doghri
committed
throw new RuntimeException('Podcast id must be set before getting associated podcast.');
}
if (! $this->podcast instanceof Podcast) {

Yassine Doghri
committed
$this->podcast = (new PodcastModel())->getPodcastByActorId($this->id);
}
return $this->podcast;
}
}