1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
// Copyright 2021 The Matrix.org Foundation C.I.C.
//
// 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.
use futures_core::Stream;
use matrix_sdk_base::crypto::{
matrix_sdk_qrcode::{qrcode::QrCode, EncodingError},
CancelInfo, DeviceData, QrVerification as BaseQrVerification, QrVerificationState,
};
use ruma::{RoomId, UserId};
use crate::{Client, Result};
/// An object controlling QR code style key verification flows.
#[derive(Debug, Clone)]
pub struct QrVerification {
pub(crate) inner: BaseQrVerification,
pub(crate) client: Client,
}
impl QrVerification {
/// Get our own user id.
pub fn own_user_id(&self) -> &UserId {
self.inner.user_id()
}
/// Is this a verification that is verifying one of our own devices.
pub fn is_self_verification(&self) -> bool {
self.inner.is_self_verification()
}
/// Has this verification finished.
pub fn is_done(&self) -> bool {
self.inner.is_done()
}
/// Whether the QrCode was scanned by the other device.
pub fn has_been_scanned(&self) -> bool {
self.inner.has_been_scanned()
}
/// Did we initiate the verification flow.
pub fn we_started(&self) -> bool {
self.inner.we_started()
}
/// Get info about the cancellation if the verification flow has been
/// cancelled.
pub fn cancel_info(&self) -> Option<CancelInfo> {
self.inner.cancel_info()
}
/// Get the user id of the other user participating in this verification
/// flow.
pub fn other_user_id(&self) -> &UserId {
self.inner.other_user_id()
}
/// Get the other user's device that we're verifying.
pub fn other_device(&self) -> &DeviceData {
self.inner.other_device()
}
/// Has the verification been cancelled.
pub fn is_cancelled(&self) -> bool {
self.inner.is_cancelled()
}
/// Generate a QR code object that is representing this verification flow.
///
/// The `QrCode` can then be rendered as an image or as an unicode string.
///
/// The [`to_bytes()`](#method.to_bytes) method can be used to instead
/// output the raw bytes that should be encoded as a QR code.
pub fn to_qr_code(&self) -> Result<QrCode, EncodingError> {
self.inner.to_qr_code()
}
/// Generate a the raw bytes that should be encoded as a QR code is
/// representing this verification flow.
///
/// The [`to_qr_code()`](#method.to_qr_code) method can be used to instead
/// output a `QrCode` object that can be rendered.
pub fn to_bytes(&self) -> Result<Vec<u8>, EncodingError> {
self.inner.to_bytes()
}
/// Confirm that the other side has scanned our QR code.
pub async fn confirm(&self) -> Result<()> {
if let Some(request) = self.inner.confirm_scanning() {
self.client.send_verification_request(request).await?;
}
Ok(())
}
/// Abort the verification flow and notify the other side that we did so.
pub async fn cancel(&self) -> Result<()> {
if let Some(request) = self.inner.cancel() {
self.client.send_verification_request(request).await?;
}
Ok(())
}
/// Listen for changes in the QR code verification process.
///
/// The changes are presented as a stream of [`QrVerificationState`] values.
///
/// This method can be used to react to changes in the state of the
/// verification process, or rather the method can be used to handle
/// each step of the verification process.
///
/// # Flowchart
///
/// The flow of the verification process is pictured below. Please note
/// that the process can be cancelled at each step of the process.
/// Either side can cancel the process.
///
/// ```text
/// ┌───────┐
/// │Started│
/// └───┬───┘
/// │
/// │
/// ┌──────⌄─────┐
/// │Reciprocated│
/// └──────┬─────┘
/// │
/// ┌───⌄───┐
/// │Scanned│
/// └───┬───┘
/// │
/// __________⌄_________
/// ╱ ╲ ┌─────────┐
/// ╱ Was the QR Code ╲______│Cancelled│
/// ╲ successfully scanned ╱ no └─────────┘
/// ╲____________________╱
/// │yes
/// │
/// ┌────⌄────┐
/// │Confirmed│
/// └────┬────┘
/// │
/// ┌───⌄───┐
/// │ Done │
/// └───────┘
/// ```
/// # Examples
///
/// ```no_run
/// use futures_util::{Stream, StreamExt};
/// use matrix_sdk::encryption::verification::{
/// QrVerification, QrVerificationState,
/// };
///
/// # async {
/// # let qr: QrVerification = unimplemented!();
/// # let user_confirmed = false;
/// let mut stream = qr.changes();
///
/// while let Some(state) = stream.next().await {
/// match state {
/// QrVerificationState::Scanned => {
/// println!("Was the QR code successfully scanned?");
///
/// // Ask the user to confirm or cancel here.
/// if user_confirmed {
/// qr.confirm().await?;
/// } else {
/// qr.cancel().await?;
/// }
/// }
/// QrVerificationState::Done { .. } => {
/// let device = qr.other_device();
///
/// println!(
/// "Successfully verified device {} {} {:?}",
/// device.user_id(),
/// device.device_id(),
/// device.local_trust_state()
/// );
///
/// break;
/// }
/// QrVerificationState::Cancelled(cancel_info) => {
/// println!(
/// "The verification has been cancelled, reason: {}",
/// cancel_info.reason()
/// );
/// break;
/// }
/// QrVerificationState::Started
/// | QrVerificationState::Reciprocated
/// | QrVerificationState::Confirmed => (),
/// }
/// }
/// # anyhow::Ok(()) };
/// ```
pub fn changes(&self) -> impl Stream<Item = QrVerificationState> {
self.inner.changes()
}
/// Get the current state the verification process is in.
///
/// To listen to changes to the [`QrVerificationState`] use the
/// [`QrVerification::changes`] method.
pub fn state(&self) -> QrVerificationState {
self.inner.state()
}
/// Get the room ID, if the verification is happening inside a room.
pub fn room_id(&self) -> Option<&RoomId> {
self.inner.room_id()
}
}