eventDispatcher->dispatch( 'OCP\WorkflowEngine::loadAdditionalSettingScripts', new LoadSettingsScriptsEvent() ); $this->eventDispatcher->dispatchTyped(new LoadSettingsScriptsEvent()); $entities = $this->manager->getEntitiesList(); $this->initialStateService->provideInitialState( 'entities', $this->entitiesToArray($entities) ); $operators = $this->manager->getOperatorList(); $this->initialStateService->provideInitialState( 'operators', $this->operatorsToArray($operators) ); $checks = $this->manager->getCheckList(); $this->initialStateService->provideInitialState( 'checks', $this->checksToArray($checks) ); $this->initialStateService->provideInitialState( 'scope', $this->getScope() ); $this->initialStateService->provideInitialState( 'appstoreenabled', $this->config->getSystemValueBool('appstoreenabled', true) ); $this->initialStateService->provideInitialState( 'doc-url', $this->urlGenerator->linkToDocs('admin-workflowengine') ); return new TemplateResponse(Application::APP_ID, 'settings', [], 'blank'); } /** * @return string|null the section ID, e.g. 'sharing' */ public function getSection(): ?string { return 'workflow'; } /** * @return int whether the form should be rather on the top or bottom of * the admin section. The forms are arranged in ascending order of the * priority values. It is required to return a value between 0 and 100. * * E.g.: 70 */ public function getPriority(): int { return 0; } /** * @param IEntity[] $entities * @return array, icon: string, name: string, events: array}> */ private function entitiesToArray(array $entities): array { return array_map(function (IEntity $entity): array { $events = array_map(function (IEntityEvent $entityEvent): array { return [ 'eventName' => $entityEvent->getEventName(), 'displayName' => $entityEvent->getDisplayName() ]; }, $entity->getEvents()); return [ 'id' => get_class($entity), 'icon' => $entity->getIcon(), 'name' => $entity->getName(), 'events' => $events, ]; }, $entities); } private function operatorsToArray(array $operators): array { $operators = array_filter($operators, fn (IOperation $operator): bool => $operator->isAvailableForScope($this->getScope())); return array_map(function (IOperation $operator) { return [ 'id' => get_class($operator), 'icon' => $operator->getIcon(), 'name' => $operator->getDisplayName(), 'description' => $operator->getDescription(), 'fixedEntity' => $operator instanceof ISpecificOperation ? $operator->getEntityId() : '', 'isComplex' => $operator instanceof IComplexOperation, 'triggerHint' => $operator instanceof IComplexOperation ? $operator->getTriggerHint() : '', ]; }, $operators); } private function checksToArray(array $checks): array { $checks = array_filter($checks, fn (ICheck $check): bool => $check->isAvailableForScope($this->getScope())); return array_map(function (ICheck $check) { return [ 'id' => get_class($check), 'supportedEntities' => $check->supportedEntities(), ]; }, $checks); } }