is_unknown) { return null; } return Cache::remember("album.info.$album->id", now()->addWeek(), function () use ($album): AlbumInformation { $info = $this->encyclopedia->getAlbumInformation($album) ?: AlbumInformation::make(); rescue_unless($album->has_cover, function () use ($info, $album): void { $this->mediaMetadataService->tryDownloadAlbumCover($album); $info->cover = $album->cover; }); return $info; }); } public function getArtistInformation(Artist $artist): ?ArtistInformation { if ($artist->is_unknown || $artist->is_various) { return null; } return Cache::remember( "artist.info.$artist->id", now()->addWeek(), function () use ($artist): ArtistInformation { $info = $this->encyclopedia->getArtistInformation($artist) ?: ArtistInformation::make(); rescue_unless($artist->has_image, function () use ($artist, $info): void { $this->mediaMetadataService->tryDownloadArtistImage($artist); $info->image = $artist->image; }); return $info; } ); } }