2015-08-30 14:29:12 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
2018-04-21 06:25:36 +02:00
|
|
|
* Copyright (C) 2015 Feld0
|
2015-10-25 06:17:45 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2021-02-14 03:34:58 +01:00
|
|
|
namespace App\Models;
|
2015-08-31 14:35:47 +02:00
|
|
|
|
2015-11-24 11:49:47 +01:00
|
|
|
use DB;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2015-12-06 03:41:12 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2021-02-14 03:34:58 +01:00
|
|
|
use App\Traits\SlugTrait;
|
2015-09-10 13:35:35 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-11-24 12:07:43 +01:00
|
|
|
use Venturecraft\Revisionable\RevisionableTrait;
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2016-01-01 01:36:08 +01:00
|
|
|
/**
|
2021-02-14 03:34:58 +01:00
|
|
|
* App\Models\Genre
|
2016-01-01 01:36:08 +01:00
|
|
|
*
|
|
|
|
* @property integer $id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $slug
|
|
|
|
* @property string $deleted_at
|
2021-02-14 03:34:58 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks
|
|
|
|
* @property-read \App\Models\Track $trackCountRelation
|
2016-01-01 01:36:08 +01:00
|
|
|
* @property-read mixed $track_count
|
|
|
|
* @property-read mixed $url
|
|
|
|
* @property-write mixed $title
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory
|
2016-02-16 11:53:28 +01:00
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
2021-02-14 03:34:58 +01:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereSlug($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereUpdatedAt($value)
|
2016-12-10 17:47:49 +01:00
|
|
|
* @mixin \Eloquent
|
2017-11-28 17:24:32 +01:00
|
|
|
* @method static bool|null forceDelete()
|
2021-02-14 03:34:58 +01:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre onlyTrashed()
|
2017-11-28 17:24:32 +01:00
|
|
|
* @method static bool|null restore()
|
2021-02-14 03:34:58 +01:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\Genre withoutTrashed()
|
2016-01-01 01:36:08 +01:00
|
|
|
*/
|
2015-08-30 14:29:12 +02:00
|
|
|
class Genre extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'genres';
|
2015-12-06 03:41:12 +01:00
|
|
|
|
2015-09-10 13:35:35 +02:00
|
|
|
protected $fillable = ['name', 'slug'];
|
2015-11-24 12:37:33 +01:00
|
|
|
protected $appends = ['track_count', 'url'];
|
2015-11-24 11:49:47 +01:00
|
|
|
protected $hidden = ['trackCountRelation'];
|
|
|
|
|
2015-12-06 03:41:12 +01:00
|
|
|
use SlugTrait, SoftDeletes, RevisionableTrait;
|
2015-11-24 11:49:47 +01:00
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
public function tracks()
|
|
|
|
{
|
2015-11-24 11:49:47 +01:00
|
|
|
return $this->hasMany(Track::class, 'genre_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* "Dummy" relation to facilitate eager-loading of a genre's track count.
|
|
|
|
* This relationship should not be used directly.
|
|
|
|
*
|
2015-11-24 19:00:59 +01:00
|
|
|
* Inspired by {@link http://softonsofa.com/tweaking-eloquent-relations-how-to-get-hasmany-relation-count-efficiently/}
|
2015-11-24 11:49:47 +01:00
|
|
|
*
|
|
|
|
* @return Relation
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function trackCountRelation()
|
|
|
|
{
|
2015-11-24 11:49:47 +01:00
|
|
|
return $this->hasOne(Track::class)
|
|
|
|
->select(['genre_id', DB::raw('count(*) as track_count')])
|
|
|
|
->groupBy('genre_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of tracks in this genre.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function getTrackCountAttribute()
|
|
|
|
{
|
2015-11-24 19:00:59 +01:00
|
|
|
if (!$this->relationLoaded('trackCountRelation')) {
|
|
|
|
$this->load('trackCountRelation');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->trackCountRelation ? $this->trackCountRelation->track_count : 0;
|
2015-11-24 11:49:47 +01:00
|
|
|
}
|
2015-11-24 12:37:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string relative, Angular-friendly URL to this genre
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function getUrlAttribute()
|
|
|
|
{
|
2015-12-20 16:07:36 +01:00
|
|
|
return route('tracks.discover', ['filter' => "genres-{$this->id}"], false);
|
2015-11-24 12:37:33 +01:00
|
|
|
}
|
2015-10-25 06:17:45 +01:00
|
|
|
}
|