mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
96 lines
2.4 KiB
PHP
96 lines
2.4 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 CodeIgniter\Entity\Entity;
|
||
|
use CodeIgniter\Files\File;
|
||
|
|
||
|
/**
|
||
|
* @property int $id
|
||
|
* @property string $file_path
|
||
|
* @property string $file_directory
|
||
|
* @property string $file_extension
|
||
|
* @property string $file_name
|
||
|
* @property int $file_size
|
||
|
* @property string $file_content_type
|
||
|
* @property array $file_metadata
|
||
|
* @property 'image'|'audio'|'video'|'document' $type
|
||
|
* @property string $description
|
||
|
* @property string|null $language_code
|
||
|
* @property int $uploaded_by
|
||
|
* @property int $updated_by
|
||
|
*/
|
||
|
class Media extends Entity
|
||
|
{
|
||
|
protected File $file;
|
||
|
|
||
|
protected string $type = 'document';
|
||
|
|
||
|
/**
|
||
|
* @var string[]
|
||
|
*/
|
||
|
protected $dates = ['uploaded_at', 'updated_at', 'deleted_at'];
|
||
|
|
||
|
/**
|
||
|
* @var array<string, string>
|
||
|
*/
|
||
|
protected $casts = [
|
||
|
'id' => 'integer',
|
||
|
'file_path' => 'string',
|
||
|
'file_size' => 'int',
|
||
|
'file_content_type' => 'string',
|
||
|
'file_metadata' => 'json-array',
|
||
|
'type' => 'string',
|
||
|
'description' => 'string',
|
||
|
'language_code' => '?string',
|
||
|
'uploaded_by' => 'integer',
|
||
|
'updated_by' => 'integer',
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* @param array<string, mixed>|null $data
|
||
|
*/
|
||
|
public function __construct(array $data = null)
|
||
|
{
|
||
|
parent::__construct($data);
|
||
|
|
||
|
if ($this->file_path) {
|
||
|
[
|
||
|
'filename' => $filename,
|
||
|
'dirname' => $dirname,
|
||
|
'extension' => $extension,
|
||
|
] = pathinfo($this->file_path);
|
||
|
|
||
|
$this->file_name = $filename;
|
||
|
$this->file_directory = $dirname;
|
||
|
$this->file_extension = $extension;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function setFile(File $file): self
|
||
|
{
|
||
|
helper('media');
|
||
|
|
||
|
$this->attributes['file_content_type'] = $file->getMimeType();
|
||
|
$this->attributes['file_metadata'] = json_encode(lstat((string) $file));
|
||
|
$this->attributes['file_path'] = save_media(
|
||
|
$file,
|
||
|
$this->attributes['file_directory'],
|
||
|
$this->attributes['file_name']
|
||
|
);
|
||
|
if ($filesize = filesize(media_path($this->file_path))) {
|
||
|
$this->attributes['file_size'] = $filesize;
|
||
|
}
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
}
|