Skip to content
Snippets Groups Projects
VideoClipsController.php 7.49 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?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\PodcastModel;
    use CodeIgniter\Exceptions\PageNotFoundException;
    use CodeIgniter\HTTP\RedirectResponse;
    
    use Modules\Media\Entities\Transcript;
    
    use Modules\Media\Models\MediaModel;
    
    class VideoClipsController extends BaseController
    
    {
        public function _remap(string $method, string ...$params): mixed
        {
    
                throw PageNotFoundException::forPageNotFound();
            }
    
    
            if (count($params) === 1) {
                if (! ($podcast = (new PodcastModel())->getPodcastById((int) $params[0])) instanceof Podcast) {
    
                    throw PageNotFoundException::forPageNotFound();
                }
    
    
                ! ($episode = (new EpisodeModel())->getEpisodeById((int) $params[1])) instanceof Episode
    
            ) {
                throw PageNotFoundException::forPageNotFound();
    
            unset($params[0]);
            unset($params[1]);
    
            return $this->{$method}($episode, ...$params);
    
        public function list(Episode $episode): string
    
            $videoClipsBuilder = (new ClipModel('video'))
    
                    'podcast_id' => $episode->podcast_id,
                    'episode_id' => $episode->id,
    
            $clips = $videoClipsBuilder->paginate(10);
    
            $videoClips = [];
            foreach ($clips as $clip) {
                $videoClips[] = new VideoClip($clip->toArray());
            }
    
    
                'podcast'    => $episode->podcast,
                'episode'    => $episode,
    
                'pager'      => $videoClipsBuilder->pager,
    
            $this->setHtmlHead(lang('VideoClip.list.title'));
    
                0 => $episode->podcast->at_handle,
                1 => $episode->title,
    
            ]);
            return view('episode/video_clips_list', $data);
        }
    
    
        public function view(Episode $episode, string $videoClipId): string
    
        {
            $videoClip = (new ClipModel())->getVideoClipById((int) $videoClipId);
    
            $data = [
    
                'podcast'   => $episode->podcast,
                'episode'   => $episode,
    
            $this->setHtmlHead(lang('VideoClip.title', [
                'videoClipLabel' => esc($videoClip->title),
            ]));
    
                0 => $episode->podcast->at_handle,
                1 => $episode->title,
    
            ]);
            return view('episode/video_clip', $data);
        }
    
    
        public function createView(Episode $episode): string
    
                'podcast' => $episode->podcast,
                'episode' => $episode,
    
                0 => $episode->podcast->at_handle,
                1 => $episode->title,
    
            // First, check that requirements to create a video clip are met
    
            $ffmpeg = shell_exec('which ffmpeg');
    
                'ffmpeg'     => $ffmpeg !== null,
                'gd'         => extension_loaded('gd'),
                'freetype'   => extension_loaded('gd') && gd_info()['FreeType Support'],
    
                'transcript' => $episode->transcript instanceof Transcript,
    
            if (array_any($checks, fn (bool $value): bool => ! $value)) {
    
                $data['checks'] = $checks;
                return view('episode/video_clips_requirements', $data);
            }
    
            helper('form');
    
            return view('episode/video_clips_new', $data);
    
        public function createAction(Episode $episode): RedirectResponse
    
                'start_time' => 'required|greater_than_equal_to[0]',
    
                'duration'   => 'required|greater_than[0]',
    
                'format'     => 'required|in_list[' . implode(',', array_keys(config('MediaClipper')->formats)) . ']',
                'theme'      => 'required|in_list[' . implode(',', array_keys(config('Colors')->themes)) . ']',
    
            ];
    
            if (! $this->validate($rules)) {
                return redirect()
                    ->back()
                    ->withInput()
                    ->with('errors', $this->validator->getErrors());
            }
    
    
            $validData = $this->validator->getValidated();
    
            $themeName = $validData['theme'];
    
            $themeColors = config('MediaClipper')
    
                'title'      => $validData['title'],
                'start_time' => (float) $validData['start_time'],
                'duration'   => (float) $validData['duration'],
    
                'type'       => 'video',
                'status'     => 'queued',
    
                'podcast_id' => $episode->podcast_id,
                'episode_id' => $episode->id,
    
            // Check if video clip exists before inserting a new line
            if ((new ClipModel())->doesVideoClipExist($videoClip)) {
                // video clip already exists
                return redirect()
                    ->back()
                    ->withInput()
                    ->with('error', lang('VideoClip.messages.alreadyExistingError'));
            }
    
    
            return redirect()->route('video-clips-list', [$episode->podcast_id, $episode->id])->with(
    
                lang('VideoClip.messages.addToQueueSuccess'),
    
        public function retryAction(Episode $episode, string $videoClipId): RedirectResponse
    
        {
            $videoClip = (new ClipModel())->getVideoClipById((int) $videoClipId);
    
    
            if (! $videoClip instanceof VideoClip) {
    
                throw PageNotFoundException::forPageNotFound();
            }
    
            (new ClipModel())->update($videoClip->id, [
    
        public function deleteAction(Episode $episode, string $videoClipId): RedirectResponse
    
        {
            $videoClip = (new ClipModel())->getVideoClipById((int) $videoClipId);
    
    
            if (! $videoClip instanceof VideoClip) {
    
                throw PageNotFoundException::forPageNotFound();
            }
    
            if ($videoClip->media === null) {
                // delete Clip directly
    
                (new ClipModel())->deleteVideoClip($episode->podcast_id, $episode->id, $videoClip->id);
    
                (new ClipModel())->clearVideoClipCache($videoClip->id);
    
    
                // delete the videoClip file, the clip will be deleted on cascade
    
                if (! $mediaModel->deleteMedia($videoClip->media)) {
                    return redirect()
                        ->back()
                        ->withInput()
                        ->with('errors', $mediaModel->errors());
                }
            }
    
            return redirect()->back();
        }