cloud_bbb/lib/Db/Room.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2020-04-26 11:36:41 +02:00
<?php
namespace OCA\BigBlueButton\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
class Room extends Entity implements JsonSerializable
{
const ACCESS_PUBLIC = 'public';
const ACCESS_PASSWORD = 'password';
const ACCESS_WAITING_ROOM = 'waiting_room';
const ACCESS_INTERNAL = 'internal';
const ACCESS_INTERNAL_RESTRICTED = 'internal_restricted';
2020-04-26 11:36:41 +02:00
public $uid;
public $name;
public $attendeePassword;
public $moderatorPassword;
public $welcome;
public $maxParticipants;
public $record;
public $userId;
public $access;
public $password;
2020-04-26 11:36:41 +02:00
2020-04-27 17:16:18 +02:00
public function __construct()
{
$this->addType('maxParticipants', 'integer');
$this->addType('record', 'boolean');
}
2020-04-26 11:36:41 +02:00
public function jsonSerialize(): array
{
return [
'id' => $this->id,
'uid' => $this->uid,
'name' => $this->name,
'welcome' => $this->welcome,
'maxParticipants' => (int) $this->maxParticipants,
'record' => boolval($this->record),
'access' => $this->access,
'password' => $this->password,
2020-04-26 11:36:41 +02:00
];
}
}