2013-07-28 09:09:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Entities;
|
|
|
|
|
|
|
|
use Cover;
|
2013-08-01 10:57:08 +02:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2013-08-01 04:01:41 +02:00
|
|
|
use Illuminate\Support\Facades\URL;
|
2013-07-28 09:09:10 +02:00
|
|
|
use Whoops\Example\Exception;
|
2013-07-28 19:45:21 +02:00
|
|
|
use Traits\SlugTrait;
|
2013-07-28 09:09:10 +02:00
|
|
|
|
|
|
|
class Album extends \Eloquent {
|
|
|
|
protected $softDelete = true;
|
|
|
|
|
2013-07-28 19:45:21 +02:00
|
|
|
use SlugTrait;
|
|
|
|
|
2013-07-28 09:09:10 +02:00
|
|
|
public static function summary() {
|
2013-07-28 10:35:31 +02:00
|
|
|
return self::select('id', 'title', 'user_id', 'slug', 'created_at', 'cover_id');
|
2013-07-28 09:09:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-01 10:57:08 +02:00
|
|
|
public function scopeDetails($query) {
|
|
|
|
if (Auth::check()) {
|
|
|
|
$query->with(['favourites' => function($query) {
|
|
|
|
$query->whereUserId(Auth::user()->id);
|
|
|
|
}]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return !$query;
|
|
|
|
}
|
|
|
|
|
2013-07-28 09:09:10 +02:00
|
|
|
protected $table = 'albums';
|
|
|
|
|
|
|
|
public function user() {
|
|
|
|
return $this->belongsTo('Entities\User');
|
|
|
|
}
|
|
|
|
|
2013-08-01 10:57:08 +02:00
|
|
|
public function favourites() {
|
|
|
|
return $this->hasMany('Entities\Favourite');
|
|
|
|
}
|
|
|
|
|
2013-07-28 09:09:10 +02:00
|
|
|
public function cover() {
|
|
|
|
return $this->belongsTo('Entities\Image');
|
|
|
|
}
|
|
|
|
|
2013-07-28 19:45:21 +02:00
|
|
|
public function tracks() {
|
|
|
|
return $this->hasMany('Entities\Track')->orderBy('track_number', 'asc');
|
|
|
|
}
|
|
|
|
|
2013-08-01 10:57:08 +02:00
|
|
|
public function comments(){
|
|
|
|
return $this->hasMany('Entities\Comment');
|
|
|
|
}
|
|
|
|
|
2013-08-01 04:47:21 +02:00
|
|
|
public static function mapPublicAlbumSummary($album) {
|
|
|
|
return [
|
|
|
|
'id' => $album->id,
|
|
|
|
'track_count' => $album->tracks->count(),
|
|
|
|
'title' => $album->title,
|
|
|
|
'slug' => $album->slug,
|
|
|
|
'created_at' => $album->created_at,
|
|
|
|
'covers' => [
|
|
|
|
'small' => $album->getCoverUrl(Image::SMALL),
|
|
|
|
'normal' => $album->getCoverUrl(Image::NORMAL)
|
|
|
|
],
|
|
|
|
'url' => $album->url,
|
|
|
|
'user' => [
|
|
|
|
'id' => $album->user->id,
|
|
|
|
'name' => $album->user->display_name,
|
|
|
|
'url' => $album->user->url,
|
2013-08-01 10:57:08 +02:00
|
|
|
],
|
|
|
|
'is_favourited' => $album->favourites->count() > 0
|
2013-08-01 04:47:21 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2013-07-28 09:09:10 +02:00
|
|
|
public function hasCover() {
|
|
|
|
return $this->cover_id != null;
|
|
|
|
}
|
|
|
|
|
2013-08-01 04:01:41 +02:00
|
|
|
public function getUrlAttribute() {
|
|
|
|
return URL::to('albums/' . $this->id . '-' . $this->slug);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDownloadUrl($format) {
|
|
|
|
return URL::to('a' . $this->id . '/dl.' . Track::$Formats[$format]['extension']);
|
|
|
|
}
|
|
|
|
|
2013-07-28 09:09:10 +02:00
|
|
|
public function getCoverUrl($type = Image::NORMAL) {
|
|
|
|
if (!$this->hasCover())
|
|
|
|
return $this->user->getAvatarUrl($type);
|
|
|
|
|
|
|
|
return $this->cover->getUrl($type);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDirectory() {
|
|
|
|
$dir = (string) ( floor( $this->id / 100 ) * 100 );
|
|
|
|
return \Config::get('app.files_directory') . '/tracks/' . $dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDates() {
|
|
|
|
return ['created_at', 'deleted_at', 'published_at'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilenameFor($format) {
|
|
|
|
if (!isset(Track::$Formats[$format]))
|
|
|
|
throw new Exception("$format is not a valid format!");
|
|
|
|
|
|
|
|
$format = Track::$Formats[$format];
|
|
|
|
return "{$this->id}.{$format['extension']}.zip";
|
|
|
|
}
|
2013-07-28 19:45:21 +02:00
|
|
|
|
|
|
|
public function updateTrackNumbers() {
|
|
|
|
$tracks = Track::whereAlbumId($this->id)->get();
|
|
|
|
$index = 1;
|
|
|
|
|
|
|
|
foreach ($tracks as $track) {
|
|
|
|
$track->track_number = $index;
|
|
|
|
$index++;
|
|
|
|
$track->updateTags();
|
|
|
|
$track->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function syncTrackIds($trackIds) {
|
|
|
|
$trackIdsInAlbum = [];
|
|
|
|
foreach ($this->tracks as $track) {
|
|
|
|
$trackIdsInAlbum[] = $track->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$trackIdsCount = count($trackIds);
|
|
|
|
$trackIdsInAlbumCount = count($trackIdsInAlbum);
|
|
|
|
$isSame = true;
|
|
|
|
|
|
|
|
if ($trackIdsInAlbumCount != $trackIdsCount)
|
|
|
|
$isSame = false;
|
|
|
|
else
|
|
|
|
for ($i = 0; $i < $trackIdsInAlbumCount; $i++) {
|
|
|
|
if ($i >= $trackIdsCount || $trackIdsInAlbum[$i] != $trackIds[$i]) {
|
|
|
|
$isSame = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isSame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$index = 1;
|
|
|
|
$tracksToRemove = [];
|
|
|
|
$albumsToFix = [];
|
|
|
|
|
|
|
|
foreach ($this->tracks as $track)
|
|
|
|
$tracksToRemove[$track->id] = $track;
|
|
|
|
|
|
|
|
foreach ($trackIds as $trackId) {
|
|
|
|
if (!strlen(trim($trackId)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$track = Track::find($trackId);
|
|
|
|
if ($track->album_id != null && $track->album_id != $this->id) {
|
|
|
|
$albumsToFix[] = $track->album;
|
|
|
|
}
|
|
|
|
|
|
|
|
$track->album_id = $this->id;
|
|
|
|
$track->track_number = $index;
|
|
|
|
$track->updateTags();
|
|
|
|
$track->save();
|
|
|
|
|
|
|
|
unset($tracksToRemove[$track->id]);
|
|
|
|
$index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($tracksToRemove as $track) {
|
|
|
|
$track->album_id = null;
|
|
|
|
$track->track_number = null;
|
|
|
|
$track->updateTags();
|
|
|
|
$track->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($albumsToFix as $album) {
|
|
|
|
$album->updateTrackNumbers();
|
|
|
|
}
|
|
|
|
}
|
2013-07-28 09:09:10 +02:00
|
|
|
}
|