2015-08-31 16:19:23 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
|
|
|
* Copyright (C) 2015 Peter Deltchev
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-10-24 03:22:14 +02:00
|
|
|
namespace Poniverse\Ponyfm\Commands;
|
2015-08-31 16:19:23 +02:00
|
|
|
|
2016-01-01 01:12:30 +01:00
|
|
|
use Poniverse\Ponyfm\Models\Album;
|
|
|
|
use Poniverse\Ponyfm\Models\Image;
|
2016-06-12 13:49:24 +02:00
|
|
|
use Auth;
|
|
|
|
use Validator;
|
2015-08-31 16:19:23 +02:00
|
|
|
|
|
|
|
class CreateAlbumCommand extends CommandBase
|
|
|
|
{
|
|
|
|
private $_input;
|
|
|
|
|
2016-06-06 08:15:56 +02:00
|
|
|
public function __construct($input)
|
2015-08-31 16:19:23 +02:00
|
|
|
{
|
|
|
|
$this->_input = $input;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
$user = \Auth::user();
|
|
|
|
|
|
|
|
return $user != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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'
|
|
|
|
];
|
|
|
|
|
|
|
|
$validator = Validator::make($this->_input, $rules);
|
|
|
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
return CommandResponse::fail($validator);
|
|
|
|
}
|
|
|
|
|
|
|
|
$album = new Album();
|
|
|
|
$album->user_id = Auth::user()->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, Auth::user())->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]);
|
|
|
|
}
|
2015-10-25 06:17:45 +01:00
|
|
|
}
|