'integer']; protected $appends = ['is_compilation']; public function artist() { return $this->belongsTo(Artist::class); } public function songs() { return $this->hasMany(Song::class); } public function isUnknown() { return $this->id === self::UNKNOWN_ID; } /** * Get an album using some provided information. * * @param Artist $artist * @param string $name * @param bool $isCompilation * * @return self */ public static function get(Artist $artist, $name, $isCompilation = false) { // If this is a compilation album, its artist must be "Various Artists" if ($isCompilation) { $artist = Artist::getVarious(); } return self::firstOrCreate([ 'artist_id' => $artist->id, 'name' => $name ?: self::UNKNOWN_NAME, ]); } /** * Get extra information about the album from Last.fm. * * @return array|false */ public function getInfo() { if ($this->isUnknown()) { return false; } $info = Lastfm::getAlbumInfo($this->name, $this->artist->name); // If our current album has no cover, and Last.fm has one, why don't we steal it? // Great artists steal for their great albums! if (!$this->has_cover && is_string($image = array_get($info, 'image')) && ini_get('allow_url_fopen') ) { $extension = explode('.', $image); $this->writeCoverFile(file_get_contents($image), last($extension)); $info['cover'] = $this->cover; } return $info; } /** * Generate a cover from provided data. * * @param array $cover The cover data in array format, extracted by getID3. * For example: * [ * 'data' => '', * 'image_mime' => 'image/png', * 'image_width' => 512, * 'image_height' => 512, * 'imagetype' => 'PNG', // not always present * 'picturetype' => 'Other', * 'description' => '', * 'datalength' => 7627, * ] */ public function generateCover(array $cover) { $extension = explode('/', $cover['image_mime']); $extension = empty($extension[1]) ? 'png' : $extension[1]; $this->writeCoverFile($cover['data'], $extension); } /** * Write a cover image file with binary data and update the Album with the new cover file. * * @param string $binaryData * @param string $extension The file extension */ public function writeCoverFile($binaryData, $extension) { $extension = trim(strtolower($extension), '. '); $destPath = $this->generateRandomCoverPath($extension); file_put_contents($destPath, $binaryData); $this->update(['cover' => basename($destPath)]); } /** * Copy a cover file from an existing image on the system. * * @param string $srcPath The original image's full path. */ public function copyCoverFile($srcPath) { $extension = pathinfo($srcPath, PATHINFO_EXTENSION); $destPath = $this->generateRandomCoverPath($extension); copy($srcPath, $destPath); $this->update(['cover' => basename($destPath)]); } /** * Generate a random path for the cover image. * * @param string $extension The extension of the cover (without dot) * * @return string */ private function generateRandomCoverPath($extension) { return app()->publicPath().'/public/img/covers/'.uniqid('', true).".$extension"; } public function setCoverAttribute($value) { $this->attributes['cover'] = $value ?: self::UNKNOWN_COVER; } public function getCoverAttribute($value) { return app()->staticUrl('public/img/covers/'.($value ?: self::UNKNOWN_COVER)); } /** * Determine if the current album has a cover. * * @return bool */ public function getHasCoverAttribute() { return $this->cover !== $this->getCoverAttribute(null); } /** * Sometimes the tags extracted from getID3 are HTML entity encoded. * This makes sure they are always sane. * * @param $value * * @return string */ public function getNameAttribute($value) { return html_entity_decode($value); } /** * Determine if the album is a compilation. * * @return bool */ public function getIsCompilationAttribute() { return $this->artist_id === Artist::VARIOUS_ID; } }