mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-21 20:48:00 +01:00
111 lines
3.4 KiB
PHP
111 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Pony.fm - A community for pony fan music.
|
|
* Copyright (C) 2015 Feld0
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\Favourite
|
|
*
|
|
* @property integer $id
|
|
* @property integer $user_id
|
|
* @property integer $track_id
|
|
* @property integer $album_id
|
|
* @property integer $playlist_id
|
|
* @property string $created_at
|
|
* @property-read \App\Models\User $user
|
|
* @property-read \App\Models\Track $track
|
|
* @property-read \App\Models\Album $album
|
|
* @property-read \App\Models\Playlist $playlist
|
|
* @property-read mixed $resource
|
|
* @property-read mixed $type
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereUserId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereTrackId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereAlbumId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite wherePlaylistId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereCreatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Favourite extends Model
|
|
{
|
|
protected $table = 'favourites';
|
|
public $timestamps = false;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Relationships
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function track()
|
|
{
|
|
return $this->belongsTo(Track::class);
|
|
}
|
|
|
|
public function album()
|
|
{
|
|
return $this->belongsTo(Album::class);
|
|
}
|
|
|
|
public function playlist()
|
|
{
|
|
return $this->belongsTo(Playlist::class);
|
|
}
|
|
|
|
/**
|
|
* Return the resource associated with this favourite.
|
|
*
|
|
* @return Resource|NULL
|
|
*/
|
|
public function getResourceAttribute()
|
|
{
|
|
if ($this->track_id) {
|
|
return $this->track;
|
|
} else {
|
|
if ($this->album_id) {
|
|
return $this->album;
|
|
} else {
|
|
if ($this->playlist_id) {
|
|
return $this->playlist;
|
|
}
|
|
else {
|
|
// No resource
|
|
// In this case, either the resource was
|
|
// soft-deleted or something else occurred.
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function getTypeAttribute()
|
|
{
|
|
// As of PHP 7.2, get_class is picky about null args
|
|
$resource = $this->resource;
|
|
return $resource ? get_class($resource) : null;
|
|
}
|
|
}
|