[CONTROLLER][UserPanel] Nickname now normalized

This commit is contained in:
Eliseu Amaro 2021-12-02 20:49:10 +00:00
parent 12557a1e16
commit 2967b544f5
Signed by: eliseuamaro
GPG Key ID: 96DA09D4B97BC2D5
1 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,7 @@ use App\Core\Controller;
use App\Core\DB\DB;
use App\Core\Event;
use App\Core\Form;
use App\Util\Nickname;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use function App\Core\I18n\_m;
use App\Core\Log;
@ -111,7 +112,8 @@ class UserPanel extends Controller
['save_personal_info', SubmitType::class, ['label' => _m('Save personal info')]],
];
$extra_step = function ($data, $extra_args) use ($user) {
$user->setNickname($data['nickname']);
$nickname = Nickname::normalize($data['nickname'], check_already_used: false, which: Nickname::CHECK_LOCAL_USER, check_is_allowed: true);
$nickname ?: $user->setNickname($data['nickname']);
};
return Form::handle($form_definition, $request, $actor, $extra, $extra_step, [['self_tags' => $extra['self_tags']]]);
}