. */ namespace SP\Modules\Web\Controllers; use SP\Controller\ControllerBase; use SP\Core\Acl\Acl; use SP\Core\Acl\ActionsInterface; use SP\Core\Exceptions\SPException; use SP\Core\Exceptions\ValidationException; use SP\Core\SessionUtil; use SP\DataModel\CustomFieldDefData; use SP\Forms\CustomFieldDefForm; use SP\Http\JsonResponse; use SP\Http\Request; use SP\Modules\Web\Controllers\Helpers\ItemsGridHelper; use SP\Modules\Web\Controllers\Traits\ItemTrait; use SP\Modules\Web\Controllers\Traits\JsonTrait; use SP\Mvc\Controller\CrudControllerInterface; use SP\Services\CustomField\CustomFieldDefService; use SP\Services\CustomField\CustomFieldTypeService; /** * Class CustomFieldController * * @package SP\Modules\Web\Controllers */ class CustomFieldController extends ControllerBase implements CrudControllerInterface { use JsonTrait; use ItemTrait; /** * @var CustomFieldDefService */ protected $customFieldService; /** * Search action */ public function searchAction() { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_SEARCH)) { return; } $itemsGridHelper = new ItemsGridHelper($this->view, $this->config, $this->session, $this->eventDispatcher); $grid = $itemsGridHelper->getCustomFieldsGrid($this->customFieldService->search($this->getSearchData($this->configData)))->updatePager(); $this->view->addTemplate('datagrid-table', 'grid'); $this->view->assign('index', Request::analyze('activetab', 0)); $this->view->assign('data', $grid); $this->returnJsonResponseData(['html' => $this->render()]); } /** * Create action * * @throws \Psr\Container\ContainerExceptionInterface */ public function createAction() { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_CREATE)) { return; } $this->view->assign(__FUNCTION__, 1); $this->view->assign('header', __('Nuevo Campo')); $this->view->assign('isView', false); $this->view->assign('route', 'customField/saveCreate'); try { $this->setViewData(); $this->eventDispatcher->notifyEvent('show.customField.create', $this); } catch (\Exception $e) { $this->returnJsonResponse(1, $e->getMessage()); } $this->returnJsonResponseData(['html' => $this->render()]); } /** * Sets view data for displaying user's data * * @param $clientId * @throws \Psr\Container\ContainerExceptionInterface */ protected function setViewData($clientId = null) { $this->view->addTemplate('customfield', 'itemshow'); $customField = $clientId ? $this->customFieldService->getById($clientId) : new CustomFieldDefData(); $customFieldTypeService = new CustomFieldTypeService(); $this->view->assign('field', $customField); $this->view->assign('types', $customFieldTypeService->getAll()); $this->view->assign('modules', CustomFieldDefService::getFieldModules()); $this->view->assign('sk', SessionUtil::getSessionKey(true)); $this->view->assign('nextAction', Acl::getActionRoute(ActionsInterface::ITEMS_MANAGE)); if ($this->view->isView === true) { $this->view->assign('disabled', 'disabled'); $this->view->assign('readonly', 'readonly'); } else { $this->view->assign('disabled'); $this->view->assign('readonly'); } } /** * Edit action * * @param $id * @throws \Psr\Container\ContainerExceptionInterface */ public function editAction($id) { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_EDIT)) { return; } $this->view->assign('header', __('Editar Campo')); $this->view->assign('isView', false); $this->view->assign('route', 'customField/saveEdit/' . $id); try { $this->setViewData($id); $this->eventDispatcher->notifyEvent('show.customField.edit', $this); } catch (\Exception $e) { $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } $this->returnJsonResponseData(['html' => $this->render()]); } /** * Delete action * * @param $id */ public function deleteAction($id) { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_DELETE)) { return; } try { $this->customFieldService->delete($id); $this->deleteCustomFieldsForItem(ActionsInterface::CUSTOMFIELD, $id); $this->eventDispatcher->notifyEvent('delete.customField', $this); $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Campo eliminado')); } catch (SPException $e) { debugLog($e->getMessage(), true); $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } } /** * Saves create action */ public function saveCreateAction() { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_CREATE)) { return; } try { $form = new CustomFieldDefForm(); $form->validate(ActionsInterface::CUSTOMFIELD_CREATE); $this->customFieldService->create($form->getItemData()); $this->eventDispatcher->notifyEvent('create.customField', $this); $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Campo creado')); } catch (ValidationException $e) { $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } catch (SPException $e) { debugLog($e->getMessage(), true); $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } } /** * Saves edit action * * @param $id */ public function saveEditAction($id) { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_EDIT)) { return; } try { $form = new CustomFieldDefForm($id); $form->validate(ActionsInterface::CUSTOMFIELD_EDIT); $this->customFieldService->update($form->getItemData()); $this->eventDispatcher->notifyEvent('edit.customField', $this); $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Campo actualizado')); } catch (ValidationException $e) { $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } catch (SPException $e) { debugLog($e->getMessage(), true); $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } } /** * View action * * @param $id * @throws \Psr\Container\ContainerExceptionInterface */ public function viewAction($id) { if (!$this->acl->checkUserAccess(ActionsInterface::CUSTOMFIELD_VIEW)) { return; } $this->view->assign('header', __('Ver Campo')); $this->view->assign('isView', true); try { $this->setViewData($id); $this->eventDispatcher->notifyEvent('show.customField', $this); } catch (\Exception $e) { $this->returnJsonResponse(JsonResponse::JSON_ERROR, $e->getMessage()); } $this->returnJsonResponseData(['html' => $this->render()]); } /** * Initialize class */ protected function initialize() { $this->checkLoggedIn(); $this->customFieldService = new CustomFieldDefService(); } }