129 lines
2.1 KiB
PHP
129 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\Model;
|
|
|
|
use JsonSerializable;
|
|
use OCA\RelatedResources\Tools\Db\IQueryRow;
|
|
use OCA\RelatedResources\Tools\Traits\TArrayTools;
|
|
|
|
class TalkRoom implements IQueryRow, JsonSerializable {
|
|
use TArrayTools;
|
|
|
|
private int $roomId = 0;
|
|
private string $roomName = '';
|
|
private int $roomType = 0;
|
|
private string $token = '';
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
|
|
/**
|
|
* @param int $roomId
|
|
*
|
|
* @return TalkRoom
|
|
*/
|
|
public function setRoomId(int $roomId): self {
|
|
$this->roomId = $roomId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getRoomId(): int {
|
|
return $this->roomId;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $roomName
|
|
*
|
|
* @return TalkRoom
|
|
*/
|
|
public function setRoomName(string $roomName): self {
|
|
$this->roomName = $roomName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getRoomName(): string {
|
|
return $this->roomName;
|
|
}
|
|
|
|
/**
|
|
* @param int $roomType
|
|
*
|
|
* @return TalkRoom
|
|
*/
|
|
public function setRoomType(int $roomType): self {
|
|
$this->roomType = $roomType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getRoomType(): int {
|
|
return $this->roomType;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $token
|
|
*/
|
|
public function setToken(string $token): self {
|
|
$this->token = $token;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getToken(): string {
|
|
return $this->token;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return IQueryRow
|
|
*/
|
|
public function importFromDatabase(array $data): IQueryRow {
|
|
$this->setRoomId($this->getInt('id', $data))
|
|
->setRoomName($this->get('name', $data))
|
|
->setRoomType($this->getInt('type', $data))
|
|
->setToken($this->get('token', $data));
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'roomId' => $this->getRoomId(),
|
|
'roomName' => $this->getRoomName(),
|
|
'roomType' => $this->getRoomType(),
|
|
'token' => $this->getToken()
|
|
];
|
|
}
|
|
}
|