Skip to content
Snippets Groups Projects
PodcastController.php 7.04 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * @copyright  2020 Podlibre
     * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
     * @link       https://castopod.org/
     */
    
    namespace App\Controllers;
    
    use App\Models\PodcastModel;
    
    class PodcastController extends BaseController
    
    
        public function _remap($method, ...$params)
        {
    
            if (count($params) === 0) {
                throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
            }
    
            if (
                $this->podcast = (new PodcastModel())->getPodcastByName($params[0])
            ) {
    
            throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
    
            // Prevent analytics hit when authenticated
            if (!can_user_interact()) {
                $this->registerPodcastWebpageHit($this->podcast->id);
            }
    
            $cacheName = implode(
                '_',
                array_filter([
                    'page',
                    "podcast#{$this->podcast->id}",
                    'activity',
                    service('request')->getLocale(),
                    can_user_interact() ? '_authenticated' : null,
                ]),
            );
    
            if (!($cachedView = cache($cacheName))) {
                helper('persons');
                $persons = [];
                construct_person_array($this->podcast->persons, $persons);
    
                $data = [
                    'podcast' => $this->podcast,
                    'notes' => (new NoteModel())->getActorPublishedNotes(
                        $this->podcast->actor_id,
                    ),
                    'persons' => $persons,
                ];
    
                // if user is logged in then send to the authenticated activity view
                if (can_user_interact()) {
                    helper('form');
                    return view('podcast/activity_authenticated', $data);
                } else {
                    return view('podcast/activity', $data, [
                        'cache' => DECADE,
                        'cache_name' => $cacheName,
                    ]);
                }
    
            // Prevent analytics hit when authenticated
            if (!can_user_interact()) {
                $this->registerPodcastWebpageHit($this->podcast->id);
            }
    
            $yearQuery = $this->request->getGet('year');
            $seasonQuery = $this->request->getGet('season');
    
            if (!$yearQuery and !$seasonQuery) {
    
                $defaultQuery = (new PodcastModel())->getDefaultQuery(
    
                if ($defaultQuery) {
                    if ($defaultQuery['type'] == 'season') {
                        $seasonQuery = $defaultQuery['data']['season_number'];
                    } elseif ($defaultQuery['type'] == 'year') {
                        $yearQuery = $defaultQuery['data']['year'];
                    }
    
                    "podcast#{$this->podcast->id}",
    
                    $yearQuery ? 'year' . $yearQuery : null,
    
                    $seasonQuery ? 'season' . $seasonQuery : null,
    
                    can_user_interact() ? '_authenticated' : null,
    
            if (!($cachedView = cache($cacheName))) {
    
                $podcastModel = new PodcastModel();
                $years = $podcastModel->getYears($this->podcast->id);
                $seasons = $podcastModel->getSeasons($this->podcast->id);
    
    
                $episodesNavigation = [];
                $activeQuery = null;
                foreach ($years as $year) {
                    $isActive = $yearQuery == $year['year'];
                    if ($isActive) {
    
                        $activeQuery = [
                            'type' => 'year',
                            'value' => $year['year'],
                            'label' => $year['year'],
                            'number_of_episodes' => $year['number_of_episodes'],
                        ];
    
                    }
    
                    array_push($episodesNavigation, [
                        'label' => $year['year'],
                        'number_of_episodes' => $year['number_of_episodes'],
                        'route' =>
    
                            route_to('podcast-episodes', $this->podcast->name) .
    
                            '?year=' .
                            $year['year'],
                        'is_active' => $isActive,
                    ]);
                }
    
                foreach ($seasons as $season) {
                    $isActive = $seasonQuery == $season['season_number'];
                    if ($isActive) {
                        $activeQuery = [
                            'type' => 'season',
                            'value' => $season['season_number'],
    
                            'label' => lang('Podcast.season', [
                                'seasonNumber' => $season['season_number'],
                            ]),
                            'number_of_episodes' => $season['number_of_episodes'],
    
                        ];
                    }
    
                    array_push($episodesNavigation, [
                        'label' => lang('Podcast.season', [
                            'seasonNumber' => $season['season_number'],
                        ]),
                        'number_of_episodes' => $season['number_of_episodes'],
                        'route' =>
    
                            route_to('podcast-episodes', $this->podcast->name) .
    
                            '?season=' .
                            $season['season_number'],
                        'is_active' => $isActive,
                    ]);
                }
    
    
                construct_person_array($this->podcast->persons, $persons);
    
                $data = [
                    'podcast' => $this->podcast,
                    'episodesNav' => $episodesNavigation,
                    'activeQuery' => $activeQuery,
    
                    'episodes' => (new EpisodeModel())->getPodcastEpisodes(
    
                        $this->podcast->id,
                        $this->podcast->type,
                        $yearQuery,
    
                $secondsToNextUnpublishedEpisode = (new EpisodeModel())->getSecondsToNextUnpublishedEpisode(
    
                // if user is logged in then send to the authenticated episodes view
                if (can_user_interact()) {
    
                    return view('podcast/episodes_authenticated', $data);
    
                    return view('podcast/episodes', $data, [
    
                        'cache' => $secondsToNextUnpublishedEpisode
                            ? $secondsToNextUnpublishedEpisode
                            : DECADE,
                        'cache_name' => $cacheName,
                    ]);
                }