Pony.fm/app/Models/Favourite.php

107 lines
3.3 KiB
PHP
Raw Normal View History

2015-08-30 14:29:12 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Peter Deltchev
*
* 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 Poniverse\Ponyfm\Models;
2015-08-31 14:35:47 +02:00
2015-08-30 14:29:12 +02:00
use Illuminate\Database\Eloquent\Model;
2016-01-01 01:36:08 +01:00
/**
* Poniverse\Ponyfm\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 \Poniverse\Ponyfm\Models\User $user
* @property-read \Poniverse\Ponyfm\Models\Track $track
* @property-read \Poniverse\Ponyfm\Models\Album $album
* @property-read \Poniverse\Ponyfm\Models\Playlist $playlist
* @property-read mixed $resource
* @property-read mixed $type
2016-12-10 17:47:49 +01:00
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereTrackId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereAlbumId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite wherePlaylistId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereCreatedAt($value)
* @mixin \Eloquent
2016-01-01 01:36:08 +01:00
*/
2015-08-30 14:29:12 +02:00
class Favourite extends Model
{
protected $table = 'favourites';
public $timestamps = false;
/*
|--------------------------------------------------------------------------
| Relationships
|--------------------------------------------------------------------------
*/
public function user()
{
2016-06-06 08:15:56 +02:00
return $this->belongsTo(User::class);
2015-08-30 14:29:12 +02:00
}
public function track()
{
2016-06-06 08:15:56 +02:00
return $this->belongsTo(Track::class);
2015-08-30 14:29:12 +02:00
}
public function album()
{
2016-06-06 08:15:56 +02:00
return $this->belongsTo(Album::class);
2015-08-30 14:29:12 +02:00
}
public function playlist()
{
2016-06-06 08:15:56 +02:00
return $this->belongsTo(Playlist::class);
2015-08-30 14:29:12 +02:00
}
/**
* 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;
} // no resource - this should never happen under real circumstances
else {
return null;
}
}
}
}
public function getTypeAttribute()
{
return get_class($this->resource);
}
}