koel/app/Models/Album.php

212 lines
6.1 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Models;
use App\Facades\Lastfm;
2016-09-26 07:32:16 +00:00
use App\Traits\SupportsDeleteWhereIDsNotIn;
2017-06-10 13:25:30 +00:00
use Exception;
2016-08-03 10:42:11 +00:00
use Illuminate\Database\Eloquent\Collection;
2015-12-13 04:42:28 +00:00
use Illuminate\Database\Eloquent\Model;
2017-06-10 13:25:30 +00:00
use Log;
2015-12-13 04:42:28 +00:00
/**
2016-04-17 15:38:06 +00:00
* @property string cover The path to the album's cover
* @property bool has_cover If the album has a cover image
2015-12-13 04:42:28 +00:00
* @property int id
2016-04-17 15:38:06 +00:00
* @property string name Name of the album
* @property bool is_compilation If the album is a compilation from multiple artists
* @property Artist artist The album's artist
2016-06-04 14:17:24 +00:00
* @property int artist_id
2016-08-03 10:42:11 +00:00
* @property Collection songs
2017-06-03 23:21:50 +00:00
* @property bool is_unknown
2015-12-13 04:42:28 +00:00
*/
class Album extends Model
{
2016-09-26 07:32:16 +00:00
use SupportsDeleteWhereIDsNotIn;
2015-12-13 04:42:28 +00:00
const UNKNOWN_ID = 1;
const UNKNOWN_NAME = 'Unknown Album';
const UNKNOWN_COVER = 'unknown-album.png';
protected $guarded = ['id'];
protected $hidden = ['updated_at'];
2016-05-19 15:31:02 +00:00
protected $casts = ['artist_id' => 'integer'];
2017-04-23 16:01:02 +00:00
protected $appends = ['is_compilation'];
2015-12-13 04:42:28 +00:00
public function artist()
{
return $this->belongsTo(Artist::class);
}
public function songs()
{
return $this->hasMany(Song::class);
}
2017-06-03 23:21:50 +00:00
public function getIsUnknownAttribute()
2016-02-10 17:01:44 +00:00
{
return $this->id === self::UNKNOWN_ID;
}
2015-12-13 04:42:28 +00:00
/**
* Get an album using some provided information.
*
* @param Artist $artist
2016-04-17 15:38:06 +00:00
* @param string $name
* @param bool $isCompilation
2015-12-13 04:42:28 +00:00
*
* @return self
*/
2016-04-17 15:38:06 +00:00
public static function get(Artist $artist, $name, $isCompilation = false)
2015-12-13 04:42:28 +00:00
{
2016-04-17 15:38:06 +00:00
// If this is a compilation album, its artist must be "Various Artists"
if ($isCompilation) {
2017-06-03 23:21:50 +00:00
$artist = Artist::getVariousArtist();
2016-04-17 15:38:06 +00:00
}
2015-12-13 04:42:28 +00:00
2016-04-17 15:38:06 +00:00
return self::firstOrCreate([
2015-12-13 04:42:28 +00:00
'artist_id' => $artist->id,
2016-04-17 15:38:06 +00:00
'name' => $name ?: self::UNKNOWN_NAME,
2015-12-13 04:42:28 +00:00
]);
}
/**
* Get extra information about the album from Last.fm.
2016-02-10 17:01:44 +00:00
*
* @return array|false
*/
public function getInfo()
{
2017-06-03 23:21:50 +00:00
if ($this->is_unknown) {
return false;
}
$info = Lastfm::getAlbumInfo($this->name, $this->artist->name);
2017-06-03 23:21:50 +00:00
$image = array_get($info, 'image');
// 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!
2017-06-03 23:21:50 +00:00
if (!$this->has_cover && is_string($image) && ini_get('allow_url_fopen')) {
2017-06-10 13:25:30 +00:00
try {
$extension = explode('.', $image);
$this->writeCoverFile(file_get_contents($image), last($extension));
$info['cover'] = $this->cover;
} catch (Exception $e) {
Log::error($e);
}
}
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']);
$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
2017-06-10 00:40:44 +00:00
* @param string $extension The file extension
* @param string $destination The destination path. Automatically generated if empty.
*/
2017-06-10 00:40:44 +00:00
public function writeCoverFile($binaryData, $extension, $destination = '')
{
$extension = trim(strtolower($extension), '. ');
2017-06-10 00:40:44 +00:00
$destination = $destination ?: $this->generateRandomCoverPath($extension);
2017-06-03 23:21:50 +00:00
file_put_contents($destination, $binaryData);
2015-12-13 04:42:28 +00:00
2017-06-03 23:21:50 +00:00
$this->update(['cover' => basename($destination)]);
}
/**
* Copy a cover file from an existing image on the system.
*
2017-06-10 00:40:44 +00:00
* @param string $source The original image's full path.
* @param string $destination The destination path. Automatically generated if empty.
*/
2017-06-10 00:40:44 +00:00
public function copyCoverFile($source, $destination = '')
{
2017-06-03 23:21:50 +00:00
$extension = pathinfo($source, PATHINFO_EXTENSION);
2017-06-10 00:40:44 +00:00
$destination = $destination ?: $this->generateRandomCoverPath($extension);
2017-06-03 23:21:50 +00:00
copy($source, $destination);
2017-06-03 23:21:50 +00:00
$this->update(['cover' => basename($destination)]);
}
2015-12-13 04:42:28 +00:00
/**
* 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";
2015-12-13 04:42:28 +00:00
}
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));
2015-12-13 04:42:28 +00:00
}
/**
* 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
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
}
2016-05-19 15:31:02 +00:00
/**
* Determine if the album is a compilation.
*
* @return bool
*/
public function getIsCompilationAttribute()
{
return $this->artist_id === Artist::VARIOUS_ID;
}
2015-12-13 04:42:28 +00:00
}