2019-09-25 22:13:20 -04:00
|
|
|
/*
|
|
|
|
Copyright 2019 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as path from "path";
|
|
|
|
import {
|
|
|
|
AutojoinRoomsMixin,
|
2019-10-31 11:55:34 -04:00
|
|
|
LogLevel,
|
2019-09-25 22:13:20 -04:00
|
|
|
LogService,
|
|
|
|
MatrixClient,
|
2019-10-03 00:20:37 -04:00
|
|
|
PantalaimonClient,
|
2019-09-27 15:57:36 -04:00
|
|
|
Permalinks,
|
2019-09-25 22:13:20 -04:00
|
|
|
RichConsoleLogger,
|
|
|
|
SimpleFsStorageProvider
|
|
|
|
} from "matrix-bot-sdk";
|
|
|
|
import config from "./config";
|
2019-09-27 17:44:28 -04:00
|
|
|
import BanList from "./models/BanList";
|
2019-09-27 17:15:10 -04:00
|
|
|
import { Mjolnir } from "./Mjolnir";
|
2019-09-25 22:13:20 -04:00
|
|
|
|
|
|
|
LogService.setLogger(new RichConsoleLogger());
|
2019-10-31 11:55:34 -04:00
|
|
|
LogService.setLevel(LogLevel.fromString(config.logLevel, LogLevel.DEBUG));
|
|
|
|
|
|
|
|
LogService.info("index", "Starting bot...");
|
2019-09-25 22:13:20 -04:00
|
|
|
|
2019-10-03 00:20:37 -04:00
|
|
|
(async function () {
|
|
|
|
const storage = new SimpleFsStorageProvider(path.join(config.dataPath, "bot.json"));
|
2019-09-25 22:13:20 -04:00
|
|
|
|
2019-10-03 00:20:37 -04:00
|
|
|
let client: MatrixClient;
|
|
|
|
if (config.pantalaimon.use) {
|
|
|
|
const pantalaimon = new PantalaimonClient(config.homeserverUrl, storage);
|
|
|
|
client = await pantalaimon.createClientWithCredentials(config.pantalaimon.username, config.pantalaimon.password);
|
|
|
|
} else {
|
|
|
|
client = new MatrixClient(config.homeserverUrl, config.accessToken, storage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.autojoin) {
|
|
|
|
AutojoinRoomsMixin.setupOnClient(client);
|
|
|
|
}
|
2019-09-25 22:13:20 -04:00
|
|
|
|
2019-09-27 17:15:10 -04:00
|
|
|
const banLists: BanList[] = [];
|
2019-09-27 17:44:28 -04:00
|
|
|
const protectedRooms: { [roomId: string]: string } = {};
|
2019-09-27 17:15:10 -04:00
|
|
|
|
2019-09-27 15:57:36 -04:00
|
|
|
const joinedRooms = await client.getJoinedRooms();
|
|
|
|
|
2019-09-27 16:36:23 -04:00
|
|
|
// Ensure we're also joined to the rooms we're protecting
|
|
|
|
for (const roomRef of config.protectedRooms) {
|
|
|
|
const permalink = Permalinks.parseUrl(roomRef);
|
|
|
|
if (!permalink.roomIdOrAlias) continue;
|
|
|
|
|
|
|
|
let roomId = await client.resolveRoom(permalink.roomIdOrAlias);
|
|
|
|
if (!joinedRooms.includes(roomId)) {
|
|
|
|
roomId = await client.joinRoom(permalink.roomIdOrAlias, permalink.viaServers);
|
|
|
|
}
|
|
|
|
|
|
|
|
protectedRooms[roomId] = roomRef;
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:57:36 -04:00
|
|
|
// Ensure we're also in the management room
|
2019-09-27 17:15:10 -04:00
|
|
|
const managementRoomId = await client.joinRoom(config.managementRoom);
|
2019-09-27 15:57:36 -04:00
|
|
|
await client.sendNotice(managementRoomId, "Mjolnir is starting up. Use !mjolnir to query status.");
|
|
|
|
|
2019-10-08 12:57:03 -04:00
|
|
|
const bot = new Mjolnir(client, managementRoomId, protectedRooms, banLists);
|
2019-09-27 17:15:10 -04:00
|
|
|
await bot.start();
|
2019-09-27 15:57:36 -04:00
|
|
|
})();
|