feat: add option to require moderator

fix #23
pull/75/head
sualko 2020-08-29 14:37:50 +02:00
parent 68e3bb561d
commit 60d43ae478
13 changed files with 126 additions and 5 deletions

View File

@ -211,4 +211,12 @@ class API {
return $server->getApiVersion()->getVersion();
}
public function isRunning(Room $room): bool {
$isMeetingRunningParams = new IsMeetingRunningParameters($room->getUid());
$response = $this->getServer()->isMeetingRunning($isMeetingRunningParams);
return $response->success() && $response->isRunning();
}
}

View File

@ -114,6 +114,13 @@ class JoinController extends Controller {
return $response;
}
if ($room->requireModerator && ($userId === null || !$this->permission->isModerator($room, $userId)) && !$this->api->isRunning($room)) {
return new TemplateResponse($this->appName, 'waiting', [
'room' => $room->name,
'name' => $displayname,
], 'guest');
}
$creationDate = $this->api->createMeeting($room, $presentation);
$joinUrl = $this->api->createJoinUrl($room, $creationDate, $displayname, $userId);

View File

@ -113,7 +113,8 @@ class RoomController extends Controller {
int $maxParticipants,
bool $record,
string $access,
bool $everyoneIsModerator
bool $everyoneIsModerator,
bool $requireModerator
): DataResponse {
$room = $this->service->find($id);
@ -136,8 +137,8 @@ class RoomController extends Controller {
return new DataResponse('Access type not allowed.', Http::STATUS_BAD_REQUEST);
}
return $this->handleNotFound(function () use ($id, $name, $welcome, $maxParticipants, $record, $everyoneIsModerator, $access) {
return $this->service->update($id, $name, $welcome, $maxParticipants, $record, $access, $everyoneIsModerator);
return $this->handleNotFound(function () use ($id, $name, $welcome, $maxParticipants, $record, $access, $everyoneIsModerator, $requireModerator) {
return $this->service->update($id, $name, $welcome, $maxParticipants, $record, $access, $everyoneIsModerator, $requireModerator);
});
}

View File

@ -18,6 +18,8 @@ use OCP\AppFramework\Db\Entity;
* @method string getAccess()
* @method string getPassword()
* @method bool getEveryoneIsModerator()
* @method bool getRequireModerator()
* @method bool getEveryoneIsModerator()
* @method void setUid(string $uid)
* @method void setName(string $name)
* @method void setAttendeePassword(string $pw)
@ -29,6 +31,7 @@ use OCP\AppFramework\Db\Entity;
* @method void setAccess(string $access)
* @method void setPassword(string $pw)
* @method void setEveryoneIsModerator(bool $everyone)
* @method void setRequireModerator(bool $require)
*/
class Room extends Entity implements JsonSerializable {
public const ACCESS_PUBLIC = 'public';
@ -50,11 +53,13 @@ class Room extends Entity implements JsonSerializable {
public $access = self::ACCESS_PUBLIC;
public $password;
public $everyoneIsModerator;
public $requireModerator = false;
public function __construct() {
$this->addType('maxParticipants', 'integer');
$this->addType('record', 'boolean');
$this->addType('everyoneIsModerator', 'boolean');
$this->addType('requireModerator', 'boolean');
}
public function jsonSerialize(): array {
@ -69,6 +74,7 @@ class Room extends Entity implements JsonSerializable {
'access' => $this->access,
'password' => $this->password,
'everyoneIsModerator' => boolval($this->everyoneIsModerator),
'requireModerator' => boolval($this->requireModerator),
];
}
}

View File

@ -0,0 +1,41 @@
<?php
declare(strict_types=1);
namespace OCA\BigBlueButton\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
/**
* Auto-generated migration step: Please modify to your needs!
*/
class Version000000Date20200829112301 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
$schema = $schemaClosure();
if ($schema->hasTable('bbb_rooms')) {
$table = $schema->getTable('bbb_rooms');
if (!$table->hasColumn('require_moderator')) {
$table->addColumn('require_moderator', 'boolean', [
'notnull' => true,
'default' => false,
]);
}
return $schema;
}
return null;
}
}

View File

@ -73,7 +73,7 @@ class RoomService {
return $this->mapper->insert($room);
}
public function update($id, $name, $welcome, $maxParticipants, $record, $access, $everyoneIsModerator) {
public function update($id, $name, $welcome, $maxParticipants, $record, $access, $everyoneIsModerator, $requireModerator) {
try {
$room = $this->mapper->find($id);
@ -87,6 +87,7 @@ class RoomService {
$room->setRecord($record);
$room->setAccess($access);
$room->setEveryoneIsModerator($everyoneIsModerator);
$room->setRequireModerator($requireModerator);
return $this->mapper->update($room);
} catch (Exception $e) {

13
templates/waiting.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/** @var $_ array */
/** @var $l \OCP\IL10N */
style('core', 'guest');
script('bbb', 'waiting');
?>
<div class="update bbb">
<h2><?php p($_['room']); ?></h2>
<h3><?php p($l->t('Hello %s', $_['name'])); ?></h3>
<p id="bbb-waiting-text"></p>
</div>

View File

@ -36,6 +36,7 @@ export interface Room {
access: Access;
password?: string;
everyoneIsModerator: boolean;
requireModerator: boolean;
}
export interface RoomShare {

View File

@ -77,6 +77,10 @@
margin: 3em;
}
p {
margin-bottom: 1em;
}
.icon {
display: inline-block;
opacity: 0;

View File

@ -12,6 +12,7 @@ const descriptions: { [key: string]: string } = {
recording: t('bbb', 'If enabled, the moderator is able to start the recording.'),
access: t('bbb', 'Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.'),
moderator: t('bbb', 'A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.'),
requireModerator: t('bbb', 'If enabled, normal users have to wait until a moderator is in the room.'),
};
type Props = {
@ -127,7 +128,18 @@ const EditRoomDialog: React.FC<Props> = ({ room, restriction, updateProperty, op
onChange={(event) => updateProperty('record', event.target.checked)} />
<label htmlFor={`bbb-record-${room.id}`}>{t('bbb', 'Recording')}</label>
</div>
<em>{descriptions.recording}</em>
<p><em>{descriptions.recording}</em></p>
</div>
<div>
<div>
<input id={`bbb-requireModerator-${room.id}`}
type="checkbox"
className="checkbox"
checked={room.requireModerator}
onChange={(event) => updateProperty('requireModerator', event.target.checked)} />
<label htmlFor={`bbb-requireModerator-${room.id}`}>{t('bbb', 'Require moderator to start room')}</label>
</div>
<p><em>{descriptions.requireModerator}</em></p>
</div>
</Dialog>
);

10
ts/waiting.scss Normal file
View File

@ -0,0 +1,10 @@
.bbb {
h2 {
font-size: 2em;
margin-bottom: 1em;
}
h3 {
color: #ffffff;
}
}

14
ts/waiting.ts Normal file
View File

@ -0,0 +1,14 @@
import './waiting.scss';
$(() => {
let countdown = 30;
const interval = window.setInterval(() => {
$('#bbb-waiting-text').text(t('bbb', 'This room is not open yet. We will try it again in {sec} seconds. Please wait.', {sec: (--countdown).toString()}));
if (countdown === 0) {
window.location.reload();
window.clearInterval(interval);
}
}, 1000);
});

View File

@ -16,6 +16,9 @@ module.exports = {
],
join: [
path.join(__dirname, 'ts', 'join.ts'),
],
waiting: [
path.join(__dirname, 'ts', 'waiting.ts'),
]
},
output: {