mirror of
https://github.com/koel/koel
synced 2025-01-05 01:08:50 +00:00
26 lines
545 B
PHP
26 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';
|
||
|
}
|
||
|
}
|