219 lines
3.4 KiB
PHP
219 lines
3.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
namespace OCA\Circles\Model\GlobalScale;
|
|
|
|
use JsonSerializable;
|
|
use OCA\Circles\Exceptions\JsonException;
|
|
use OCA\Circles\Exceptions\ModelException;
|
|
use OCA\Circles\Tools\Traits\TArrayTools;
|
|
|
|
/**
|
|
* Class GSEvent
|
|
*
|
|
* @package OCA\Circles\Model\GlobalScale
|
|
*/
|
|
class GSWrapper implements JsonSerializable {
|
|
use TArrayTools;
|
|
|
|
|
|
public const STATUS_INIT = 0;
|
|
public const STATUS_FAILED = 1;
|
|
public const STATUS_DONE = 8;
|
|
public const STATUS_OVER = 9;
|
|
|
|
|
|
/** @var string */
|
|
private $token = '';
|
|
|
|
/** @var GSEvent */
|
|
private $event;
|
|
|
|
/** @var string */
|
|
private $instance = '';
|
|
|
|
/** @var int */
|
|
private $severity = GSEvent::SEVERITY_LOW;
|
|
|
|
/** @var int */
|
|
private $status = 0;
|
|
|
|
/** @var int */
|
|
private $creation;
|
|
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getToken(): string {
|
|
return $this->token;
|
|
}
|
|
|
|
/**
|
|
* @param string $token
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setToken(string $token): self {
|
|
$this->token = $token;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return GSEvent
|
|
*/
|
|
public function getEvent(): GSEvent {
|
|
return $this->event;
|
|
}
|
|
|
|
/**
|
|
* @param GSEvent $event
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setEvent(GSEvent $event): self {
|
|
$this->event = $event;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function hasEvent(): bool {
|
|
return ($this->event !== null);
|
|
}
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getInstance(): string {
|
|
return $this->instance;
|
|
}
|
|
|
|
/**
|
|
* @param string $instance
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setInstance(string $instance): self {
|
|
$this->instance = $instance;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getSeverity(): int {
|
|
return $this->severity;
|
|
}
|
|
|
|
/**
|
|
* @param int $severity
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setSeverity(int $severity): self {
|
|
$this->severity = $severity;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getStatus(): int {
|
|
return $this->status;
|
|
}
|
|
|
|
/**
|
|
* @param int $status
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setStatus(int $status): self {
|
|
$this->status = $status;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getCreation(): int {
|
|
return $this->creation;
|
|
}
|
|
|
|
/**
|
|
* @param int $creation
|
|
*
|
|
* @return GSWrapper
|
|
*/
|
|
public function setCreation(int $creation): self {
|
|
$this->creation = $creation;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return GSWrapper
|
|
* @throws JsonException
|
|
* @throws ModelException
|
|
*/
|
|
public function import(array $data): self {
|
|
$this->setToken($this->get('token', $data));
|
|
$this->setInstance($this->get('instance', $data));
|
|
$this->setSeverity($this->getInt('severity', $data, GSEvent::SEVERITY_LOW));
|
|
$this->setStatus($this->getInt('status', $data, GSWrapper::STATUS_INIT));
|
|
|
|
$event = new GSEvent();
|
|
$event->importFromJson($this->get('event', $data));
|
|
|
|
$this->setEvent($event);
|
|
|
|
$this->setCreation($this->getInt('creation', $data));
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
$arr = [
|
|
'id' => $this->getToken(),
|
|
'event' => $this->getEvent(),
|
|
'severity' => $this->getSeverity(),
|
|
'status' => $this->getStatus(),
|
|
'creation' => $this->getCreation()
|
|
];
|
|
|
|
$this->cleanArray($arr);
|
|
|
|
return $arr;
|
|
}
|
|
}
|