mjolnir/src/config.ts

156 lines
4.0 KiB
TypeScript
Raw Normal View History

2019-09-26 02:13:20 +00:00
/*
Copyright 2019, 2021 The Matrix.org Foundation C.I.C.
2019-09-26 02:13:20 +00:00
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 config from "config";
2019-11-07 01:46:49 +00:00
import { MatrixClient } from "matrix-bot-sdk";
2019-09-26 02:13:20 +00:00
/**
* The configuration, as read from production.yaml
*
* See file default.yaml for the documentation on individual options.
*/
// The object is magically generated by external lib `config`
// from the file specified by `NODE_ENV`, e.g. production.yaml
// or harness.yaml.
2019-09-26 02:13:20 +00:00
interface IConfig {
homeserverUrl: string;
rawHomeserverUrl: string;
2019-09-26 02:13:20 +00:00
accessToken: string;
pantalaimon: {
use: boolean;
username: string;
password: string;
};
2019-09-26 02:13:20 +00:00
dataPath: string;
acceptInvitesFromGroup: string;
autojoinOnlyIfManager: boolean;
recordIgnoredInvites: boolean;
managementRoom: string;
verboseLogging: boolean;
logLevel: "DEBUG" | "INFO" | "WARN" | "ERROR";
2019-10-05 03:02:37 +00:00
syncOnStartup: boolean;
verifyPermissionsOnStartup: boolean;
2019-10-09 13:51:30 +00:00
noop: boolean;
protectedRooms: string[]; // matrix.to urls
fasterMembershipChecks: boolean;
automaticallyRedactForReasons: string[]; // case-insensitive globs
protectAllJoinedRooms: boolean;
commands: {
allowNoPrefix: boolean;
additionalPrefixes: string[];
confirmWildcardBan: boolean;
};
protections: {
wordlist: {
words: string[];
minutesBeforeTrusting: number;
};
};
2020-06-12 14:03:08 +00:00
health: {
healthz: {
enabled: boolean;
port: number;
address: string;
endpoint: string;
healthyStatus: number;
unhealthyStatus: number;
};
};
web: {
enabled: boolean;
port: number;
address: string;
abuseReporting: {
enabled: boolean;
}
ruleServer?: {
enabled: boolean;
}
}
2019-11-07 01:46:49 +00:00
/**
* Config options only set at runtime. Try to avoid using the objects
* here as much as possible.
*/
RUNTIME: {
2021-07-22 06:38:44 +00:00
client?: MatrixClient;
2019-11-07 01:46:49 +00:00
};
2019-09-26 02:13:20 +00:00
}
const defaultConfig: IConfig = {
homeserverUrl: "http://localhost:8008",
rawHomeserverUrl: "http://localhost:8008",
accessToken: "NONE_PROVIDED",
pantalaimon: {
use: false,
username: "",
password: "",
},
dataPath: "/data/storage",
acceptInvitesFromGroup: '+example:example.org',
autojoinOnlyIfManager: false,
recordIgnoredInvites: false,
managementRoom: "!noop:example.org",
verboseLogging: false,
logLevel: "INFO",
syncOnStartup: true,
verifyPermissionsOnStartup: true,
noop: false,
protectedRooms: [],
fasterMembershipChecks: false,
automaticallyRedactForReasons: ["spam", "advertising"],
protectAllJoinedRooms: false,
commands: {
allowNoPrefix: false,
additionalPrefixes: [],
confirmWildcardBan: true,
},
protections: {
wordlist: {
words: [],
minutesBeforeTrusting: 20
}
},
2020-06-12 14:03:08 +00:00
health: {
healthz: {
enabled: false,
port: 8080,
address: "0.0.0.0",
endpoint: "/healthz",
healthyStatus: 200,
unhealthyStatus: 418,
},
},
web: {
enabled: false,
port: 8080,
address: "localhost",
abuseReporting: {
enabled: false,
},
ruleServer: {
enabled: false,
},
},
// Needed to make the interface happy.
RUNTIME: {
},
};
const finalConfig = <IConfig>Object.assign({}, defaultConfig, config);
export default finalConfig;