91a3cb03c1
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
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 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 async function verifyUser(matrixClient: MatrixClient, user: User): Promise<void> {
|
|
if (matrixClient.isGuest()) {
|
|
dis.dispatch({ action: "require_registration" });
|
|
return;
|
|
}
|
|
const existingRequest = pendingVerificationRequestForUser(matrixClient, user);
|
|
setRightPanel({ member: user, verificationRequest: existingRequest });
|
|
}
|
|
|
|
function setRightPanel(state: IRightPanelCardState): void {
|
|
if (RightPanelStore.instance.roomPhaseHistory.some((card) => card.phase == RightPanelPhases.RoomSummary)) {
|
|
RightPanelStore.instance.pushCard({ phase: RightPanelPhases.EncryptionPanel, state });
|
|
} else {
|
|
RightPanelStore.instance.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);
|
|
}
|
|
}
|