assetsController = $assetsController; $this->automationMapper = $automationMapper; $this->automationStorage = $automationStorage; $this->pageRenderer = $pageRenderer; $this->registry = $registry; $this->wp = $wp; } public function render() { $this->assetsController->setupAutomationEditorDependencies(); $id = isset($_GET['id']) ? (int)$_GET['id'] : null; $this->wp->doAction(Hooks::EDITOR_BEFORE_LOAD, (int)$id); $automation = $id ? $this->automationStorage->getAutomation($id) : null; if (!$automation) { $notice = new WPNotice( WPNotice::TYPE_ERROR, __('Automation not found.', 'mailpoet') ); $notice->displayWPNotice(); $this->pageRenderer->displayPage('blank.html'); return; } if ($automation->getStatus() === Automation::STATUS_TRASH) { $this->wp->wpSafeRedirect($this->wp->adminUrl('admin.php?page=mailpoet-automation&status=trash')); exit(); } $roles = new \WP_Roles(); $this->pageRenderer->displayPage('automation/editor.html', [ 'registry' => $this->buildRegistry(), 'context' => $this->buildContext(), 'automation' => $this->automationMapper->buildAutomation($automation), 'sub_menu' => 'mailpoet-automation', 'locale_full' => $this->wp->getLocale(), 'api' => [ 'root' => rtrim($this->wp->escUrlRaw($this->wp->restUrl()), '/'), 'nonce' => $this->wp->wpCreateNonce('wp_rest'), ], 'jsonapi' => [ 'root' => rtrim($this->wp->escUrlRaw(admin_url('admin-ajax.php')), '/'), ], 'user_roles' => $roles->get_names(), ]); } private function buildRegistry(): array { $steps = []; foreach ($this->registry->getSteps() as $key => $step) { $steps[$key] = [ 'key' => $step->getKey(), 'name' => $step->getName(), 'subject_keys' => $step->getSubjectKeys(), 'args_schema' => $step->getArgsSchema()->toArray(), ]; } return ['steps' => $steps]; } private function buildContext(): array { $data = []; foreach ($this->registry->getContextFactories() as $key => $factory) { $data[$key] = $factory(); } return $data; } }