mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
e973f68537
* feat(admin): upload video action * style: fix StyleCI findings * tests: fix video storage tests
47 lines
981 B
PHP
47 lines
981 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Rules\Wiki\Submission\Format;
|
|
|
|
use App\Rules\Wiki\Submission\SubmissionRule;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Str;
|
|
|
|
/**
|
|
* Class EncoderNameFormatRule.
|
|
*/
|
|
class EncoderNameFormatRule extends SubmissionRule
|
|
{
|
|
/**
|
|
* Determine if the validation rule passes.
|
|
*
|
|
* @param string $attribute
|
|
* @param UploadedFile $value
|
|
* @return bool
|
|
*/
|
|
public function passes($attribute, $value): bool
|
|
{
|
|
$format = $this->format()->all();
|
|
|
|
$tags = Arr::get($format, 'tags');
|
|
|
|
$tags = array_change_key_case($tags);
|
|
|
|
$encoder = Arr::get($tags, 'encoder');
|
|
|
|
return Str::startsWith($encoder, 'Lavf');
|
|
}
|
|
|
|
/**
|
|
* Get the validation error message.
|
|
*
|
|
* @return string|array
|
|
*/
|
|
public function message(): string|array
|
|
{
|
|
return __('validation.submission.format_encoder_name');
|
|
}
|
|
}
|