mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
25 lines
500 B
PHP
25 lines
500 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
use Throwable;
|
|
|
|
class ImageData implements Rule
|
|
{
|
|
public function passes($attribute, $value): bool
|
|
{
|
|
try {
|
|
[$header,] = explode(';', $value);
|
|
|
|
return (bool) preg_match('/data:image\/(jpe?g|png|gif)/i', $header);
|
|
} catch (Throwable $exception) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function message(): string
|
|
{
|
|
return 'Invalid DataURL string';
|
|
}
|
|
}
|