<?php /** * @copyright 2020 Podlibre * @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3 * @link https://castopod.org/ */ namespace App\Controllers\Admin; use App\Models\PodcastPersonModel; use App\Models\PodcastModel; use App\Models\PersonModel; class PodcastPerson extends BaseController { /** * @var \App\Entities\Podcast */ protected $podcast; public function _remap($method, ...$params) { if (count($params) > 0) { if ( !($this->podcast = (new PodcastModel())->getPodcastById( $params[0] )) ) { throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound(); } } else { throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound(); } unset($params[0]); return $this->$method(...$params); } public function index() { helper('form'); $data = [ 'podcast' => $this->podcast, 'podcastPersons' => (new PodcastPersonModel())->getPersonsByPodcastId( $this->podcast->id ), 'personOptions' => (new PersonModel())->getPersonOptions(), 'taxonomyOptions' => (new PersonModel())->getTaxonomyOptions(), ]; replace_breadcrumb_params([ 0 => $this->podcast->title, ]); return view('admin/podcast/person', $data); } public function attemptAdd() { $rules = [ 'person' => 'required', ]; if (!$this->validate($rules)) { return redirect() ->back() ->withInput() ->with('errors', $this->validator->getErrors()); } (new PodcastPersonModel())->addPodcastPersons( $this->podcast->id, $this->request->getPost('person'), $this->request->getPost('person_group_role') ); return redirect()->back(); } public function remove($podcastPersonId) { (new PodcastPersonModel())->removePodcastPersons( $this->podcast->id, $podcastPersonId ); return redirect()->back(); } }