mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
120 lines
3.2 KiB
PHP
120 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @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 MediaClipper\VideoClip;
|
|
|
|
class VideoClipsController extends BaseController
|
|
{
|
|
protected Podcast $podcast;
|
|
|
|
protected Episode $episode;
|
|
|
|
public function _remap(string $method, string ...$params): mixed
|
|
{
|
|
if (
|
|
($podcast = (new PodcastModel())->getPodcastById((int) $params[0])) === null
|
|
) {
|
|
throw PageNotFoundException::forPageNotFound();
|
|
}
|
|
|
|
$this->podcast = $podcast;
|
|
|
|
if (count($params) > 1) {
|
|
if (
|
|
! ($episode = (new EpisodeModel())
|
|
->where([
|
|
'id' => $params[1],
|
|
'podcast_id' => $params[0],
|
|
])
|
|
->first())
|
|
) {
|
|
throw PageNotFoundException::forPageNotFound();
|
|
}
|
|
|
|
$this->episode = $episode;
|
|
|
|
unset($params[1]);
|
|
unset($params[0]);
|
|
}
|
|
|
|
return $this->{$method}(...$params);
|
|
}
|
|
|
|
public function list(): string
|
|
{
|
|
$data = [
|
|
'podcast' => $this->podcast,
|
|
'episode' => $this->episode,
|
|
];
|
|
|
|
replace_breadcrumb_params([
|
|
0 => $this->podcast->title,
|
|
1 => $this->episode->title,
|
|
]);
|
|
return view('episode/video_clips_list', $data);
|
|
}
|
|
|
|
public function generate(): string
|
|
{
|
|
helper('form');
|
|
|
|
$data = [
|
|
'podcast' => $this->podcast,
|
|
'episode' => $this->episode,
|
|
];
|
|
|
|
replace_breadcrumb_params([
|
|
0 => $this->podcast->title,
|
|
1 => $this->episode->title,
|
|
]);
|
|
return view('episode/video_clips_new', $data);
|
|
}
|
|
|
|
public function attemptGenerate(): RedirectResponse
|
|
{
|
|
// TODO: add end_time greater than start_time, with minimum ?
|
|
$rules = [
|
|
'start_time' => 'required|numeric',
|
|
'end_time' => 'required|numeric|differs[start_time]',
|
|
'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());
|
|
}
|
|
|
|
$clipper = new VideoClip(
|
|
$this->episode,
|
|
(float) $this->request->getPost('start_time'),
|
|
(float) $this->request->getPost('end_time',),
|
|
$this->request->getPost('format'),
|
|
$this->request->getPost('theme'),
|
|
);
|
|
$clipper->generate();
|
|
|
|
return redirect()->route('video-clips-generate', [$this->podcast->id, $this->episode->id])->with(
|
|
'message',
|
|
lang('Settings.images.regenerationSuccess')
|
|
);
|
|
}
|
|
}
|