Separate toasts for existing & new device verification
Separate device verification toasts into ones for devices that were there when the app loaded and a separate toast for each device that has appeared since. Reverts part of https://github.com/matrix-org/matrix-react-sdk/pull/4506 (clicking a device from your own UserInfo now triggers the legacy verification flow again). Fixes https://github.com/vector-im/riot-web/issues/13422 Fixes https://github.com/vector-im/riot-web/issues/13418
This commit is contained in:
parent
cf05beb4b8
commit
719faed2ff
10 changed files with 138 additions and 79 deletions
|
@ -24,6 +24,10 @@ const KEY_BACKUP_POLL_INTERVAL = 5 * 60 * 1000;
|
||||||
const THIS_DEVICE_TOAST_KEY = 'setupencryption';
|
const THIS_DEVICE_TOAST_KEY = 'setupencryption';
|
||||||
const OTHER_DEVICES_TOAST_KEY = 'reviewsessions';
|
const OTHER_DEVICES_TOAST_KEY = 'reviewsessions';
|
||||||
|
|
||||||
|
function toastKey(deviceId) {
|
||||||
|
return "unverified_session_" + deviceId;
|
||||||
|
}
|
||||||
|
|
||||||
export default class DeviceListener {
|
export default class DeviceListener {
|
||||||
static sharedInstance() {
|
static sharedInstance() {
|
||||||
if (!global.mx_DeviceListener) global.mx_DeviceListener = new DeviceListener();
|
if (!global.mx_DeviceListener) global.mx_DeviceListener = new DeviceListener();
|
||||||
|
@ -39,9 +43,18 @@ export default class DeviceListener {
|
||||||
// cache of the key backup info
|
// cache of the key backup info
|
||||||
this._keyBackupInfo = null;
|
this._keyBackupInfo = null;
|
||||||
this._keyBackupFetchedAt = null;
|
this._keyBackupFetchedAt = null;
|
||||||
|
|
||||||
|
// We keep a list of our own device IDs so we can batch ones that were already
|
||||||
|
// there the last time the app launched into a single toast, but display new
|
||||||
|
// ones in their own toasts.
|
||||||
|
this._ourDeviceIdsAtStart = null;
|
||||||
|
|
||||||
|
// The set of device IDs we're currently displaying toasts for
|
||||||
|
this._displayingToastsForDeviceIds = new Set();
|
||||||
}
|
}
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
|
MatrixClientPeg.get().on('crypto.willUpdateDevices', this._onWillUpdateDevices);
|
||||||
MatrixClientPeg.get().on('crypto.devicesUpdated', this._onDevicesUpdated);
|
MatrixClientPeg.get().on('crypto.devicesUpdated', this._onDevicesUpdated);
|
||||||
MatrixClientPeg.get().on('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
MatrixClientPeg.get().on('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
||||||
MatrixClientPeg.get().on('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
MatrixClientPeg.get().on('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
||||||
|
@ -53,6 +66,7 @@ export default class DeviceListener {
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
if (MatrixClientPeg.get()) {
|
if (MatrixClientPeg.get()) {
|
||||||
|
MatrixClientPeg.get().removeListener('crypto.willUpdateDevices', this._onWillUpdateDevices);
|
||||||
MatrixClientPeg.get().removeListener('crypto.devicesUpdated', this._onDevicesUpdated);
|
MatrixClientPeg.get().removeListener('crypto.devicesUpdated', this._onDevicesUpdated);
|
||||||
MatrixClientPeg.get().removeListener('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
MatrixClientPeg.get().removeListener('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
||||||
MatrixClientPeg.get().removeListener('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
MatrixClientPeg.get().removeListener('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
||||||
|
@ -66,10 +80,15 @@ export default class DeviceListener {
|
||||||
this._keyBackupFetchedAt = null;
|
this._keyBackupFetchedAt = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async dismissVerifications() {
|
/**
|
||||||
const cli = MatrixClientPeg.get();
|
* Dismiss notifications about our own unverified devices
|
||||||
const devices = await cli.getStoredDevicesForUser(cli.getUserId());
|
*
|
||||||
this._dismissed = new Set(devices.filter(d => d.deviceId !== cli.deviceId).map(d => d.deviceId));
|
* @param {String[]} deviceIds List of device IDs to dismiss notifications for
|
||||||
|
*/
|
||||||
|
async dismissUnverifiedSessions(deviceIds) {
|
||||||
|
for (const d of deviceIds) {
|
||||||
|
this._dismissed.add(d);
|
||||||
|
}
|
||||||
|
|
||||||
this._recheck();
|
this._recheck();
|
||||||
}
|
}
|
||||||
|
@ -79,6 +98,20 @@ export default class DeviceListener {
|
||||||
this._recheck();
|
this._recheck();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_ensureDeviceIdsAtStartPopulated() {
|
||||||
|
if (this._ourDeviceIdsAtStart === null) {
|
||||||
|
const cli = MatrixClientPeg.get();
|
||||||
|
this._ourDeviceIdsAtStart = new Set(
|
||||||
|
cli.getStoredDevicesForUser(cli.getUserId()).map(d => d.deviceId),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_onWillUpdateDevices = async (users) => {
|
||||||
|
const myUserId = MatrixClientPeg.get().getUserId();
|
||||||
|
if (users.includes(myUserId)) this._ensureDeviceIdsAtStartPopulated();
|
||||||
|
}
|
||||||
|
|
||||||
_onDevicesUpdated = (users) => {
|
_onDevicesUpdated = (users) => {
|
||||||
if (!users.includes(MatrixClientPeg.get().getUserId())) return;
|
if (!users.includes(MatrixClientPeg.get().getUserId())) return;
|
||||||
this._recheck();
|
this._recheck();
|
||||||
|
@ -143,6 +176,8 @@ export default class DeviceListener {
|
||||||
|
|
||||||
const crossSigningReady = await cli.isCrossSigningReady();
|
const crossSigningReady = await cli.isCrossSigningReady();
|
||||||
|
|
||||||
|
this._ensureDeviceIdsAtStartPopulated();
|
||||||
|
|
||||||
if (this._dismissedThisDeviceToast) {
|
if (this._dismissedThisDeviceToast) {
|
||||||
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
||||||
} else {
|
} else {
|
||||||
|
@ -197,32 +232,65 @@ export default class DeviceListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Unverified devices that were there last time the app ran
|
||||||
|
// (technically could just be a boolean: we don't actually
|
||||||
|
// need to remember the device IDs, but for the sake of
|
||||||
|
// symmetry...).
|
||||||
|
const oldUnverifiedDeviceIds = new Set();
|
||||||
|
// Unverified devices that have appeared since then
|
||||||
|
const newUnverifiedDeviceIds = new Set();
|
||||||
|
|
||||||
// as long as cross-signing isn't ready,
|
// as long as cross-signing isn't ready,
|
||||||
// you can't see or dismiss any device toasts
|
// you can't see or dismiss any device toasts
|
||||||
if (crossSigningReady) {
|
if (crossSigningReady) {
|
||||||
let haveUnverifiedDevices = false;
|
const devices = cli.getStoredDevicesForUser(cli.getUserId());
|
||||||
|
|
||||||
const devices = await cli.getStoredDevicesForUser(cli.getUserId());
|
|
||||||
for (const device of devices) {
|
for (const device of devices) {
|
||||||
if (device.deviceId == cli.deviceId) continue;
|
if (device.deviceId == cli.deviceId) continue;
|
||||||
|
|
||||||
const deviceTrust = await cli.checkDeviceTrust(cli.getUserId(), device.deviceId);
|
const deviceTrust = await cli.checkDeviceTrust(cli.getUserId(), device.deviceId);
|
||||||
if (!deviceTrust.isCrossSigningVerified() && !this._dismissed.has(device.deviceId)) {
|
if (!deviceTrust.isCrossSigningVerified() && !this._dismissed.has(device.deviceId)) {
|
||||||
haveUnverifiedDevices = true;
|
if (this._ourDeviceIdsAtStart.has(device.deviceId)) {
|
||||||
break;
|
oldUnverifiedDeviceIds.add(device.deviceId);
|
||||||
|
} else {
|
||||||
|
newUnverifiedDeviceIds.add(device.deviceId);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (haveUnverifiedDevices) {
|
// Display or hide the batch toast for old unverified sessions
|
||||||
|
if (oldUnverifiedDeviceIds.size > 0) {
|
||||||
ToastStore.sharedInstance().addOrReplaceToast({
|
ToastStore.sharedInstance().addOrReplaceToast({
|
||||||
key: OTHER_DEVICES_TOAST_KEY,
|
key: OTHER_DEVICES_TOAST_KEY,
|
||||||
title: _t("Review where you’re logged in"),
|
title: _t("Review where you’re logged in"),
|
||||||
icon: "verification_warning",
|
icon: "verification_warning",
|
||||||
component: sdk.getComponent("toasts.UnverifiedSessionToast"),
|
props: {
|
||||||
|
deviceIds: oldUnverifiedDeviceIds,
|
||||||
|
},
|
||||||
|
component: sdk.getComponent("toasts.BulkUnverifiedSessionsToast"),
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
ToastStore.sharedInstance().dismissToast(OTHER_DEVICES_TOAST_KEY);
|
ToastStore.sharedInstance().dismissToast(OTHER_DEVICES_TOAST_KEY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Show toasts for new unverified devices if they aren't already there
|
||||||
|
for (const deviceId of newUnverifiedDeviceIds) {
|
||||||
|
ToastStore.sharedInstance().addOrReplaceToast({
|
||||||
|
key: toastKey(deviceId),
|
||||||
|
title: _t("Unverified login. Was this you?"),
|
||||||
|
icon: "verification_warning",
|
||||||
|
props: { deviceId },
|
||||||
|
component: sdk.getComponent("toasts.UnverifiedSessionToast"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ...and hide any we don't need any more
|
||||||
|
for (const deviceId of this._displayingToastsForDeviceIds) {
|
||||||
|
if (!newUnverifiedDeviceIds.has(deviceId)) {
|
||||||
|
ToastStore.sharedInstance().dismissToast(toastKey(deviceId));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this._displayingToastsForDeviceIds = newUnverifiedDeviceIds;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -836,7 +836,7 @@ export const Commands = [
|
||||||
const fingerprint = matches[3];
|
const fingerprint = matches[3];
|
||||||
|
|
||||||
return success((async () => {
|
return success((async () => {
|
||||||
const device = await cli.getStoredDevice(userId, deviceId);
|
const device = cli.getStoredDevice(userId, deviceId);
|
||||||
if (!device) {
|
if (!device) {
|
||||||
throw new Error(_t('Unknown (user, session) pair:') + ` (${userId}, ${deviceId})`);
|
throw new Error(_t('Unknown (user, session) pair:') + ` (${userId}, ${deviceId})`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,6 @@ import VerificationPanel from "./VerificationPanel";
|
||||||
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
||||||
import {ensureDMExists} from "../../../createRoom";
|
import {ensureDMExists} from "../../../createRoom";
|
||||||
import {useEventEmitter} from "../../../hooks/useEventEmitter";
|
import {useEventEmitter} from "../../../hooks/useEventEmitter";
|
||||||
import {useAsyncMemo} from "../../../hooks/useAsyncMemo";
|
|
||||||
import Modal from "../../../Modal";
|
import Modal from "../../../Modal";
|
||||||
import {PHASE_REQUESTED, PHASE_UNSENT} from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
|
import {PHASE_REQUESTED, PHASE_UNSENT} from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
|
||||||
import * as sdk from "../../../index";
|
import * as sdk from "../../../index";
|
||||||
|
@ -47,10 +46,7 @@ const EncryptionPanel = (props) => {
|
||||||
}, [verificationRequest]);
|
}, [verificationRequest]);
|
||||||
|
|
||||||
const deviceId = request && request.channel.deviceId;
|
const deviceId = request && request.channel.deviceId;
|
||||||
const device = useAsyncMemo(() => {
|
const device = MatrixClientPeg.get().getStoredDevice(MatrixClientPeg.get().getUserId(), deviceId);
|
||||||
const cli = MatrixClientPeg.get();
|
|
||||||
return cli.getStoredDevice(cli.getUserId(), deviceId);
|
|
||||||
}, [deviceId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
async function awaitPromise() {
|
async function awaitPromise() {
|
||||||
|
|
|
@ -1110,7 +1110,7 @@ export const useDevices = (userId) => {
|
||||||
async function _downloadDeviceList() {
|
async function _downloadDeviceList() {
|
||||||
try {
|
try {
|
||||||
await cli.downloadKeys([userId], true);
|
await cli.downloadKeys([userId], true);
|
||||||
const devices = await cli.getStoredDevicesForUser(userId);
|
const devices = cli.getStoredDevicesForUser(userId);
|
||||||
|
|
||||||
if (cancelled) {
|
if (cancelled) {
|
||||||
// we got cancelled - presumably a different user now
|
// we got cancelled - presumably a different user now
|
||||||
|
@ -1135,7 +1135,7 @@ export const useDevices = (userId) => {
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let cancel = false;
|
let cancel = false;
|
||||||
const updateDevices = async () => {
|
const updateDevices = async () => {
|
||||||
const newDevices = await cli.getStoredDevicesForUser(userId);
|
const newDevices = cli.getStoredDevicesForUser(userId);
|
||||||
if (cancel) return;
|
if (cancel) return;
|
||||||
setDevices(newDevices);
|
setDevices(newDevices);
|
||||||
};
|
};
|
||||||
|
|
|
@ -160,14 +160,11 @@ export default createReactClass({
|
||||||
// no need to re-download the whole thing; just update our copy of
|
// no need to re-download the whole thing; just update our copy of
|
||||||
// the list.
|
// the list.
|
||||||
|
|
||||||
// Promise.resolve to handle transition from static result to promise; can be removed
|
const devices = this.context.getStoredDevicesForUser(userId);
|
||||||
// in future
|
|
||||||
Promise.resolve(this.context.getStoredDevicesForUser(userId)).then((devices) => {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
devices: devices,
|
devices: devices,
|
||||||
e2eStatus: this._getE2EStatus(devices),
|
e2eStatus: this._getE2EStatus(devices),
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import dis from "../../../dispatcher";
|
import dis from "../../../dispatcher";
|
||||||
import { MatrixClientPeg } from '../../../MatrixClientPeg';
|
import { MatrixClientPeg } from '../../../MatrixClientPeg';
|
||||||
|
@ -22,14 +23,18 @@ import DeviceListener from '../../../DeviceListener';
|
||||||
import FormButton from '../elements/FormButton';
|
import FormButton from '../elements/FormButton';
|
||||||
import { replaceableComponent } from '../../../utils/replaceableComponent';
|
import { replaceableComponent } from '../../../utils/replaceableComponent';
|
||||||
|
|
||||||
@replaceableComponent("views.toasts.UnverifiedSessionToast")
|
@replaceableComponent("views.toasts.BulkUnverifiedSessionsToast")
|
||||||
export default class UnverifiedSessionToast extends React.PureComponent {
|
export default class BulkUnverifiedSessionsToast extends React.PureComponent {
|
||||||
|
static propTypes = {
|
||||||
|
deviceIds: PropTypes.array,
|
||||||
|
}
|
||||||
|
|
||||||
_onLaterClick = () => {
|
_onLaterClick = () => {
|
||||||
DeviceListener.sharedInstance().dismissVerifications();
|
DeviceListener.sharedInstance().dismissUnverifiedSessions(this.props.deviceIds);
|
||||||
};
|
};
|
||||||
|
|
||||||
_onReviewClick = async () => {
|
_onReviewClick = async () => {
|
||||||
DeviceListener.sharedInstance().dismissVerifications();
|
DeviceListener.sharedInstance().dismissUnverifiedSessions(this.props.deviceIds);
|
||||||
|
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
action: 'view_user_info',
|
action: 'view_user_info',
|
|
@ -106,6 +106,7 @@
|
||||||
"Encryption upgrade available": "Encryption upgrade available",
|
"Encryption upgrade available": "Encryption upgrade available",
|
||||||
"Set up encryption": "Set up encryption",
|
"Set up encryption": "Set up encryption",
|
||||||
"Review where you’re logged in": "Review where you’re logged in",
|
"Review where you’re logged in": "Review where you’re logged in",
|
||||||
|
"Unverified login. Was this you?": "Unverified login. Was this you?",
|
||||||
"Who would you like to add to this community?": "Who would you like to add to this community?",
|
"Who would you like to add to this community?": "Who would you like to add to this community?",
|
||||||
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID",
|
"Warning: any person you add to a community will be publicly visible to anyone who knows the community ID": "Warning: any person you add to a community will be publicly visible to anyone who knows the community ID",
|
||||||
"Invite new community members": "Invite new community members",
|
"Invite new community members": "Invite new community members",
|
||||||
|
@ -558,14 +559,14 @@
|
||||||
"Headphones": "Headphones",
|
"Headphones": "Headphones",
|
||||||
"Folder": "Folder",
|
"Folder": "Folder",
|
||||||
"Pin": "Pin",
|
"Pin": "Pin",
|
||||||
|
"Verify your other sessions": "Verify your other sessions",
|
||||||
|
"Later": "Later",
|
||||||
|
"Review": "Review",
|
||||||
"Verify yourself & others to keep your chats safe": "Verify yourself & others to keep your chats safe",
|
"Verify yourself & others to keep your chats safe": "Verify yourself & others to keep your chats safe",
|
||||||
"Other users may not trust it": "Other users may not trust it",
|
"Other users may not trust it": "Other users may not trust it",
|
||||||
"Update your secure storage": "Update your secure storage",
|
"Update your secure storage": "Update your secure storage",
|
||||||
"Upgrade": "Upgrade",
|
"Upgrade": "Upgrade",
|
||||||
"Verify": "Verify",
|
"Verify": "Verify",
|
||||||
"Later": "Later",
|
|
||||||
"Verify your other sessions": "Verify your other sessions",
|
|
||||||
"Review": "Review",
|
|
||||||
"From %(deviceName)s (%(deviceId)s)": "From %(deviceName)s (%(deviceId)s)",
|
"From %(deviceName)s (%(deviceId)s)": "From %(deviceName)s (%(deviceId)s)",
|
||||||
"Decline (%(counter)s)": "Decline (%(counter)s)",
|
"Decline (%(counter)s)": "Decline (%(counter)s)",
|
||||||
"Accept <policyLink /> to continue:": "Accept <policyLink /> to continue:",
|
"Accept <policyLink /> to continue:": "Accept <policyLink /> to continue:",
|
||||||
|
|
|
@ -7,7 +7,7 @@ interface Client {
|
||||||
isCrossSigningVerified: () => boolean
|
isCrossSigningVerified: () => boolean
|
||||||
wasCrossSigningVerified: () => boolean
|
wasCrossSigningVerified: () => boolean
|
||||||
};
|
};
|
||||||
getStoredDevicesForUser: (userId: string) => Promise<[{ deviceId: string }]>;
|
getStoredDevicesForUser: (userId: string) => [{ deviceId: string }];
|
||||||
checkDeviceTrust: (userId: string, deviceId: string) => {
|
checkDeviceTrust: (userId: string, deviceId: string) => {
|
||||||
isVerified: () => boolean
|
isVerified: () => boolean
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ export async function shieldStatusForRoom(client: Client, room: Room): Promise<s
|
||||||
(members.length === 1); // Do alarm for self if we're alone in a room
|
(members.length === 1); // Do alarm for self if we're alone in a room
|
||||||
const targets = includeUser ? [...verified, client.getUserId()] : verified;
|
const targets = includeUser ? [...verified, client.getUserId()] : verified;
|
||||||
for (const userId of targets) {
|
for (const userId of targets) {
|
||||||
const devices = await client.getStoredDevicesForUser(userId);
|
const devices = client.getStoredDevicesForUser(userId);
|
||||||
const anyDeviceNotVerified = devices.some(({deviceId}) => {
|
const anyDeviceNotVerified = devices.some(({deviceId}) => {
|
||||||
return !client.checkDeviceTrust(userId, deviceId).isVerified();
|
return !client.checkDeviceTrust(userId, deviceId).isVerified();
|
||||||
});
|
});
|
||||||
|
|
|
@ -23,7 +23,6 @@ import {RIGHT_PANEL_PHASES} from "./stores/RightPanelStorePhases";
|
||||||
import {findDMForUser} from './createRoom';
|
import {findDMForUser} from './createRoom';
|
||||||
import {accessSecretStorage} from './CrossSigningManager';
|
import {accessSecretStorage} from './CrossSigningManager';
|
||||||
import SettingsStore from './settings/SettingsStore';
|
import SettingsStore from './settings/SettingsStore';
|
||||||
import NewSessionReviewDialog from './components/views/dialogs/NewSessionReviewDialog';
|
|
||||||
import {verificationMethods} from 'matrix-js-sdk/src/crypto';
|
import {verificationMethods} from 'matrix-js-sdk/src/crypto';
|
||||||
|
|
||||||
async function enable4SIfNeeded() {
|
async function enable4SIfNeeded() {
|
||||||
|
@ -70,12 +69,6 @@ export async function verifyDevice(user, device) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user.userId === cli.getUserId()) {
|
|
||||||
Modal.createTrackedDialog('New Session Review', 'Starting dialog', NewSessionReviewDialog, {
|
|
||||||
userId: user.userId,
|
|
||||||
device,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
Modal.createTrackedDialog("Verification warning", "unverified session", UntrustedDeviceDialog, {
|
Modal.createTrackedDialog("Verification warning", "unverified session", UntrustedDeviceDialog, {
|
||||||
user,
|
user,
|
||||||
device,
|
device,
|
||||||
|
@ -105,7 +98,6 @@ export async function verifyDevice(user, device) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
export async function legacyVerifyUser(user) {
|
export async function legacyVerifyUser(user) {
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
|
|
|
@ -11,7 +11,7 @@ function mkClient(selfTrust) {
|
||||||
checkDeviceTrust: (userId, deviceId) => ({
|
checkDeviceTrust: (userId, deviceId) => ({
|
||||||
isVerified: () => userId === "@self:localhost" ? selfTrust : userId[2] == "T",
|
isVerified: () => userId === "@self:localhost" ? selfTrust : userId[2] == "T",
|
||||||
}),
|
}),
|
||||||
getStoredDevicesForUser: async (userId) => ["DEVICE"],
|
getStoredDevicesForUser: (userId) => ["DEVICE"],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue