koel/app/Models/Artist.php

137 lines
3.7 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Models;
2015-12-17 17:56:48 +00:00
use App\Facades\Util;
2016-09-26 07:32:16 +00:00
use App\Traits\SupportsDeleteWhereIDsNotIn;
2020-09-06 18:21:39 +00:00
use Illuminate\Database\Eloquent\Builder;
2017-08-05 18:55:02 +00:00
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Factories\HasFactory;
2015-12-17 18:00:42 +00:00
use Illuminate\Database\Eloquent\Model;
2017-08-05 18:55:02 +00:00
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
2020-12-23 10:53:00 +00:00
use Laravel\Scout\Searchable;
2015-12-13 04:42:28 +00:00
/**
2020-12-23 10:53:00 +00:00
* @property int $id
* @property string $name
* @property string|null $image Public URL to the artist's image
* @property bool $is_unknown If the artist is Unknown Artist
* @property bool $is_various If the artist is Various Artist
* @property Collection $songs
* @property bool $has_image If the artist has a (non-default) image
* @property string|null $image_path Absolute path to the artist's image
2019-08-05 10:57:36 +00:00
*
2019-08-05 10:56:48 +00:00
* @method static self find(int $id)
2019-11-29 21:23:30 +00:00
* @method static self firstOrCreate(array $where, array $params = [])
2020-09-06 18:21:39 +00:00
* @method static Builder where(...$params)
* @method static self first()
* @method static Builder whereName(string $name)
2020-12-22 23:01:49 +00:00
* @method static Builder orderBy(...$params)
2015-12-13 04:42:28 +00:00
*/
class Artist extends Model
{
use HasFactory;
2020-12-23 10:53:00 +00:00
use Searchable;
2016-09-26 07:32:16 +00:00
use SupportsDeleteWhereIDsNotIn;
2020-12-22 20:11:22 +00:00
public const UNKNOWN_ID = 1;
public const UNKNOWN_NAME = 'Unknown Artist';
public const VARIOUS_ID = 2;
public const VARIOUS_NAME = 'Various Artists';
2015-12-13 04:42:28 +00:00
protected $guarded = ['id'];
protected $hidden = ['created_at', 'updated_at'];
2018-08-24 15:27:19 +00:00
public function albums(): HasMany
2015-12-13 04:42:28 +00:00
{
return $this->hasMany(Album::class);
}
2017-08-05 18:55:02 +00:00
/**
* An artist can have many songs.
* Unless he is Rick Astley.
*/
2018-08-24 15:27:19 +00:00
public function songs(): HasManyThrough
2016-06-04 11:57:27 +00:00
{
return $this->hasManyThrough(Song::class, Album::class);
}
2018-08-24 15:27:19 +00:00
public function getIsUnknownAttribute(): bool
2015-12-21 13:49:00 +00:00
{
return $this->id === self::UNKNOWN_ID;
}
2018-08-24 15:27:19 +00:00
public function getIsVariousAttribute(): bool
2016-04-17 15:38:06 +00:00
{
return $this->id === self::VARIOUS_ID;
}
2018-08-24 15:27:19 +00:00
public static function getVariousArtist(): self
2016-04-17 15:38:06 +00:00
{
2018-08-24 15:27:19 +00:00
return static::find(self::VARIOUS_ID);
2016-04-17 15:38:06 +00:00
}
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.
*/
2018-08-24 15:27:19 +00:00
public function getNameAttribute(string $value): string
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.
*/
public static function getOrCreate(?string $name = null): self
2015-12-13 04:42:28 +00:00
{
2015-12-17 17:56:48 +00:00
// Remove the BOM from UTF-8/16/32, as it will mess up the database constraints.
2020-12-22 20:11:22 +00:00
$encoding = Util::detectUTFEncoding($name);
if ($encoding) {
2015-12-18 02:11:32 +00:00
$name = mb_convert_encoding($name, 'UTF-8', $encoding);
2015-12-17 17:56:48 +00:00
}
return static::firstOrCreate(['name' => trim($name) ?: self::UNKNOWN_NAME]);
2015-12-13 04:42:28 +00:00
}
2015-12-22 09:53:03 +00:00
/**
* Turn the image name into its absolute URL.
*/
2018-08-24 15:27:19 +00:00
public function getImageAttribute(?string $value): ?string
2015-12-22 09:53:03 +00:00
{
2020-06-13 12:19:24 +00:00
return $value ? artist_image_url($value) : null;
2018-02-04 15:53:40 +00:00
}
public function getImagePathAttribute(): ?string
{
if (!$this->has_image) {
return null;
}
2020-06-13 12:19:24 +00:00
return artist_image_path(array_get($this->attributes, 'image'));
}
2018-08-24 15:27:19 +00:00
public function getHasImageAttribute(): bool
2018-02-04 15:53:40 +00:00
{
2018-02-05 08:52:14 +00:00
$image = array_get($this->attributes, 'image');
if (!$image) {
2018-02-04 15:53:40 +00:00
return false;
}
2020-06-13 12:19:24 +00:00
return file_exists(artist_image_path($image));
2015-12-22 09:53:03 +00:00
}
2020-12-23 10:53:00 +00:00
/** @return array<mixed> */
public function toSearchableArray(): array
{
return [
'id' => $this->id,
'name' => $this->name,
];
}
2015-12-13 04:42:28 +00:00
}