2016-06-06 01:12:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
2018-04-26 20:39:37 +02:00
|
|
|
* Copyright (C) 2016 Logic
|
2016-06-06 01:12:04 +02: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\Commands;
|
2016-06-06 01:12:04 +02:00
|
|
|
|
|
|
|
use Gate;
|
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
2021-02-14 03:34:58 +01:00
|
|
|
use App\Models\ShowSong;
|
|
|
|
use App\Jobs\DeleteShowSong;
|
2016-06-06 01:12:04 +02:00
|
|
|
use Validator;
|
|
|
|
|
|
|
|
class DeleteShowSongCommand extends CommandBase
|
|
|
|
{
|
|
|
|
use DispatchesJobs;
|
|
|
|
|
|
|
|
|
|
|
|
/** @var ShowSong */
|
|
|
|
private $_songToDelete;
|
|
|
|
private $_destinationSong;
|
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
public function __construct($songId, $destinationSongId)
|
|
|
|
{
|
2016-06-06 01:12:04 +02:00
|
|
|
$this->_songToDelete = ShowSong::find($songId);
|
|
|
|
$this->_destinationSong = ShowSong::find($destinationSongId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function authorize()
|
|
|
|
{
|
2016-06-06 01:12:04 +02:00
|
|
|
return Gate::allows('delete', $this->_destinationSong);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \Exception
|
|
|
|
* @return CommandResponse
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function execute()
|
|
|
|
{
|
2016-06-06 01:12:04 +02:00
|
|
|
$rules = [
|
|
|
|
'song_to_delete' => 'required',
|
|
|
|
'destination_song' => 'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
// The validation will fail if the genres don't exist
|
|
|
|
// because they'll be null.
|
|
|
|
$validator = Validator::make([
|
|
|
|
'song_to_delete' => $this->_songToDelete,
|
|
|
|
'destination_song' => $this->_destinationSong,
|
|
|
|
], $rules);
|
|
|
|
|
|
|
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
return CommandResponse::fail($validator);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->dispatch(new DeleteShowSong($this->_songToDelete, $this->_destinationSong));
|
|
|
|
|
|
|
|
return CommandResponse::succeed(['message' => 'Song deleted!']);
|
|
|
|
}
|
|
|
|
}
|