31a28b1a9e
This migrates one bucket of files using some amount of Flow typing to mark them as TypeScript instead. The remaining type errors are fixed in subsequent commits.
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
/*
|
|
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 {MatrixGlob} from "../utils/MatrixGlob";
|
|
|
|
// Inspiration largely taken from Mjolnir itself
|
|
|
|
export const RECOMMENDATION_BAN = "m.ban";
|
|
export const RECOMMENDATION_BAN_TYPES = [RECOMMENDATION_BAN, "org.matrix.mjolnir.ban"];
|
|
|
|
export function recommendationToStable(recommendation: string, unstable = true): string {
|
|
if (RECOMMENDATION_BAN_TYPES.includes(recommendation)) {
|
|
return unstable ? RECOMMENDATION_BAN_TYPES[RECOMMENDATION_BAN_TYPES.length - 1] : RECOMMENDATION_BAN;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
export class ListRule {
|
|
_glob: MatrixGlob;
|
|
_entity: string;
|
|
_action: string;
|
|
_reason: string;
|
|
_kind: string;
|
|
|
|
constructor(entity: string, action: string, reason: string, kind: string) {
|
|
this._glob = new MatrixGlob(entity);
|
|
this._entity = entity;
|
|
this._action = recommendationToStable(action, false);
|
|
this._reason = reason;
|
|
this._kind = kind;
|
|
}
|
|
|
|
get entity(): string {
|
|
return this._entity;
|
|
}
|
|
|
|
get reason(): string {
|
|
return this._reason;
|
|
}
|
|
|
|
get kind(): string {
|
|
return this._kind;
|
|
}
|
|
|
|
get recommendation(): string {
|
|
return this._action;
|
|
}
|
|
|
|
isMatch(entity: string): boolean {
|
|
return this._glob.test(entity);
|
|
}
|
|
}
|