koel/app/Models/Artist.php

147 lines
3.5 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Models;
use App\Facades\Lastfm;
2015-12-17 17:56:48 +00:00
use App\Facades\Util;
2016-04-02 13:16:09 +00:00
use Exception;
2015-12-17 18:00:42 +00:00
use Illuminate\Database\Eloquent\Model;
2015-12-22 09:53:03 +00:00
use Log;
2015-12-13 04:42:28 +00:00
/**
* @property int id The model ID
* @property string name The artist name
2016-06-04 14:17:24 +00:00
* @property string image
2015-12-13 04:42:28 +00:00
*/
class Artist extends Model
{
const UNKNOWN_ID = 1;
const UNKNOWN_NAME = 'Unknown Artist';
2016-04-17 15:38:06 +00:00
const VARIOUS_ID = 2;
const VARIOUS_NAME = 'Various Artists';
2015-12-13 04:42:28 +00:00
protected $guarded = ['id'];
protected $hidden = ['created_at', 'updated_at'];
public function albums()
{
return $this->hasMany(Album::class);
}
2016-06-04 11:57:27 +00:00
public function songs()
{
return $this->hasManyThrough(Song::class, Album::class);
}
2015-12-21 13:49:00 +00:00
public function isUnknown()
{
return $this->id === self::UNKNOWN_ID;
}
2016-04-17 15:38:06 +00:00
public function isVarious()
{
return $this->id === self::VARIOUS_ID;
}
/**
* Get the "Various Artists" object.
*
* @return Artist
*/
public static function getVarious()
{
return self::find(self::VARIOUS_ID);
}
2015-12-16 05:03:48 +00:00
/**
* Sometimes the tags extracted from getID3 are HTML entity encoded.
* This makes sure they are always sane.
*
* @param $value
2015-12-17 17:56:48 +00:00
*
* @return string
2015-12-16 05:03:48 +00:00
*/
2015-12-14 13:22:39 +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 ?: self::UNKNOWN_NAME);
2015-12-13 04:42:28 +00:00
}
/**
* Get an Artist object from their name.
* If such is not found, a new artist will be created.
*
* @param string $name
*
* @return Artist
*/
public static function get($name)
{
2015-12-17 17:56:48 +00:00
// Remove the BOM from UTF-8/16/32, as it will mess up the database constraints.
if ($encoding = Util::detectUTFEncoding($name)) {
2015-12-18 02:11:32 +00:00
$name = mb_convert_encoding($name, 'UTF-8', $encoding);
2015-12-17 17:56:48 +00:00
}
2015-12-13 04:42:28 +00:00
$name = trim($name) ?: self::UNKNOWN_NAME;
return self::firstOrCreate(compact('name'), compact('name'));
}
/**
* Get extra information about the artist from Last.fm.
2016-02-10 16:59:29 +00:00
*
* @return array|false
*/
public function getInfo()
{
2016-02-10 16:59:29 +00:00
if ($this->isUnknown()) {
return false;
}
$info = Lastfm::getArtistInfo($this->name);
2015-12-22 09:53:03 +00:00
// If our current artist has no image, and Last.fm has one, copy the image for our local use.
if (!$this->image &&
is_string($image = array_get($info, 'image')) &&
ini_get('allow_url_fopen')
) {
try {
$extension = explode('.', $image);
$fileName = uniqid().'.'.trim(strtolower(last($extension)), '. ');
$coverPath = app()->publicPath().'/public/img/artists/'.$fileName;
file_put_contents($coverPath, file_get_contents($image));
$this->update(['image' => $fileName]);
$info['image'] = $this->image;
2016-04-02 13:16:09 +00:00
} catch (Exception $e) {
2015-12-22 09:53:03 +00:00
Log::error($e);
}
}
return $info;
}
2015-12-22 09:53:03 +00:00
2016-06-04 11:57:27 +00:00
/**
* Get songs *contributed* (in compilation albums) by the artist.
*
* @return \Illuminate\Database\Eloquent\Collection
*/
public function getContributedSongs()
{
return Song::whereContributingArtistId($this->id)->get();
}
2015-12-22 09:53:03 +00:00
/**
* Turn the image name into its absolute URL.
2016-02-10 16:59:29 +00:00
*
2015-12-22 09:54:19 +00:00
* @param mixed $value
2016-02-10 16:59:29 +00:00
*
2015-12-22 09:53:03 +00:00
* @return string|null
*/
public function getImageAttribute($value)
{
return $value ? app()->staticUrl("public/img/artists/$value") : null;
2015-12-22 09:53:03 +00:00
}
2015-12-13 04:42:28 +00:00
}