historyService = $historyService; $this->privilegeService = $privilegeService; $this->snapshotSearchParser = $snapshotSearchParser; $this->inputReader = $inputReader; $this->snapshotViewProxy = $snapshotViewProxy; } public function registerRoutes(Router $router) { $router->get('/api/history', [$this, 'getFiltered']); } public function getFiltered() { $this->privilegeService->assertPrivilege(Privilege::VIEW_HISTORY); $filter = $this->snapshotSearchParser->createFilterFromInputReader($this->inputReader); $filter->setPageSize(50); $result = $this->historyService->getFiltered($filter); $entities = $this->snapshotViewProxy->fromArray($result->getEntities()); return [ 'data' => $entities, 'pageSize' => $result->getPageSize(), 'totalRecords' => $result->getTotalRecords()]; } }