mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
31 lines
784 B
PHP
31 lines
784 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Rules;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use App\Repositories\SongRepository;
|
||
|
use Closure;
|
||
|
use Illuminate\Contracts\Validation\ValidationRule;
|
||
|
use Illuminate\Support\Arr;
|
||
|
|
||
|
class AllPlayablesAreAccessibleBy implements ValidationRule
|
||
|
{
|
||
|
public function __construct(private readonly User $user)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Run the validation rule.
|
||
|
*
|
||
|
* @param array<string> $value
|
||
|
*/
|
||
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
||
|
{
|
||
|
$ids = array_unique(Arr::wrap($value));
|
||
|
|
||
|
if ($ids && app(SongRepository::class)->getMany(ids: $ids, scopedUser: $this->user)->count() !== count($ids)) {
|
||
|
$fail('Not all songs or episodes exist in the database or are accessible by the user.');
|
||
|
}
|
||
|
}
|
||
|
}
|