2025-11-27 18:42:58 +00:00
|
|
|
/*
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-02-26 11:41:04 +00:00
|
|
|
import { EventType } from "matrix-js-sdk/src/matrix";
|
|
|
|
|
|
2025-11-27 18:42:58 +00:00
|
|
|
import { type SettingLevel } from "../SettingLevel.ts";
|
|
|
|
|
import { _td } from "../../languageHandler.tsx";
|
|
|
|
|
import ServerSupportUnstableFeatureController from "./ServerSupportUnstableFeatureController.ts";
|
2026-06-30 13:49:28 +01:00
|
|
|
import { type SettingKey } from "../Settings.tsx";
|
|
|
|
|
import type { WatchManager } from "../WatchManager.ts";
|
2025-11-27 18:42:58 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles invite filtering rules provided by MSC4380.
|
|
|
|
|
* This handler does not make use of the roomId parameter.
|
|
|
|
|
*/
|
|
|
|
|
export default class BlockInvitesConfigController extends ServerSupportUnstableFeatureController {
|
2026-06-30 13:49:28 +01:00
|
|
|
public constructor(settingName: SettingKey, watchers: WatchManager) {
|
|
|
|
|
super(settingName, watchers, [["org.matrix.msc4380.stable"]], "v1.18", _td("settings|not_supported"));
|
2025-11-27 18:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getValueOverride(_level: SettingLevel): boolean {
|
2026-02-26 11:41:04 +00:00
|
|
|
const accountData = this.client?.getAccountData(EventType.InvitePermissionConfig)?.getContent();
|
2025-11-27 18:42:58 +00:00
|
|
|
return accountData?.default_action == "block";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async beforeChange(_level: SettingLevel, _roomId: string | null, newValue: boolean): Promise<boolean> {
|
|
|
|
|
if (!this.client) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2026-02-26 11:41:04 +00:00
|
|
|
|
|
|
|
|
await this.client.setAccountData(EventType.InvitePermissionConfig, newValue ? { default_action: "block" } : {});
|
2025-11-27 18:42:58 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|