alert = $alert; $this->updateService = $updateService; $this->sessionGuard = $authManager->guard(); } /** * Display base account information page. * * @return \Illuminate\View\View */ public function index() { return view('base.account', [ 'languages' => $this->getAvailableLanguages(true), ]); } /** * Update details for a user's account. * * @param \Pterodactyl\Http\Requests\Base\AccountDataFormRequest $request * @return \Illuminate\Http\RedirectResponse * * @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function update(AccountDataFormRequest $request) { // Prevent logging this specific session out when the password is changed. This will // automatically update the user's password anyways, so no need to do anything else here. if ($request->input('do_action') === 'password') { $this->sessionGuard->logoutOtherDevices($request->input('new_password')); } else { if ($request->input('do_action') === 'email') { $data = ['email' => $request->input('new_email')]; } elseif ($request->input('do_action') === 'identity') { $data = $request->only(['name_first', 'name_last', 'username', 'language']); } else { $data = []; } $this->updateService->setUserLevel(User::USER_LEVEL_USER); $this->updateService->handle($request->user(), $data); } $this->alert->success(trans('base.account.details_updated'))->flash(); return redirect()->route('account'); } }