-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathInviteRulesConfigController.ts
More file actions
88 lines (76 loc) · 3.04 KB
/
InviteRulesConfigController.ts
File metadata and controls
88 lines (76 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
Copyright 2025 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
import { type MatrixClient, type IContent } from "matrix-js-sdk/src/matrix";
import { type SettingLevel } from "../SettingLevel.ts";
import MatrixClientBackedController from "./MatrixClientBackedController.ts";
import {
type ComputedInviteConfig as ComputedInviteRules,
INVITE_RULES_ACCOUNT_DATA_TYPE,
type InviteConfigAccountData,
} from "../../@types/invite-rules.ts";
import { _t } from "../../languageHandler.tsx";
/**
* Handles invite filtering rules provided by MSC4155.
* This handler does not make use of the roomId parameter.
*/
export default class InviteRulesConfigController extends MatrixClientBackedController {
public static readonly default: ComputedInviteRules = {
allBlocked: false,
};
private static getValidSettingData(content: IContent): ComputedInviteRules {
const expectedConfig = content as InviteConfigAccountData;
return {
allBlocked: !!expectedConfig.blocked_users?.includes("*"),
};
}
public initMatrixClient(newClient: MatrixClient): void {
newClient.doesServerSupportUnstableFeature("org.matrix.msc4155").then((result) => {
this.featureSupported = result;
});
}
public featureSupported?: boolean;
public constructor() {
super();
this.featureSupported = false;
}
private getValue = (): ComputedInviteRules => {
const accountData =
this.client?.getAccountData(INVITE_RULES_ACCOUNT_DATA_TYPE)?.getContent<InviteConfigAccountData>() ?? {};
return InviteRulesConfigController.getValidSettingData(accountData);
};
public getValueOverride(_level: SettingLevel): ComputedInviteRules {
return this.getValue();
}
public get settingDisabled(): true | string {
return this.featureSupported ? true : _t("settings|not_supported");
}
public async beforeChange(
_level: SettingLevel,
_roomId: string | null,
newValue: ComputedInviteRules,
): Promise<boolean> {
if (!this.client) {
return false;
}
const existingContent = this.client
.getAccountData(INVITE_RULES_ACCOUNT_DATA_TYPE)
?.getContent<InviteConfigAccountData>();
const newContent: InviteConfigAccountData = {
...existingContent,
blocked_users: [...(existingContent?.blocked_users ?? [])],
};
if (newValue.allBlocked && !newContent.blocked_users!.includes("*")) {
newContent.blocked_users!.push("*");
} else if (!newValue.allBlocked && newContent.blocked_users?.includes("*")) {
newContent.blocked_users = newContent.blocked_users.filter((u) => u !== "*");
} else {
// No changes required.
return false;
}
await this.client.setAccountData(INVITE_RULES_ACCOUNT_DATA_TYPE, newContent);
return true;
}
}