mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Commands;
|
||
|
|
||
|
use App\Playlist;
|
||
|
use App\Track;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
|
||
|
class AddTrackToPlaylistCommand extends CommandBase
|
||
|
{
|
||
|
private $_track;
|
||
|
private $_playlist;
|
||
|
|
||
|
function __construct($playlistId, $trackId)
|
||
|
{
|
||
|
$this->_playlist = Playlist::find($playlistId);
|
||
|
$this->_track = Track::find($trackId);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
$user = Auth::user();
|
||
|
|
||
|
return $user != null && $this->_playlist && $this->_track && $this->_playlist->user_id == $user->id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws \Exception
|
||
|
* @return CommandResponse
|
||
|
*/
|
||
|
public function execute()
|
||
|
{
|
||
|
$songIndex = $this->_playlist->tracks()->count() + 1;
|
||
|
$this->_playlist->tracks()->attach($this->_track, ['position' => $songIndex]);
|
||
|
|
||
|
Playlist::whereId($this->_playlist->id)->update([
|
||
|
'track_count' => DB::raw('(SELECT COUNT(id) FROM playlist_track WHERE playlist_id = ' . $this->_playlist->id . ')')
|
||
|
]);
|
||
|
|
||
|
return CommandResponse::succeed(['message' => 'Track added!']);
|
||
|
}
|
||
|
}
|