mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
25 lines
545 B
PHP
25 lines
545 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class AllPlaylistsBelongToUser implements Rule
|
|
{
|
|
public function __construct(private User $user)
|
|
{
|
|
}
|
|
|
|
/** @param array<int> $value */
|
|
public function passes($attribute, $value): bool
|
|
{
|
|
return array_diff(Arr::wrap($value), $this->user->playlists->pluck('id')->toArray()) === [];
|
|
}
|
|
|
|
public function message(): string
|
|
{
|
|
return 'Not all playlists belong to the user';
|
|
}
|
|
}
|