. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Tools\Stream\Api; use Espo\Core\Acl; use Espo\Core\Api\Action; use Espo\Core\Api\Request; use Espo\Core\Api\Response; use Espo\Core\Api\ResponseComposer; use Espo\Core\Exceptions\BadRequest; use Espo\Core\Exceptions\Forbidden; use Espo\Core\Name\Field; use Espo\Core\Record\SearchParamsFetcher; use Espo\Core\Select\SearchParams; use Espo\Core\Select\Where\Item as WhereItem; use Espo\Tools\Stream\GlobalRecordService; /** * @noinspection PhpUnused */ class GetGlobal implements Action { public function __construct( private Acl $acl, private SearchParamsFetcher $searchParamsFetcher, private GlobalRecordService $service ) {} public function process(Request $request): Response { if (!$this->acl->checkScope(GlobalRecordService::SCOPE_NAME)) { throw new Forbidden(); } $searchParams = $this->fetchSearchParams($request); $result = $this->service->find($searchParams); return ResponseComposer::json($result->toApiOutput()); } /** * @throws BadRequest * @throws Forbidden */ private function fetchSearchParams(Request $request): SearchParams { $searchParams = $this->searchParamsFetcher->fetch($request); $after = $request->getQueryParam('after'); if ($after) { $searchParams = $searchParams ->withWhereAdded( WhereItem ::createBuilder() ->setAttribute(Field::CREATED_AT) ->setType(WhereItem\Type::AFTER) ->setValue($after) ->build() ); } $beforeNumber = $request->getQueryParam('beforeNumber'); if ($beforeNumber) { $searchParams = $searchParams ->withWhereAdded( WhereItem ::createBuilder() ->setAttribute('number') ->setType(WhereItem\Type::LESS_THAN) ->setValue($beforeNumber) ->build() ); } return $searchParams; } }