. */ namespace SP\Modules\Web\Controllers; use SP\Core\Acl\Acl; use SP\Core\Events\Event; use SP\Core\Events\EventMessage; use SP\Core\Exceptions\ValidationException; use SP\DataModel\UserData; use SP\Http\JsonResponse; use SP\Modules\Web\Controllers\Helpers\Grid\UserGrid; use SP\Modules\Web\Controllers\Traits\ItemTrait; use SP\Modules\Web\Controllers\Traits\JsonTrait; use SP\Modules\Web\Forms\UserForm; use SP\Mvc\Controller\CrudControllerInterface; use SP\Mvc\View\Components\SelectItemAdapter; use SP\Services\Mail\MailService; use SP\Services\User\UserService; use SP\Services\UserGroup\UserGroupService; use SP\Services\UserPassRecover\UserPassRecoverService; use SP\Services\UserProfile\UserProfileService; /** * Class UserController * * @package SP\Modules\Web\Controllers */ final class UserController extends ControllerBase implements CrudControllerInterface { use JsonTrait; use ItemTrait; /** * @var UserService */ protected $userService; /** * Search action * * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException */ public function searchAction() { if (!$this->acl->checkUserAccess(Acl::USER_SEARCH)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->addTemplate('datagrid-table', 'grid'); $this->view->assign('index', $this->request->analyzeInt('activetab', 0)); $this->view->assign('data', $this->getSearchGrid()); return $this->returnJsonResponseData(['html' => $this->render()]); } /** * getSearchGrid * * @return $this * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException */ protected function getSearchGrid() { $itemSearchData = $this->getSearchData($this->configData->getAccountCount(), $this->request); $userGrid = $this->dic->get(UserGrid::class); return $userGrid->updatePager($userGrid->getGrid($this->userService->search($itemSearchData)), $itemSearchData); } /** * Create action */ public function createAction() { if (!$this->acl->checkUserAccess(Acl::USER_CREATE)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->assign(__FUNCTION__, 1); $this->view->assign('header', __('Nuevo Usuario')); $this->view->assign('isView', false); $this->view->assign('route', 'user/saveCreate'); try { $this->setViewData(); $this->eventDispatcher->notifyEvent('show.user.create', new Event($this)); return $this->returnJsonResponseData(['html' => $this->render()]); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * Sets view data for displaying user's data * * @param $userId * * @throws \SP\Core\Exceptions\SPException * @throws \Psr\Container\ContainerExceptionInterface */ protected function setViewData($userId = null) { $this->view->addTemplate('user', 'itemshow'); $user = $userId ? $this->userService->getById($userId) : new UserData(); $this->view->assign('user', $user); $this->view->assign('groups', SelectItemAdapter::factory(UserGroupService::getItemsBasic())->getItemsFromModel()); $this->view->assign('profiles', SelectItemAdapter::factory(UserProfileService::getItemsBasic())->getItemsFromModel()); $this->view->assign('isUseSSO', $this->configData->isAuthBasicAutoLoginEnabled()); $this->view->assign('sk', $this->session->generateSecurityKey()); $this->view->assign('mailEnabled', $this->configData->isMailEnabled()); $this->view->assign('nextAction', Acl::getActionRoute(Acl::ACCESS_MANAGE)); if ($this->view->isView === true || ($this->configData->isDemoEnabled() && $user->getLogin() === 'demo') ) { $this->view->assign('disabled', 'disabled'); $this->view->assign('readonly', 'readonly'); $this->view->assign('usage', array_map(function ($value) { switch ($value->ref) { case 'Account': $value->icon = 'description'; break; case 'UserGroup': $value->icon = 'group'; break; case 'PublicLink': $value->icon = 'link'; break; default: $value->icon = 'info_outline'; } return $value; }, $this->userService->getUsageForUser($userId))); } else { $this->view->assign('disabled'); $this->view->assign('readonly'); } $this->view->assign('showViewCustomPass', $this->acl->checkUserAccess(Acl::CUSTOMFIELD_VIEW_PASS)); $this->view->assign('customFields', $this->getCustomFieldsForItem(Acl::USER, $userId)); } /** * Edit action * * @param $id * * @return bool */ public function editAction($id) { if (!$this->acl->checkUserAccess(Acl::USER_EDIT)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->assign(__FUNCTION__, 1); $this->view->assign('header', __('Editar Usuario')); $this->view->assign('isView', false); $this->view->assign('route', 'user/saveEdit/' . $id); try { $this->setViewData($id); $this->eventDispatcher->notifyEvent('show.user.edit', new Event($this)); return $this->returnJsonResponseData(['html' => $this->render()]); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * Edit user's pass action * * @param $id * * @return bool */ public function editPassAction($id) { // Comprobar si el usuario a modificar es distinto al de la sesión if (!$this->acl->checkUserAccess(Acl::USER_EDIT_PASS, $id)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->addTemplate('user_pass', 'itemshow'); $this->view->assign(__FUNCTION__, 1); $this->view->assign('header', __('Cambio de Clave')); $this->view->assign('isView', false); $this->view->assign('route', 'user/saveEditPass/' . $id); $this->view->assign('sk', $this->session->generateSecurityKey()); try { $user = $id ? $this->userService->getById($id) : new UserData(); $this->view->assign('user', $user); $this->eventDispatcher->notifyEvent('show.user.editPass', new Event($this)); return $this->returnJsonResponseData(['html' => $this->render()]); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * Delete action * * @param $id * * @return bool */ public function deleteAction($id = null) { if (!$this->acl->checkUserAccess(Acl::USER_DELETE)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->assign(__FUNCTION__, 1); try { if ($id === null) { $this->userService->deleteByIdBatch($this->getItemsIdFromRequest($this->request)); $this->deleteCustomFieldsForItem(Acl::USER, $id); $this->eventDispatcher->notifyEvent('delete.user.selection', new Event($this, EventMessage::factory()->addDescription(__u('Usuarios eliminados'))) ); return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Usuarios eliminados')); } else { $this->userService->delete($id); $this->deleteCustomFieldsForItem(Acl::USER, $id); $this->eventDispatcher->notifyEvent('delete.user', new Event($this, EventMessage::factory() ->addDescription(__u('Usuario eliminado')) ->addDetail(__u('Usuario'), $id)) ); return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Usuario eliminado')); } } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * Saves create action */ public function saveCreateAction() { if (!$this->acl->checkUserAccess(Acl::USER_CREATE)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } try { $form = new UserForm($this->dic); $form->validate(Acl::USER_CREATE); $itemData = $form->getItemData(); $id = $this->userService->create($itemData); $this->addCustomFieldsForItem(Acl::USER, $id, $this->request); $this->eventDispatcher->notifyEvent('create.user', new Event($this, EventMessage::factory() ->addDescription(__u('Usuario creado')) ->addDetail(__u('Usuario'), $itemData->getName())) ); $this->checkChangeUserPass($id, $itemData); return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Usuario creado')); } catch (ValidationException $e) { return $this->returnJsonResponseException($e); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * @param int $userId * @param UserData $userData * * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException * @throws \SP\Services\ServiceException */ protected function checkChangeUserPass(int $userId, UserData $userData) { if ($userData->isChangePass()) { $hash = $this->dic->get(UserPassRecoverService::class) ->requestForUserId($userId); $this->dic->get(MailService::class) ->send(__('Cambio de Clave'), $userData->getEmail(), UserPassRecoverService::getMailMessage($hash)); } } /** * Saves edit action * * @param $id * * @return bool */ public function saveEditAction($id) { if (!$this->acl->checkUserAccess(Acl::USER_EDIT)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } try { $form = new UserForm($this->dic, $id); $form->validate(Acl::USER_EDIT); $itemData = $form->getItemData(); $this->userService->update($itemData); $this->updateCustomFieldsForItem(Acl::USER, $id, $this->request); $this->eventDispatcher->notifyEvent('edit.user', new Event($this, EventMessage::factory() ->addDescription(__u('Usuario actualizado')) ->addDetail(__u('Usuario'), $itemData->getName())) ); $this->checkChangeUserPass($id, $itemData); return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Usuario actualizado')); } catch (ValidationException $e) { return $this->returnJsonResponseException($e); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * Saves edit action * * @param $id * * @return bool */ public function saveEditPassAction($id) { if (!$this->acl->checkUserAccess(Acl::USER_EDIT_PASS, $id)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } try { $form = new UserForm($this->dic, $id); $form->validate(Acl::USER_EDIT_PASS); $itemData = $form->getItemData(); $this->userService->updatePass($id, $itemData->getPass()); $this->eventDispatcher->notifyEvent('edit.user.pass', new Event($this, EventMessage::factory() ->addDescription(__u('Clave actualizada')) ->addDetail(__u('Usuario'), $id)) ); return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Clave actualizada')); } catch (ValidationException $e) { return $this->returnJsonResponseException($e); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * View action * * @param $id * * @return bool */ public function viewAction($id) { if (!$this->acl->checkUserAccess(Acl::USER_VIEW)) { return $this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('No tiene permisos para realizar esta operación')); } $this->view->assign(__FUNCTION__, 1); $this->view->assign('header', __('Ver Usuario')); $this->view->assign('isView', true); try { $this->setViewData($id); $this->eventDispatcher->notifyEvent('show.user', new Event($this)); return $this->returnJsonResponseData(['html' => $this->render()]); } catch (\Exception $e) { processException($e); return $this->returnJsonResponseException($e); } } /** * @throws \Psr\Container\ContainerExceptionInterface * @throws \Psr\Container\NotFoundExceptionInterface * @throws \SP\Services\Auth\AuthException */ protected function initialize() { $this->checkLoggedIn(); $this->userService = $this->dic->get(UserService::class); } }