mirror of
https://github.com/koel/koel
synced 2024-12-25 20:13:06 +00:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Values;
|
||
|
|
||
|
use Illuminate\Contracts\Support\Arrayable;
|
||
|
|
||
|
final class AlbumInformation implements Arrayable
|
||
|
{
|
||
|
use FormatsLastFmText;
|
||
|
|
||
|
private function __construct(
|
||
|
public string $url,
|
||
|
public string $cover,
|
||
|
public array $wiki,
|
||
|
public array $tracks
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
public static function fromLastFmData(object $data): self
|
||
|
{
|
||
|
return new self(
|
||
|
url: $data->url,
|
||
|
cover: count($data->image) > 3 ? $data->image[3]->{'#text'} : $data->image[0]->{'#text'},
|
||
|
wiki: [
|
||
|
'summary' => isset($data->wiki) ? self::formatLastFmText($data->wiki->summary) : '',
|
||
|
'full' => isset($data->wiki) ? self::formatLastFmText($data->wiki->content) : '',
|
||
|
],
|
||
|
tracks: array_map(static fn ($track): array => [
|
||
|
'title' => $track->name,
|
||
|
'length' => (int) $track->duration,
|
||
|
'url' => $track->url,
|
||
|
], $data->tracks?->track ?? []),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/** @return array<mixed> */
|
||
|
public function toArray(): array
|
||
|
{
|
||
|
return [
|
||
|
'url' => $this->url,
|
||
|
'cover' => $this->cover,
|
||
|
'wiki' => $this->wiki,
|
||
|
'tracks' => $this->tracks,
|
||
|
];
|
||
|
}
|
||
|
}
|