mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-10 17:45:10 +00:00

- overwrite myth/auth config with castopod app needs - create custom views for users authentication - add admin area bootstrapped by admin controller - shift podcast and episodes crud to admin area - reorganize view layouts - update docs for database migration - add myth-auth to DEPENDENCIES.md closes #11
91 lines
2.1 KiB
PHP
91 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class EpisodeModel extends Model
|
|
{
|
|
protected $table = 'episodes';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'podcast_id',
|
|
'title',
|
|
'slug',
|
|
'enclosure_uri',
|
|
'enclosure_length',
|
|
'enclosure_type',
|
|
'pub_date',
|
|
'description',
|
|
'duration',
|
|
'image_uri',
|
|
'explicit',
|
|
'number',
|
|
'season_number',
|
|
'author_name',
|
|
'author_email',
|
|
'type',
|
|
'block',
|
|
];
|
|
|
|
protected $returnType = 'App\Entities\Episode';
|
|
|
|
protected $useSoftDeletes = true;
|
|
protected $useTimestamps = true;
|
|
|
|
protected $afterInsert = ['writeEnclosureMetadata', 'clearCache'];
|
|
protected $afterUpdate = ['writeEnclosureMetadata', 'clearCache'];
|
|
|
|
protected function writeEnclosureMetadata(array $data)
|
|
{
|
|
helper('id3');
|
|
|
|
$episode = $this->find(
|
|
is_array($data['id']) ? $data['id'][0] : $data['id']
|
|
);
|
|
|
|
write_enclosure_tags($episode);
|
|
|
|
return $data;
|
|
}
|
|
|
|
protected function clearCache(array $data)
|
|
{
|
|
$episode = $this->find(
|
|
is_array($data['id']) ? $data['id'][0] : $data['id']
|
|
);
|
|
|
|
// delete cache for rss feed, podcast and episode pages
|
|
cache()->delete(md5($episode->podcast->feed_url));
|
|
cache()->delete(md5($episode->podcast->link));
|
|
cache()->delete(md5($episode->link));
|
|
|
|
// delete model requests cache
|
|
cache()->delete("{$episode->podcast_id}_episodes");
|
|
}
|
|
|
|
/**
|
|
* Gets all episodes for a podcast
|
|
*
|
|
* @param int $podcastId
|
|
*
|
|
* @return \App\Entities\Episode[]
|
|
*/
|
|
public function getPodcastEpisodes(int $podcastId): array
|
|
{
|
|
if (!($found = cache("{$podcastId}_episodes"))) {
|
|
$found = $this->where('podcast_id', $podcastId)->findAll();
|
|
|
|
cache()->save("{$podcastId}_episodes", $found, 300);
|
|
}
|
|
|
|
return $found;
|
|
}
|
|
}
|