Pony.fm/app/Favourite.php

65 lines
1.4 KiB
PHP
Raw Normal View History

2015-08-30 14:29:12 +02:00
<?php
2015-08-31 14:35:47 +02:00
namespace App;
2015-08-30 14:29:12 +02:00
use Illuminate\Database\Eloquent\Model;
class Favourite extends Model
{
protected $table = 'favourites';
public $timestamps = false;
/*
|--------------------------------------------------------------------------
| Relationships
|--------------------------------------------------------------------------
*/
public function user()
{
2015-08-31 14:35:47 +02:00
return $this->belongsTo('App\User');
2015-08-30 14:29:12 +02:00
}
public function track()
{
2015-08-31 14:35:47 +02:00
return $this->belongsTo('App\Track');
2015-08-30 14:29:12 +02:00
}
public function album()
{
2015-08-31 14:35:47 +02:00
return $this->belongsTo('App\Album');
2015-08-30 14:29:12 +02:00
}
public function playlist()
{
2015-08-31 14:35:47 +02:00
return $this->belongsTo('App\Playlist');
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);
}
}