1//! Types for the [`m.key.verification.cancel`] event.
2//!
3//! [`m.key.verification.cancel`]: https://spec.matrix.org/latest/client-server-api/#mkeyverificationcancel
45use ruma_common::{serde::StringEnum, OwnedTransactionId};
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
89use crate::{relation::Reference, PrivOwnedStr};
1011/// The content of a to-device `m.key.verification.cancel` event.
12///
13/// Cancels a key verification process/request.
14#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
15#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
16#[ruma_event(type = "m.key.verification.cancel", kind = ToDevice)]
17pub struct ToDeviceKeyVerificationCancelEventContent {
18/// The opaque identifier for the verification process/request.
19pub transaction_id: OwnedTransactionId,
2021/// A human readable description of the `code`.
22 ///
23 /// The client should only rely on this string if it does not understand the `code`.
24pub reason: String,
2526/// The error code for why the process / request was cancelled by the user.
27pub code: CancelCode,
28}
2930impl ToDeviceKeyVerificationCancelEventContent {
31/// Creates a new `ToDeviceKeyVerificationCancelEventContent` with the given transaction ID,
32 /// reason and code.
33pub fn new(transaction_id: OwnedTransactionId, reason: String, code: CancelCode) -> Self {
34Self { transaction_id, reason, code }
35 }
36}
3738/// The content of an in-room `m.key.verification.cancel` event.
39///
40/// Cancels a key verification process/request.
41#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
42#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
43#[ruma_event(type = "m.key.verification.cancel", kind = MessageLike)]
44pub struct KeyVerificationCancelEventContent {
45/// A human readable description of the `code`.
46 ///
47 /// The client should only rely on this string if it does not understand the `code`.
48pub reason: String,
4950/// The error code for why the process/request was cancelled by the user.
51pub code: CancelCode,
5253/// Information about the related event.
54#[serde(rename = "m.relates_to")]
55pub relates_to: Reference,
56}
5758impl KeyVerificationCancelEventContent {
59/// Creates a new `KeyVerificationCancelEventContent` with the given reason, code and reference.
60pub fn new(reason: String, code: CancelCode, relates_to: Reference) -> Self {
61Self { reason, code, relates_to }
62 }
63}
6465/// An error code for why the process/request was cancelled by the user.
66///
67/// Custom error codes should use the Java package naming convention.
68#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
69#[derive(Clone, PartialEq, Eq, StringEnum)]
70#[ruma_enum(rename_all = "m.snake_case")]
71#[non_exhaustive]
72pub enum CancelCode {
73/// The user cancelled the verification.
74User,
7576/// The verification process timed out.
77 ///
78 /// Verification processes can define their own timeout parameters.
79Timeout,
8081/// The device does not know about the given transaction ID.
82UnknownTransaction,
8384/// The device does not know how to handle the requested method.
85 ///
86 /// Should be sent for `m.key.verification.start` messages and messages defined by individual
87 /// verification processes.
88UnknownMethod,
8990/// The device received an unexpected message.
91 ///
92 /// Typically raised when one of the parties is handling the verification out of order.
93UnexpectedMessage,
9495/// The key was not verified.
96KeyMismatch,
9798/// The expected user did not match the user verified.
99UserMismatch,
100101/// The message received was invalid.
102InvalidMessage,
103104/// An `m.key.verification.request` was accepted by a different device.
105 ///
106 /// The device receiving this error can ignore the verification request.
107Accepted,
108109/// The device receiving this error can ignore the verification request.
110MismatchedCommitment,
111112/// The SAS did not match.
113MismatchedSas,
114115#[doc(hidden)]
116_Custom(PrivOwnedStr),
117}
118119#[cfg(test)]
120mod tests {
121use serde_json::{from_value as from_json_value, json, to_value as to_json_value};
122123use super::CancelCode;
124125#[test]
126fn cancel_codes_serialize_to_display_form() {
127assert_eq!(to_json_value(&CancelCode::User).unwrap(), json!("m.user"));
128 }
129130#[test]
131fn custom_cancel_codes_serialize_to_display_form() {
132assert_eq!(to_json_value(CancelCode::from("io.ruma.test")).unwrap(), json!("io.ruma.test"));
133 }
134135#[test]
136fn cancel_codes_deserialize_from_display_form() {
137assert_eq!(from_json_value::<CancelCode>(json!("m.user")).unwrap(), CancelCode::User);
138 }
139140#[test]
141fn custom_cancel_codes_deserialize_from_display_form() {
142assert_eq!(
143 from_json_value::<CancelCode>(json!("io.ruma.test")).unwrap(),
144"io.ruma.test".into()
145 );
146 }
147}