. */ namespace SP\Modules\Web\Controllers; use DI\DependencyException; use DI\NotFoundException; use Exception; use SP\Core\Acl\ActionsInterface; use SP\Core\Events\Event; use SP\Core\Events\EventMessage; use SP\Core\Exceptions\ConstraintException; use SP\Core\Exceptions\QueryException; use SP\Core\Exceptions\SessionTimeout; use SP\Html\DataGrid\DataGridInterface; use SP\Http\JsonResponse; use SP\Modules\Web\Controllers\Helpers\Grid\AccountHistoryGrid; use SP\Modules\Web\Controllers\Traits\JsonTrait; use SP\Mvc\Controller\ItemTrait; use SP\Services\Account\AccountHistoryService; use SP\Services\Account\AccountService; use SP\Services\Auth\AuthException; /** * Class AccountHistoryManagerController * * @package SP\Modules\Web\Controllers */ final class AccountHistoryManagerController extends ControllerBase { use JsonTrait, ItemTrait; protected ?AccountHistoryService $accountHistoryService = null; /** * @return bool * @throws \DI\DependencyException * @throws \DI\NotFoundException * @throws \JsonException * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException */ public function searchAction(): bool { if (!$this->acl->checkUserAccess(ActionsInterface::ACCOUNTMGR_HISTORY_SEARCH)) { return $this->returnJsonResponse( JsonResponse::JSON_ERROR, __u('You don\'t have permission to do this operation') ); } $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 * * @throws DependencyException * @throws NotFoundException * @throws ConstraintException * @throws QueryException */ protected function getSearchGrid(): DataGridInterface { $itemSearchData = $this->getSearchData( $this->configData->getAccountCount(), $this->request ); $historyGrid = $this->dic->get(AccountHistoryGrid::class); return $historyGrid->updatePager( $historyGrid->getGrid($this->accountHistoryService->search($itemSearchData)), $itemSearchData ); } /** * Delete action * * @param int|null $id * * @return bool * @throws \DI\DependencyException * @throws \DI\NotFoundException * @throws \JsonException */ public function deleteAction(?int $id = null): bool { try { if ($id === null) { $this->accountHistoryService->deleteByIdBatch($this->getItemsIdFromRequest($this->request)); $this->eventDispatcher->notifyEvent( 'delete.accountHistory.selection', new Event( $this, EventMessage::factory() ->addDescription(__u('Accounts removed')) ) ); return $this->returnJsonResponse( JsonResponse::JSON_SUCCESS, __u('Accounts removed') ); } $accountDetails = $this->accountHistoryService->getById($id); $this->accountHistoryService->delete($id); $this->eventDispatcher->notifyEvent( 'delete.accountHistory', new Event( $this, EventMessage::factory() ->addDescription(__u('Account removed')) ->addDetail(__u('Account'), $accountDetails->getName()) ->addDetail(__u('Client'), $accountDetails->getClientName()) ) ); return $this->returnJsonResponse( JsonResponse::JSON_SUCCESS, __u('Account removed') ); } catch (Exception $e) { processException($e); $this->eventDispatcher->notifyEvent( 'exception', new Event($e) ); return $this->returnJsonResponseException($e); } } /** * Saves restore action * * @param int $id Account's history ID * * @return bool * @throws \DI\DependencyException * @throws \DI\NotFoundException * @throws \JsonException */ public function restoreAction(int $id): bool { try { $accountDetails = $this->accountHistoryService->getById($id); $accountService = $this->dic->get(AccountService::class); if ($accountDetails->isModify) { $accountService->editRestore($id, $accountDetails->getAccountId()); } else { $accountService->createFromHistory($accountDetails); } $this->eventDispatcher->notifyEvent( 'restore.accountHistory', new Event( $this, EventMessage::factory() ->addDescription(__u('Account restored')) ->addDetail(__u('Account'), $accountDetails->getName()) ->addDetail(__u('Client'), $accountDetails->getClientName()) ) ); return $this->returnJsonResponse( JsonResponse::JSON_SUCCESS, __u('Account restored') ); } catch (Exception $e) { processException($e); $this->eventDispatcher->notifyEvent( 'exception', new Event($e) ); return $this->returnJsonResponseException($e); } } /** * Initialize class * * @throws AuthException * @throws DependencyException * @throws NotFoundException * @throws SessionTimeout */ protected function initialize(): void { $this->checkLoggedIn(); $this->accountHistoryService = $this->dic->get(AccountHistoryService::class); } }