Files
piratepoet/mailpoet/lib/AdminPages/Pages/AutomationEditor.php
David Remer 1fcdccaa33 Expost json api endpoint
[PREMIUM-213]
2022-12-16 14:11:34 +01:00

112 lines
3.3 KiB
PHP

<?php declare(strict_types = 1);
namespace MailPoet\AdminPages\Pages;
use MailPoet\AdminPages\PageRenderer;
use MailPoet\Automation\Engine\Data\Automation;
use MailPoet\Automation\Engine\Hooks;
use MailPoet\Automation\Engine\Mappers\AutomationMapper;
use MailPoet\Automation\Engine\Registry;
use MailPoet\Automation\Engine\Storage\AutomationStorage;
use MailPoet\Form\AssetsController;
use MailPoet\Segments\SegmentsRepository;
use MailPoet\WP\Functions as WPFunctions;
use MailPoet\WP\Notice as WPNotice;
class AutomationEditor {
/** @var AssetsController */
private $assetsController;
/** @var AutomationMapper */
private $automationMapper;
/** @var AutomationStorage */
private $automationStorage;
/** @var PageRenderer */
private $pageRenderer;
/** @var Registry */
private $registry;
/** @var SegmentsRepository */
private $segmentsRepository;
/** @var WPFunctions */
private $wp;
public function __construct(
AssetsController $assetsController,
AutomationMapper $automationMapper,
AutomationStorage $automationStorage,
PageRenderer $pageRenderer,
Registry $registry,
SegmentsRepository $segmentsRepository,
WPFunctions $wp
) {
$this->assetsController = $assetsController;
$this->automationMapper = $automationMapper;
$this->automationStorage = $automationStorage;
$this->pageRenderer = $pageRenderer;
$this->registry = $registry;
$this->segmentsRepository = $segmentsRepository;
$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();
}
$segments = [];
foreach ($this->segmentsRepository->findAll() as $segment) {
$segments[] = ['id' => $segment->getId(), 'name' => $segment->getName(), 'type' => $segment->getType()];
}
$roles = new \WP_Roles();
$this->pageRenderer->displayPage('automation/editor.html', [
'context' => $this->buildContext(),
'automation' => $this->automationMapper->buildAutomation($automation),
'sub_menu' => 'mailpoet-automation',
'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(),
'segments' => $segments,
]);
}
private function buildContext(): array {
$steps = [];
foreach ($this->registry->getSteps() as $key => $step) {
$steps[$key] = [
'key' => $step->getKey(),
'name' => $step->getName(),
'args_schema' => $step->getArgsSchema()->toArray(),
];
}
return ['steps' => $steps];
}
}