2020-08-21 11:34:25 +00:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
2020-08-21 14:26:34 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2020-08-21 11:34:25 +00:00
|
|
|
use matrix_sdk_common::{
|
|
|
|
api::r0::{
|
|
|
|
keys::{
|
2020-08-21 12:40:49 +00:00
|
|
|
claim_keys::Response as KeysClaimResponse,
|
2020-08-21 11:34:25 +00:00
|
|
|
get_keys::{IncomingRequest as KeysQueryRequest, Response as KeysQueryResponse},
|
|
|
|
upload_keys::{Request as KeysUploadRequest, Response as KeysUploadResponse},
|
|
|
|
},
|
|
|
|
to_device::send_event_to_device::{
|
|
|
|
IncomingRequest as ToDeviceRequest, Response as ToDeviceResponse,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
uuid::Uuid,
|
|
|
|
};
|
|
|
|
|
2020-08-23 14:57:34 +00:00
|
|
|
/// Enum over the different outgoing requests we can have.
|
2020-08-21 11:34:25 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum OutgoingRequests {
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The keys upload request, uploading device and one-time keys.
|
2020-08-21 11:34:25 +00:00
|
|
|
KeysUpload(KeysUploadRequest),
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The keys query request, fetching the device and cross singing keys of
|
|
|
|
/// other users.
|
2020-08-21 11:34:25 +00:00
|
|
|
KeysQuery(KeysQueryRequest),
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The to-device requests, this request is used for a couple of different
|
|
|
|
/// things, the main use is key requests/forwards and interactive device
|
|
|
|
/// verification.
|
2020-08-21 11:34:25 +00:00
|
|
|
ToDeviceRequest(ToDeviceRequest),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<KeysQueryRequest> for OutgoingRequests {
|
|
|
|
fn from(request: KeysQueryRequest) -> Self {
|
|
|
|
OutgoingRequests::KeysQuery(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<KeysUploadRequest> for OutgoingRequests {
|
|
|
|
fn from(request: KeysUploadRequest) -> Self {
|
|
|
|
OutgoingRequests::KeysUpload(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 14:26:34 +00:00
|
|
|
impl From<ToDeviceRequest> for OutgoingRequests {
|
|
|
|
fn from(request: ToDeviceRequest) -> Self {
|
|
|
|
OutgoingRequests::ToDeviceRequest(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 14:57:34 +00:00
|
|
|
/// Enum over all the incoming responses we need to receive.
|
2020-08-21 11:34:25 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum IncomingResponse<'a> {
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The keys upload response, notifying us about the amount of uploaded
|
|
|
|
/// one-time keys.
|
2020-08-21 11:34:25 +00:00
|
|
|
KeysUpload(&'a KeysUploadResponse),
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The keys query response, giving us the device and cross singing keys of
|
|
|
|
/// other users.
|
2020-08-21 11:34:25 +00:00
|
|
|
KeysQuery(&'a KeysQueryResponse),
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The to-device response, an empty response.
|
2020-08-21 11:34:25 +00:00
|
|
|
ToDevice(&'a ToDeviceResponse),
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The key claiming requests, giving us new one-time keys of other users so
|
|
|
|
/// new Olm sessions can be created.
|
2020-08-21 12:40:49 +00:00
|
|
|
KeysClaim(&'a KeysClaimResponse),
|
2020-08-21 11:34:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> From<&'a KeysUploadResponse> for IncomingResponse<'a> {
|
|
|
|
fn from(response: &'a KeysUploadResponse) -> Self {
|
|
|
|
IncomingResponse::KeysUpload(response)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> From<&'a KeysQueryResponse> for IncomingResponse<'a> {
|
|
|
|
fn from(response: &'a KeysQueryResponse) -> Self {
|
|
|
|
IncomingResponse::KeysQuery(response)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> From<&'a ToDeviceResponse> for IncomingResponse<'a> {
|
|
|
|
fn from(response: &'a ToDeviceResponse) -> Self {
|
|
|
|
IncomingResponse::ToDevice(response)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 12:40:49 +00:00
|
|
|
impl<'a> From<&'a KeysClaimResponse> for IncomingResponse<'a> {
|
|
|
|
fn from(response: &'a KeysClaimResponse) -> Self {
|
|
|
|
IncomingResponse::KeysClaim(response)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 14:57:34 +00:00
|
|
|
/// Outgoing request type, holds the unique ID of the request and the actual
|
|
|
|
/// request.
|
2020-08-21 14:26:34 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2020-08-21 11:34:25 +00:00
|
|
|
pub struct OutgoingRequest {
|
|
|
|
/// The unique id of a request, needs to be passed when receiving a
|
|
|
|
/// response.
|
2020-08-21 14:26:34 +00:00
|
|
|
pub(crate) request_id: Uuid,
|
2020-08-23 14:57:34 +00:00
|
|
|
/// The underlying outgoing request.
|
2020-08-21 14:26:34 +00:00
|
|
|
pub(crate) request: Arc<OutgoingRequests>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OutgoingRequest {
|
|
|
|
/// Get the unique id of this request.
|
|
|
|
pub fn request_id(&self) -> &Uuid {
|
|
|
|
&self.request_id
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the underlying outgoing request.
|
|
|
|
pub fn request(&self) -> &OutgoingRequests {
|
|
|
|
&self.request
|
|
|
|
}
|
2020-08-21 11:34:25 +00:00
|
|
|
}
|