mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
20 lines
530 B
PHP
20 lines
530 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use App\Values\SmartPlaylistRuleGroupCollection;
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class ValidSmartPlaylistRulePayload implements ValidationRule
|
|
{
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
$passes = (bool) attempt(static fn () => SmartPlaylistRuleGroupCollection::create(Arr::wrap($value)));
|
|
|
|
if (!$passes) {
|
|
$fail('Invalid smart playlist rules');
|
|
}
|
|
}
|
|
}
|