mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 04:51:17 +00:00
102 lines
2.7 KiB
PHP
102 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace Modules\Admin\Controllers;
|
|
|
|
use App\Entities\Episode;
|
|
use App\Entities\Podcast;
|
|
use App\Models\EpisodeModel;
|
|
use App\Models\PersonModel;
|
|
use App\Models\PodcastModel;
|
|
use CodeIgniter\Exceptions\PageNotFoundException;
|
|
use CodeIgniter\HTTP\RedirectResponse;
|
|
|
|
class EpisodePersonController extends BaseController
|
|
{
|
|
protected Podcast $podcast;
|
|
|
|
protected Episode $episode;
|
|
|
|
public function _remap(string $method, string ...$params): mixed
|
|
{
|
|
if (count($params) < 2) {
|
|
throw PageNotFoundException::forPageNotFound();
|
|
}
|
|
|
|
if (
|
|
($this->podcast = (new PodcastModel())->getPodcastById((int) $params[0])) &&
|
|
($this->episode = (new EpisodeModel())
|
|
->where([
|
|
'id' => $params[1],
|
|
'podcast_id' => $params[0],
|
|
])
|
|
->first())
|
|
) {
|
|
unset($params[1]);
|
|
unset($params[0]);
|
|
|
|
return $this->{$method}(...$params);
|
|
}
|
|
|
|
throw PageNotFoundException::forPageNotFound();
|
|
}
|
|
|
|
public function index(): string
|
|
{
|
|
helper('form');
|
|
|
|
$data = [
|
|
'episode' => $this->episode,
|
|
'podcast' => $this->podcast,
|
|
'personOptions' => (new PersonModel())->getPersonOptions(),
|
|
'taxonomyOptions' => (new PersonModel())->getTaxonomyOptions(),
|
|
];
|
|
|
|
$this->setHtmlHead(lang('Person.episode_form.title'));
|
|
replace_breadcrumb_params([
|
|
0 => $this->podcast->at_handle,
|
|
1 => $this->episode->title,
|
|
]);
|
|
return view('episode/persons', $data);
|
|
}
|
|
|
|
public function attemptCreate(): RedirectResponse
|
|
{
|
|
$rules = [
|
|
'persons' => 'required',
|
|
];
|
|
|
|
if (! $this->validate($rules)) {
|
|
return redirect()
|
|
->back()
|
|
->withInput()
|
|
->with('errors', $this->validator->getErrors());
|
|
}
|
|
|
|
$validData = $this->validator->getValidated();
|
|
|
|
(new PersonModel())->addEpisodePersons(
|
|
$this->podcast->id,
|
|
$this->episode->id,
|
|
$validData['persons'],
|
|
$this->request->getPost('roles') ?? [],
|
|
);
|
|
|
|
return redirect()->back();
|
|
}
|
|
|
|
public function remove(string $personId): RedirectResponse
|
|
{
|
|
(new PersonModel())->removePersonFromEpisode($this->podcast->id, $this->episode->id, (int) $personId);
|
|
|
|
return redirect()->back();
|
|
}
|
|
}
|