2020-03-10 18:31:40 +03:00
|
|
|
/*
|
2021-05-12 19:08:44 +03:00
|
|
|
Copyright 2019, 2020, 2021 The Matrix.org Foundation C.I.C.
|
2020-03-10 18:31:40 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-05-12 19:08:44 +03:00
|
|
|
import { User } from "matrix-js-sdk/src/models/user";
|
|
|
|
|
|
|
|
import { MatrixClientPeg } from './MatrixClientPeg';
|
2020-05-14 05:41:41 +03:00
|
|
|
import dis from "./dispatcher/dispatcher";
|
2020-03-10 18:31:40 +03:00
|
|
|
import Modal from './Modal';
|
|
|
|
import * as sdk from './index';
|
2021-05-12 19:08:44 +03:00
|
|
|
import { RightPanelPhases } from "./stores/RightPanelStorePhases";
|
|
|
|
import { findDMForUser } from './createRoom';
|
|
|
|
import { accessSecretStorage } from './SecurityManager';
|
|
|
|
import { verificationMethods } from 'matrix-js-sdk/src/crypto';
|
|
|
|
import { Action } from './dispatcher/actions';
|
2021-05-12 19:04:24 +03:00
|
|
|
import UntrustedDeviceDialog from "./components/views/dialogs/UntrustedDeviceDialog";
|
2021-05-12 19:08:44 +03:00
|
|
|
import {IDevice} from "./components/views/right_panel/UserInfo";
|
2020-03-10 18:31:40 +03:00
|
|
|
|
2020-03-11 12:11:54 +03:00
|
|
|
async function enable4SIfNeeded() {
|
2020-03-10 18:31:40 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
2020-05-27 12:28:25 +03:00
|
|
|
if (!cli.isCryptoEnabled()) {
|
2020-03-10 18:31:40 +03:00
|
|
|
return false;
|
|
|
|
}
|
2020-03-10 20:40:24 +03:00
|
|
|
const usk = cli.getCrossSigningId("user_signing");
|
|
|
|
if (!usk) {
|
2020-03-10 18:31:40 +03:00
|
|
|
await accessSecretStorage();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-12 19:08:44 +03:00
|
|
|
export async function verifyDevice(user: User, device: IDevice) {
|
2020-04-14 18:53:33 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
2021-01-26 14:00:56 +03:00
|
|
|
if (cli.isGuest()) {
|
|
|
|
dis.dispatch({action: 'require_registration'});
|
|
|
|
return;
|
|
|
|
}
|
2020-04-14 18:53:33 +03:00
|
|
|
// if cross-signing is not explicitly disabled, check if it should be enabled first.
|
|
|
|
if (cli.getCryptoTrustCrossSignedDevices()) {
|
|
|
|
if (!await enable4SIfNeeded()) {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-10 18:31:40 +03:00
|
|
|
}
|
2020-04-27 22:31:14 +03:00
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
Modal.createTrackedDialog("Verification warning", "unverified session", UntrustedDeviceDialog, {
|
|
|
|
user,
|
|
|
|
device,
|
|
|
|
onFinished: async (action) => {
|
|
|
|
if (action === "sas") {
|
|
|
|
const verificationRequestPromise = cli.legacyDeviceVerification(
|
|
|
|
user.userId,
|
|
|
|
device.deviceId,
|
|
|
|
verificationMethods.SAS,
|
|
|
|
);
|
|
|
|
dis.dispatch({
|
2020-07-18 14:08:20 +03:00
|
|
|
action: Action.SetRightPanelPhase,
|
|
|
|
phase: RightPanelPhases.EncryptionPanel,
|
2020-04-28 20:35:16 +03:00
|
|
|
refireParams: {member: user, verificationRequestPromise},
|
|
|
|
});
|
|
|
|
} else if (action === "legacy") {
|
|
|
|
const ManualDeviceKeyVerificationDialog =
|
|
|
|
sdk.getComponent("dialogs.ManualDeviceKeyVerificationDialog");
|
|
|
|
Modal.createTrackedDialog("Legacy verify session", "legacy verify session",
|
|
|
|
ManualDeviceKeyVerificationDialog,
|
|
|
|
{
|
|
|
|
userId: user.userId,
|
|
|
|
device,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2020-03-10 18:31:40 +03:00
|
|
|
}
|
|
|
|
|
2021-05-12 19:08:44 +03:00
|
|
|
export async function legacyVerifyUser(user: User) {
|
2020-03-10 18:31:40 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
2021-01-26 14:00:56 +03:00
|
|
|
if (cli.isGuest()) {
|
|
|
|
dis.dispatch({action: 'require_registration'});
|
|
|
|
return;
|
|
|
|
}
|
2020-04-14 18:53:33 +03:00
|
|
|
// if cross-signing is not explicitly disabled, check if it should be enabled first.
|
|
|
|
if (cli.getCryptoTrustCrossSignedDevices()) {
|
|
|
|
if (!await enable4SIfNeeded()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-04-01 11:32:27 +03:00
|
|
|
const verificationRequestPromise = cli.requestVerification(user.userId);
|
2020-03-10 18:31:40 +03:00
|
|
|
dis.dispatch({
|
2020-07-18 14:08:20 +03:00
|
|
|
action: Action.SetRightPanelPhase,
|
|
|
|
phase: RightPanelPhases.EncryptionPanel,
|
2020-03-10 18:31:40 +03:00
|
|
|
refireParams: {member: user, verificationRequestPromise},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-12 19:08:44 +03:00
|
|
|
export async function verifyUser(user: User) {
|
2021-01-26 14:00:56 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
if (cli.isGuest()) {
|
|
|
|
dis.dispatch({action: 'require_registration'});
|
|
|
|
return;
|
|
|
|
}
|
2020-03-10 18:31:40 +03:00
|
|
|
if (!await enable4SIfNeeded()) {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-26 19:31:31 +03:00
|
|
|
const existingRequest = pendingVerificationRequestForUser(user);
|
2020-03-10 18:31:40 +03:00
|
|
|
dis.dispatch({
|
2020-07-18 14:08:20 +03:00
|
|
|
action: Action.SetRightPanelPhase,
|
|
|
|
phase: RightPanelPhases.EncryptionPanel,
|
2020-03-10 18:31:40 +03:00
|
|
|
refireParams: {
|
|
|
|
member: user,
|
|
|
|
verificationRequest: existingRequest,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2020-03-26 19:31:31 +03:00
|
|
|
|
2021-05-12 19:08:44 +03:00
|
|
|
export function pendingVerificationRequestForUser(user: User) {
|
2020-03-26 19:31:31 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const dmRoom = findDMForUser(cli, user.userId);
|
|
|
|
if (dmRoom) {
|
|
|
|
return cli.findVerificationRequestDMInProgress(dmRoom.roomId);
|
|
|
|
}
|
|
|
|
}
|