117 lines
3.2 KiB
PHP
117 lines
3.2 KiB
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\AdminPages\Pages;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoet\AdminPages\AssetsController;
|
|
use MailPoet\AdminPages\PageRenderer;
|
|
use MailPoet\Automation\Engine\Mappers\AutomationMapper;
|
|
use MailPoet\Automation\Engine\Registry;
|
|
use MailPoet\Automation\Engine\Storage\AutomationStorage;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
use MailPoet\WP\Notice as WPNotice;
|
|
|
|
class AutomationAnalytics {
|
|
|
|
/** @var AssetsController */
|
|
private $assetsController;
|
|
|
|
/** @var PageRenderer */
|
|
private $pageRenderer;
|
|
|
|
/** @var AutomationStorage */
|
|
private $automationStorage;
|
|
|
|
/** @var AutomationMapper */
|
|
private $automationMapper;
|
|
|
|
/** @var Registry */
|
|
private $registry;
|
|
|
|
/** @var WPFunctions */
|
|
private $wp;
|
|
|
|
public function __construct(
|
|
AssetsController $assetsController,
|
|
PageRenderer $pageRenderer,
|
|
AutomationStorage $automationStorage,
|
|
AutomationMapper $automationMapper,
|
|
Registry $registry,
|
|
WPFunctions $wp
|
|
) {
|
|
$this->assetsController = $assetsController;
|
|
$this->pageRenderer = $pageRenderer;
|
|
$this->automationStorage = $automationStorage;
|
|
$this->automationMapper = $automationMapper;
|
|
$this->registry = $registry;
|
|
$this->wp = $wp;
|
|
}
|
|
|
|
public function render() {
|
|
$this->assetsController->setupAutomationAnalyticsDependencies();
|
|
|
|
$id = isset($_GET['id']) ? (int)$_GET['id'] : null;
|
|
$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;
|
|
}
|
|
|
|
$this->pageRenderer->displayPage('automation/analytics.html', [
|
|
'registry' => $this->buildRegistry(),
|
|
'context' => $this->buildContext(),
|
|
'automation' => $this->automationMapper->buildAutomation($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')), '/'),
|
|
],
|
|
]);
|
|
}
|
|
|
|
private function buildRegistry(): array {
|
|
$steps = [];
|
|
foreach ($this->registry->getSteps() as $key => $step) {
|
|
$steps[$key] = [
|
|
'key' => $step->getKey(),
|
|
'name' => $step->getName(),
|
|
'args_schema' => $step->getArgsSchema()->toArray(),
|
|
];
|
|
}
|
|
|
|
$subjects = [];
|
|
foreach ($this->registry->getSubjects() as $key => $subject) {
|
|
$subjects[$key] = [
|
|
'key' => $subject->getKey(),
|
|
'name' => $subject->getName(),
|
|
'args_schema' => $subject->getArgsSchema()->toArray(),
|
|
'field_keys' => array_map(function ($field) {
|
|
return $field->getKey();
|
|
}, $subject->getFields()),
|
|
];
|
|
}
|
|
|
|
return [
|
|
'steps' => $steps,
|
|
'subjects' => $subjects,
|
|
];
|
|
}
|
|
|
|
private function buildContext(): array {
|
|
$data = [];
|
|
foreach ($this->registry->getContextFactories() as $key => $factory) {
|
|
$data[$key] = $factory();
|
|
}
|
|
return $data;
|
|
}
|
|
}
|