mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
33 lines
781 B
PHP
33 lines
781 B
PHP
<?php
|
|
|
|
namespace App\DTO;
|
|
|
|
use Illuminate\Contracts\Support\Arrayable;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Collection;
|
|
use Webmozart\Assert\Assert;
|
|
|
|
final class SmartPlaylistRuleGroup implements Arrayable
|
|
{
|
|
private function __construct(public string $id, public Collection $rules)
|
|
{
|
|
Assert::uuid($id);
|
|
}
|
|
|
|
public static function create(array $array): self
|
|
{
|
|
return new self(
|
|
id: Arr::get($array, 'id'),
|
|
rules: collect(Arr::get($array, 'rules', []))->transform([SmartPlaylistRule::class, 'create']),
|
|
);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toArray(): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'rules' => $this->rules->toArray(),
|
|
];
|
|
}
|
|
}
|