. */ namespace Poniverse\Ponyfm\Commands; use Gate; use Poniverse\Ponyfm\Models\Album; use Poniverse\Ponyfm\Models\Image; use Auth; use Poniverse\Ponyfm\Models\User; use Validator; class CreateAlbumCommand extends CommandBase { private $_input; /** * @var User */ private $_albumOwner; public function __construct($input) { $this->_input = $input; $this->_albumOwner = User::find($this->_input['user_id']); } /** * @return bool */ public function authorize() { return $this->_albumOwner !== null && Gate::allows('create-album', $this->_albumOwner); } /** * @throws \Exception * @return CommandResponse */ public function execute() { $rules = [ 'title' => 'required|min:3|max:50', 'cover' => 'image|mimes:png|min_width:350|min_height:350', 'cover_id' => 'exists:images,id', 'track_ids' => 'exists:tracks,id', 'user_id' => 'exists:users,id' ]; $validator = Validator::make($this->_input, $rules); if ($validator->fails()) { return CommandResponse::fail($validator); } $album = new Album(); $album->user_id = $this->_albumOwner->id; $album->title = $this->_input['title']; $album->description = $this->_input['description']; if (isset($this->_input['cover_id'])) { $album->cover_id = $this->_input['cover_id']; } else { if (isset($this->_input['cover'])) { $cover = $this->_input['cover']; $album->cover_id = Image::upload($cover, $this->_albumOwner)->id; } else { if (isset($this->_input['remove_cover']) && $this->_input['remove_cover'] == 'true') { $album->cover_id = null; } } } $trackIds = explode(',', $this->_input['track_ids']); $album->save(); $album->syncTrackIds($trackIds); return CommandResponse::succeed(['id' => $album->id]); } }