mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
26 lines
733 B
PHP
26 lines
733 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)
|
|
{
|
|
}
|
|
|
|
/** @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.');
|
|
}
|
|
}
|
|
}
|