mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
99 lines
2.3 KiB
PHP
99 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2021 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Entities;
|
|
|
|
use App\Models\PersonModel;
|
|
use CodeIgniter\Entity\Entity;
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $full_name
|
|
* @property string $unique_name
|
|
* @property string|null $information_url
|
|
* @property Image $image
|
|
* @property string $image_path
|
|
* @property string $image_mimetype
|
|
* @property int $created_by
|
|
* @property int $updated_by
|
|
* @property object[]|null $roles
|
|
*/
|
|
class Person extends Entity
|
|
{
|
|
protected Image $image;
|
|
|
|
protected ?int $podcast_id = null;
|
|
|
|
protected ?int $episode_id = null;
|
|
|
|
/**
|
|
* @var object[]|null
|
|
*/
|
|
protected ?array $roles = null;
|
|
|
|
/**
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'full_name' => 'string',
|
|
'unique_name' => 'string',
|
|
'information_url' => '?string',
|
|
'image_path' => 'string',
|
|
'image_mimetype' => 'string',
|
|
'podcast_id' => '?integer',
|
|
'episode_id' => '?integer',
|
|
'created_by' => 'integer',
|
|
'updated_by' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* Saves a picture in `public/media/persons/`
|
|
*/
|
|
public function setImage(Image $image): static
|
|
{
|
|
helper('media');
|
|
|
|
// Save image
|
|
$image->saveImage('persons', $this->attributes['unique_name']);
|
|
|
|
$this->attributes['image_mimetype'] = $image->mimetype;
|
|
$this->attributes['image_path'] = $image->path;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getImage(): Image
|
|
{
|
|
return new Image(null, $this->attributes['image_path'], $this->attributes['image_mimetype']);
|
|
}
|
|
|
|
/**
|
|
* @return object[]
|
|
*/
|
|
public function getRoles(): array
|
|
{
|
|
if ($this->attributes['podcast_id'] === null) {
|
|
throw new RuntimeException('Person must have a podcast_id before getting roles.');
|
|
}
|
|
|
|
if ($this->roles === null) {
|
|
$this->roles = (new PersonModel())->getPersonRoles(
|
|
$this->id,
|
|
(int) $this->attributes['podcast_id'],
|
|
array_key_exists('episode_id', $this->attributes) ? (int) $this->attributes['episode_id'] : null
|
|
);
|
|
}
|
|
|
|
return $this->roles;
|
|
}
|
|
}
|