2022-07-08 14:53:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Values;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Support\Arrayable;
|
|
|
|
|
|
|
|
final class ArtistInformation implements Arrayable
|
|
|
|
{
|
|
|
|
use FormatsLastFmText;
|
|
|
|
|
2022-07-18 11:00:37 +00:00
|
|
|
private function __construct(public ?string $url, public ?string $image, public array $bio)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function make(
|
|
|
|
?string $url = null,
|
|
|
|
?string $image = null,
|
|
|
|
array $bio = ['summary' => '', 'full' => '']
|
|
|
|
): self {
|
|
|
|
return new self($url, $image, $bio);
|
2022-07-08 14:53:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function fromLastFmData(object $data): self
|
|
|
|
{
|
2022-07-18 11:00:37 +00:00
|
|
|
return self::make(
|
2022-07-08 14:53:04 +00:00
|
|
|
url: $data->url,
|
|
|
|
bio: [
|
|
|
|
'summary' => isset($data->bio) ? self::formatLastFmText($data->bio->summary) : '',
|
|
|
|
'full' => isset($data->bio) ? self::formatLastFmText($data->bio->content) : '',
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return array<mixed> */
|
|
|
|
public function toArray(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'url' => $this->url,
|
|
|
|
'image' => $this->image,
|
|
|
|
'bio' => $this->bio,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|