1//! Types for the [`m.call.answer`] event.
2//!
3//! [`m.call.answer`]: https://spec.matrix.org/latest/client-server-api/#mcallanswer
45use std::collections::BTreeMap;
67use ruma_common::{OwnedVoipId, VoipVersionId};
8use ruma_macros::EventContent;
9use serde::{Deserialize, Serialize};
1011#[cfg(feature = "unstable-msc2747")]
12use super::CallCapabilities;
13use super::{SessionDescription, StreamMetadata};
1415/// The content of an `m.call.answer` event.
16///
17/// This event is sent by the callee when they wish to answer the call.
18#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
19#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
20#[ruma_event(type = "m.call.answer", kind = MessageLike)]
21pub struct CallAnswerEventContent {
22/// The VoIP session description object.
23pub answer: SessionDescription,
2425/// A unique identifier for the call.
26pub call_id: OwnedVoipId,
2728/// **Required in VoIP version 1.** A unique ID for this session for the duration of the call.
29#[serde(skip_serializing_if = "Option::is_none")]
30pub party_id: Option<OwnedVoipId>,
3132/// The version of the VoIP specification this messages adheres to.
33pub version: VoipVersionId,
3435#[cfg(feature = "unstable-msc2747")]
36/// The VoIP capabilities of the client.
37#[serde(default, skip_serializing_if = "CallCapabilities::is_default")]
38pub capabilities: CallCapabilities,
3940/// **Added in VoIP version 1.** Metadata describing the streams that will be sent.
41 ///
42 /// This is a map of stream ID to metadata about the stream.
43#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
44pub sdp_stream_metadata: BTreeMap<String, StreamMetadata>,
45}
4647impl CallAnswerEventContent {
48/// Creates an `CallAnswerEventContent` with the given answer, call ID and VoIP version.
49pub fn new(answer: SessionDescription, call_id: OwnedVoipId, version: VoipVersionId) -> Self {
50Self {
51 answer,
52 call_id,
53 party_id: None,
54 version,
55#[cfg(feature = "unstable-msc2747")]
56capabilities: Default::default(),
57 sdp_stream_metadata: Default::default(),
58 }
59 }
6061/// Convenience method to create a VoIP version 0 `CallAnswerEventContent` with all the required
62 /// fields.
63pub fn version_0(answer: SessionDescription, call_id: OwnedVoipId) -> Self {
64Self::new(answer, call_id, VoipVersionId::V0)
65 }
6667/// Convenience method to create a VoIP version 1 `CallAnswerEventContent` with all the required
68 /// fields.
69pub fn version_1(
70 answer: SessionDescription,
71 call_id: OwnedVoipId,
72 party_id: OwnedVoipId,
73 ) -> Self {
74Self {
75 answer,
76 call_id,
77 party_id: Some(party_id),
78 version: VoipVersionId::V1,
79#[cfg(feature = "unstable-msc2747")]
80capabilities: Default::default(),
81 sdp_stream_metadata: Default::default(),
82 }
83 }
84}