Return workflow list data in workflows endpoint

[MAILPOET-4287]
This commit is contained in:
Jan Jakes
2022-04-27 13:27:37 +02:00
committed by Veljko V
parent 47c5111996
commit 3660d12dd0
2 changed files with 27 additions and 2 deletions

View File

@@ -2,12 +2,37 @@
namespace MailPoet\Automation\Engine\Endpoints\Workflows;
use DateTimeImmutable;
use MailPoet\Automation\Engine\API\Endpoint;
use MailPoet\Automation\Engine\API\Request;
use MailPoet\Automation\Engine\API\Response;
use MailPoet\Automation\Engine\Storage\WorkflowStorage;
use MailPoet\Automation\Engine\Workflows\Workflow;
class WorkflowsGetEndpoint extends Endpoint {
/** @var WorkflowStorage */
private $workflowStorage;
public function __construct(
WorkflowStorage $workflowStorage
) {
$this->workflowStorage = $workflowStorage;
}
public function handle(Request $request): Response {
return new Response(['message' => 'Hello world.']);
$workflows = $this->workflowStorage->getWorkflows();
return new Response(array_map(function (Workflow $workflow) {
return $this->buildWorkflow($workflow);
}, $workflows));
}
private function buildWorkflow(Workflow $workflow): array {
return [
'id' => $workflow->getId(),
'name' => $workflow->getName(),
'status' => $workflow->getStatus(),
'created_at' => $workflow->getCreatedAt()->format(DateTimeImmutable::W3C),
'updated_at' => $workflow->getUpdatedAt()->format(DateTimeImmutable::W3C),
];
}
}