2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2015-12-19 16:36:44 +00:00
|
|
|
use App\Facades\Lastfm;
|
2015-12-13 04:42:28 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property string cover The path to the album's cover
|
|
|
|
* @property bool has_cover If the album has a cover image
|
|
|
|
* @property int id
|
2015-12-19 16:36:44 +00:00
|
|
|
* @property string name Name of the album
|
|
|
|
* @property Artist artist The album's artist
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
class Album extends Model
|
|
|
|
{
|
|
|
|
const UNKNOWN_ID = 1;
|
|
|
|
const UNKNOWN_NAME = 'Unknown Album';
|
|
|
|
const UNKNOWN_COVER = 'unknown-album.png';
|
|
|
|
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected $hidden = ['created_at', 'updated_at'];
|
|
|
|
|
|
|
|
public function artist()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Artist::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function songs()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Song::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an album using some provided information.
|
|
|
|
*
|
|
|
|
* @param Artist $artist
|
|
|
|
* @param $name
|
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public static function get(Artist $artist, $name)
|
|
|
|
{
|
|
|
|
// If an empty name is provided, turn it into our "Unknown Album"
|
|
|
|
$name = $name ?: self::UNKNOWN_NAME;
|
|
|
|
|
|
|
|
$album = self::firstOrCreate([
|
|
|
|
'artist_id' => $artist->id,
|
|
|
|
'name' => $name,
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $album;
|
|
|
|
}
|
|
|
|
|
2015-12-19 16:36:44 +00:00
|
|
|
/**
|
|
|
|
* Get extra information about the album from Last.fm.
|
|
|
|
*
|
|
|
|
* @return array|false
|
|
|
|
*/
|
|
|
|
public function getInfo()
|
|
|
|
{
|
|
|
|
if ($this->id === self::UNKNOWN_ID) {
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $info;
|
|
|
|
}
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
/**
|
|
|
|
* Generate a cover from provided data.
|
|
|
|
*
|
|
|
|
* @param array $cover The cover data in array format, extracted by getID3.
|
|
|
|
* For example:
|
|
|
|
* [
|
|
|
|
* 'data' => '<binary 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']);
|
2015-12-19 16:36:44 +00:00
|
|
|
$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
|
|
|
|
*/
|
|
|
|
private function writeCoverFile($binaryData, $extension)
|
|
|
|
{
|
|
|
|
$extension = trim(strtolower($extension), '. ');
|
|
|
|
$fileName = uniqid().".$extension";
|
2015-12-15 00:14:31 +00:00
|
|
|
$coverPath = app()->publicPath().'/public/img/covers/'.$fileName;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-19 16:36:44 +00:00
|
|
|
file_put_contents($coverPath, $binaryData);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
$this->update(['cover' => $fileName]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCoverAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['cover'] = $value ?: self::UNKNOWN_COVER;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCoverAttribute($value)
|
|
|
|
{
|
|
|
|
return '/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
|
2015-12-19 16:36:44 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
2015-12-16 05:03:48 +00:00
|
|
|
public function getNameAttribute($value)
|
2015-12-13 04:42:28 +00:00
|
|
|
{
|
2015-12-16 05:03:48 +00:00
|
|
|
return html_entity_decode($value);
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|