mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
88 lines
No EOL
2.4 KiB
PHP
88 lines
No EOL
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use App\Image;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
class SaveAccountSettingsCommand extends CommandBase
|
|
{
|
|
private $_input;
|
|
|
|
function __construct($input)
|
|
{
|
|
$this->_input = $input;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return Auth::user() != null;
|
|
}
|
|
|
|
/**
|
|
* @throws \Exception
|
|
* @return CommandResponse
|
|
*/
|
|
public function execute()
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$rules = [
|
|
'display_name' => 'required|min:3|max:26',
|
|
'bio' => 'textarea_length:250'
|
|
];
|
|
|
|
if ($this->_input['sync_names'] == 'true') {
|
|
$this->_input['display_name'] = $user->mlpforums_name;
|
|
}
|
|
|
|
if ($this->_input['uses_gravatar'] == 'true') {
|
|
$rules['gravatar'] = 'email';
|
|
} else {
|
|
$rules['avatar'] = 'image|mimes:png|min_width:350|min_height:350';
|
|
$rules['avatar_id'] = 'exists:images,id';
|
|
}
|
|
|
|
$validator = Validator::make($this->_input, $rules);
|
|
|
|
if ($validator->fails()) {
|
|
return CommandResponse::fail($validator);
|
|
}
|
|
|
|
if ($this->_input['uses_gravatar'] != 'true') {
|
|
if ($user->avatar_id == null && !isset($this->_input['avatar']) && !isset($this->_input['avatar_id'])) {
|
|
$validator->messages()->add('avatar',
|
|
'You must upload or select an avatar if you are not using gravatar!');
|
|
|
|
return CommandResponse::fail($validator);
|
|
}
|
|
}
|
|
|
|
$user->bio = $this->_input['bio'];
|
|
$user->display_name = $this->_input['display_name'];
|
|
$user->sync_names = $this->_input['sync_names'] == 'true';
|
|
$user->can_see_explicit_content = $this->_input['can_see_explicit_content'] == 'true';
|
|
$user->uses_gravatar = $this->_input['uses_gravatar'] == 'true';
|
|
|
|
if ($user->uses_gravatar) {
|
|
$user->avatar_id = null;
|
|
$user->gravatar = $this->_input['gravatar'];
|
|
} else {
|
|
if (isset($this->_input['avatar_id'])) {
|
|
$user->avatar_id = $this->_input['avatar_id'];
|
|
} else {
|
|
if (isset($this->_input['avatar'])) {
|
|
$user->avatar_id = Image::upload($this->_input['avatar'], $user)->id;
|
|
}
|
|
}
|
|
}
|
|
|
|
$user->save();
|
|
|
|
return CommandResponse::succeed();
|
|
}
|
|
} |