mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
46 lines
902 B
PHP
46 lines
902 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Commands;
|
||
|
|
||
|
use App\Album;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
|
||
|
class DeleteAlbumCommand extends CommandBase
|
||
|
{
|
||
|
private $_albumId;
|
||
|
private $_album;
|
||
|
|
||
|
function __construct($albumId)
|
||
|
{
|
||
|
$this->_albumId = $albumId;
|
||
|
$this->_album = ALbum::find($albumId);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
$user = Auth::user();
|
||
|
|
||
|
return $this->_album && $user != null && $this->_album->user_id == $user->id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws \Exception
|
||
|
* @return CommandResponse
|
||
|
*/
|
||
|
public function execute()
|
||
|
{
|
||
|
foreach ($this->_album->tracks as $track) {
|
||
|
$track->album_id = null;
|
||
|
$track->track_number = null;
|
||
|
$track->updateTags();
|
||
|
$track->save();
|
||
|
}
|
||
|
|
||
|
$this->_album->delete();
|
||
|
|
||
|
return CommandResponse::succeed();
|
||
|
}
|
||
|
}
|