koel/app/Models/User.php

69 lines
1.7 KiB
PHP

<?php
namespace App\Models;
use App\Casts\UserPreferencesCast;
use App\Values\UserPreferences;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Query\Builder;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
/**
* @property UserPreferences $preferences
* @property int $id
* @property bool $is_admin
* @property string $lastfm_session_key
* @property string $name
* @property string $email
* @property string $password
*
* @method static self create(array $params)
* @method static int count()
* @method static Builder where(...$params)
*/
class User extends Authenticatable
{
use HasApiTokens;
use HasFactory;
use Notifiable;
protected $guarded = ['id'];
protected $hidden = ['password', 'remember_token', 'created_at', 'updated_at'];
protected $casts = [
'id' => 'int',
'is_admin' => 'bool',
'preferences' => UserPreferencesCast::class,
];
public function playlists(): HasMany
{
return $this->hasMany(Playlist::class);
}
public function interactions(): HasMany
{
return $this->hasMany(Interaction::class);
}
/**
* Determine if the user is connected to Last.fm.
*/
public function connectedToLastfm(): bool
{
return (bool) $this->lastfm_session_key;
}
/**
* Get the user's Last.fm session key.
*
* @return string|null The key if found, or null if user isn't connected to Last.fm
*/
public function getLastfmSessionKeyAttribute(): ?string
{
return $this->preferences->lastFmSessionKey;
}
}