Pony.fm/app/models/Commands/DeleteTrackCommand.php

32 lines
594 B
PHP
Raw Normal View History

2013-07-25 23:33:04 +02:00
<?php
namespace Commands;
use Entities\Track;
class DeleteTrackCommand extends CommandBase {
private $_trackId;
private $_track;
function __construct($trackId) {
$this->_trackId = $trackId;
$this->_track = Track::find($trackId);
}
/**
* @return bool
*/
public function authorize() {
$user = \Auth::user();
return $this->_track && $user != null && $this->_track->user_id == $user->id;
}
/**
* @throws \Exception
* @return CommandResponse
*/
public function execute() {
$this->_track->delete();
return CommandResponse::succeed();
}
}