2021-09-14 04:31:59 -04:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2021-09-08 11:44:06 -04:00
|
|
|
import {
|
|
|
|
MatrixClient,
|
|
|
|
Permalinks,
|
|
|
|
} from "matrix-bot-sdk";
|
|
|
|
import config from "../../src/config";
|
|
|
|
|
|
|
|
export async function createManagementRoom(client: MatrixClient) {
|
|
|
|
let roomId = await client.createRoom();
|
|
|
|
return await client.createRoomAlias(config.managementRoom, roomId);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function ensureManagementRoomExists(client: MatrixClient): Promise<string> {
|
|
|
|
return await client.resolveRoom(config.managementRoom).catch(async e => {
|
|
|
|
if (e?.body?.errcode === 'M_NOT_FOUND') {
|
|
|
|
console.info("moderation room hasn't been created yet, so we're making it now.")
|
|
|
|
return await createManagementRoom(client);
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function ensureLobbyRoomExists(client: MatrixClient): Promise<string> {
|
|
|
|
const alias = Permalinks.parseUrl(config.protectedRooms[0]).roomIdOrAlias;
|
|
|
|
return await client.resolveRoom(alias).catch(async e => {
|
|
|
|
if (e?.body?.errcode === 'M_NOT_FOUND') {
|
|
|
|
console.info(`${alias} hasn't been created yet, so we're making it now.`)
|
|
|
|
return await client.createRoomAlias(alias, await client.createRoom());
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
}
|