social/lib/Model/StreamQueue.php

206 wiersze
3.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Social\Model;
use DateTime;
use Exception;
use JsonSerializable;
use OCA\Social\Tools\Traits\TArrayTools;
/**
* Class StreamQueue
*
* @package OCA\Social\Model
*/
class StreamQueue implements JsonSerializable {
use TArrayTools;
public const TYPE_CACHE = 'Cache';
public const TYPE_VERIFY = 'Signature';
public const STATUS_STANDBY = 0;
public const STATUS_RUNNING = 1;
public const STATUS_SUCCESS = 9;
private int $id = 0;
private string $token = '';
private string $streamId = '';
private string $type = '';
private int $status = 0;
private int $tries = 0;
private int $last = 0;
public function __construct(string $token = '', string $type = '', string $streamId = '') {
$this->token = $token;
$this->type = $type;
$this->streamId = $streamId;
}
public function getId(): int {
return $this->id;
}
public function setId(int $id): StreamQueue {
$this->id = $id;
return $this;
}
public function getToken(): string {
return $this->token;
}
/**
* @param string $token
*
* @return StreamQueue
*/
public function setToken(string $token): StreamQueue {
$this->token = $token;
return $this;
}
/**
* @return string
*/
public function getStreamId(): string {
return $this->streamId;
}
/**
* @param string $streamId
*
* @return StreamQueue
*/
public function setStreamId(string $streamId): StreamQueue {
$this->streamId = $streamId;
return $this;
}
/**
* @return string
*/
public function getType(): string {
return $this->type;
}
/**
* @param string $type
*
* @return StreamQueue
*/
public function setType(string $type): StreamQueue {
$this->type = $type;
return $this;
}
/**
* @return int
*/
public function getStatus(): int {
return $this->status;
}
/**
* @param int $status
*
* @return StreamQueue
*/
public function setStatus(int $status): StreamQueue {
$this->status = $status;
return $this;
}
/**
* @return int
*/
public function getTries(): int {
return $this->tries;
}
/**
* @param int $tries
*
* @return StreamQueue
*/
public function setTries(int $tries): StreamQueue {
$this->tries = $tries;
return $this;
}
/**
* @return int
*/
public function getLast(): int {
return $this->last;
}
/**
* @param int $last
*
* @return StreamQueue
*/
public function setLast(int $last): StreamQueue {
$this->last = $last;
return $this;
}
/**
* @param array $data
*/
public function importFromDatabase(array $data) {
$this->setId($this->getInt('id', $data, 0));
$this->setToken($this->get('token', $data, ''));
$this->setStreamId($this->get('stream_id', $data, ''));
$this->setType($this->get('type', $data, ''));
$this->setStatus($this->getInt('status', $data, 0));
$this->setTries($this->getInt('tries', $data, 0));
$last = $this->get('last', $data, '');
if ($last === '') {
$this->setLast(0);
} else {
try {
$dTime = new DateTime($last);
$this->setLast($dTime->getTimestamp());
} catch (Exception $e) {
}
}
}
/**
* @return array
*/
public function jsonSerialize(): array {
return [
'id' => $this->getId(),
'token' => $this->getToken(),
'streamId' => $this->getStreamId(),
'type' => $this->getType(),
'status' => $this->getStatus(),
'tries' => $this->getTries(),
'last' => $this->getLast()
];
}
}