automationRunId = $automationRunId; $this->stepId = $stepId; $this->status = self::STATUS_RUNNING; if ($id) { $this->id = $id; } $this->startedAt = new DateTimeImmutable(); $this->error = []; $this->data = []; } public function getId(): int { return $this->id; } public function getAutomationRunId(): int { return $this->automationRunId; } public function getStepId(): string { return $this->stepId; } public function getStatus(): string { return $this->status; } public function setStatus(string $status): void { if (!in_array($status, self::STATUS_ALL, true)) { throw new InvalidArgumentException("Invalid status '$status'."); } $this->status = $status; } public function getError(): array { return $this->error; } public function getData(): array { return $this->data; } public function getCompletedAt(): ?DateTimeImmutable { return $this->completedAt; } public function setCompletedAt(DateTimeImmutable $completedAt): void { $this->completedAt = $completedAt; } /** * @param string $key * @param mixed $value * @return void */ public function setData(string $key, $value): void { if (!$this->isDataStorable($value)) { throw new InvalidArgumentException("Invalid data provided for key '$key'. Only scalar values and arrays of scalar values are allowed."); } $this->data[$key] = $value; } public function getStartedAt(): DateTimeImmutable { return $this->startedAt; } public function toArray(): array { return [ 'automation_run_id' => $this->automationRunId, 'step_id' => $this->stepId, 'status' => $this->status, 'started_at' => $this->startedAt->format(DateTimeImmutable::W3C), 'completed_at' => $this->completedAt ? $this->completedAt->format(DateTimeImmutable::W3C) : null, 'error' => Json::encode($this->error), 'data' => Json::encode($this->data), ]; } public function setError(Throwable $error): void { $error = [ 'message' => $error->getMessage(), 'errorClass' => get_class($error), 'code' => $error->getCode(), 'trace' => $error->getTrace(), ]; $this->error = $error; } public static function fromArray(array $data): self { $automationRunLog = new AutomationRunLog((int)$data['automation_run_id'], $data['step_id']); $automationRunLog->id = (int)$data['id']; $automationRunLog->status = $data['status']; $automationRunLog->error = Json::decode($data['error']); $automationRunLog->data = Json::decode($data['data']); $automationRunLog->startedAt = new DateTimeImmutable($data['started_at']); if ($data['completed_at']) { $automationRunLog->completedAt = new DateTimeImmutable($data['completed_at']); } return $automationRunLog; } /** * @param mixed $data * @return bool */ private function isDataStorable($data): bool { if (is_object($data)) { return false; } if (is_scalar($data)) { return true; } if (!is_array($data)) { return false; } foreach ($data as $value) { if (!$this->isDataStorable($value)) { return false; } } return true; } }