mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
43 lines
No EOL
828 B
PHP
43 lines
No EOL
828 B
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use App\Playlist;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class DeletePlaylistCommand extends CommandBase
|
|
{
|
|
private $_playlistId;
|
|
private $_playlist;
|
|
|
|
function __construct($playlistId)
|
|
{
|
|
$this->_playlistId = $playlistId;
|
|
$this->_playlist = Playlist::find($playlistId);
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
$user = Auth::user();
|
|
|
|
return $this->_playlist && $user != null && $this->_playlist->user_id == $user->id;
|
|
}
|
|
|
|
/**
|
|
* @throws \Exception
|
|
* @return CommandResponse
|
|
*/
|
|
public function execute()
|
|
{
|
|
foreach ($this->_playlist->pins as $pin) {
|
|
$pin->delete();
|
|
}
|
|
|
|
$this->_playlist->delete();
|
|
|
|
return CommandResponse::succeed();
|
|
}
|
|
} |