* Expose SDKContextClass via window for debugging * Remove stores from window if they are exposed via sdkContext * Avoid usages of global store instance where React context is accessible * Remove more usages of singleton store getter in favour of contexts * Remove more usages of singleton store getter in favour of contexts * Fix tests by adding SDKContext.Provider * Fix tests by adding SDKContext.Provider * Fix tests by adding SDKContext.Provider * Fix tests by adding SDKContext.Provider * Fix tests * Fix tests * Fix tests * Iterate * Fix bad merge * Iterate * Fix tests * Iterate * Iterate * Iterate * Iterate * Iterate * Improve coverage * Improve coverage
53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2019, 2020 , 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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 User, type MatrixClient, type RoomMember } from "matrix-js-sdk/src/matrix";
|
|
import { type VerificationRequest } from "matrix-js-sdk/src/crypto-api";
|
|
|
|
import dis from "./dispatcher/dispatcher";
|
|
import { RightPanelPhases } from "./stores/right-panel/RightPanelStorePhases";
|
|
import type RightPanelStore from "./stores/right-panel/RightPanelStore";
|
|
import { type IRightPanelCardState } from "./stores/right-panel/RightPanelStoreIPanelState";
|
|
import { findDMForUser } from "./utils/dm/findDMForUser";
|
|
|
|
/**
|
|
* Verify another user.
|
|
*
|
|
* Note: cross-signing must be set up before calling this function.
|
|
*/
|
|
export function verifyUser(rightPanelStore: RightPanelStore, matrixClient: MatrixClient, user: User): void {
|
|
if (matrixClient.isGuest()) {
|
|
dis.dispatch({ action: "require_registration" });
|
|
return;
|
|
}
|
|
const existingRequest = pendingVerificationRequestForUser(matrixClient, user);
|
|
setRightPanel(rightPanelStore, { member: user, verificationRequest: existingRequest });
|
|
}
|
|
|
|
function setRightPanel(rightPanelStore: RightPanelStore, state: IRightPanelCardState): void {
|
|
if (rightPanelStore.roomPhaseHistory.some((card) => card.phase == RightPanelPhases.RoomSummary)) {
|
|
rightPanelStore.pushCard({ phase: RightPanelPhases.EncryptionPanel, state });
|
|
} else {
|
|
rightPanelStore.setCards([
|
|
{ phase: RightPanelPhases.RoomSummary },
|
|
{ phase: RightPanelPhases.MemberInfo, state: { member: state.member } },
|
|
{ phase: RightPanelPhases.EncryptionPanel, state },
|
|
]);
|
|
}
|
|
}
|
|
|
|
export function pendingVerificationRequestForUser(
|
|
matrixClient: MatrixClient,
|
|
user: User | RoomMember,
|
|
): VerificationRequest | undefined {
|
|
const dmRoom = findDMForUser(matrixClient, user.userId);
|
|
if (dmRoom) {
|
|
return matrixClient.getCrypto()!.findVerificationRequestDMInProgress(dmRoom.roomId, user.userId);
|
|
}
|
|
}
|