logo
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
//! Types for the [`m.call.answer`] event.
//!
//! [`m.call.answer`]: https://spec.matrix.org/v1.2/client-server-api/#mcallanswer

use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};

use super::AnswerSessionDescription;
#[cfg(feature = "unstable-msc2746")]
use super::CallCapabilities;
use crate::{OwnedVoipId, VoipVersionId};

/// The content of an `m.call.answer` event.
///
/// This event is sent by the callee when they wish to answer the call.
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "m.call.answer", kind = MessageLike)]
pub struct CallAnswerEventContent {
    /// The VoIP session description object.
    pub answer: AnswerSessionDescription,

    /// A unique identifier for the call.
    pub call_id: OwnedVoipId,

    #[cfg(feature = "unstable-msc2746")]
    /// **Required in VoIP version 1.** A unique ID for this session for the duration of the call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub party_id: Option<OwnedVoipId>,

    /// The version of the VoIP specification this messages adheres to.
    pub version: VoipVersionId,

    #[cfg(feature = "unstable-msc2746")]
    /// **Added in VoIP version 1.** The VoIP capabilities of the client.
    #[serde(default, skip_serializing_if = "CallCapabilities::is_default")]
    pub capabilities: CallCapabilities,
}

impl CallAnswerEventContent {
    /// Creates an `CallAnswerEventContent` with the given answer, call ID and VoIP version.
    pub fn new(
        answer: AnswerSessionDescription,
        call_id: OwnedVoipId,
        version: VoipVersionId,
    ) -> Self {
        Self {
            answer,
            call_id,
            #[cfg(feature = "unstable-msc2746")]
            party_id: None,
            version,
            #[cfg(feature = "unstable-msc2746")]
            capabilities: Default::default(),
        }
    }

    /// Convenience method to create a VoIP version 0 `CallAnswerEventContent` with all the required
    /// fields.
    pub fn version_0(answer: AnswerSessionDescription, call_id: OwnedVoipId) -> Self {
        Self::new(answer, call_id, VoipVersionId::V0)
    }

    /// Convenience method to create a VoIP version 1 `CallAnswerEventContent` with all the required
    /// fields.
    #[cfg(feature = "unstable-msc2746")]
    pub fn version_1(
        answer: AnswerSessionDescription,
        call_id: OwnedVoipId,
        party_id: OwnedVoipId,
        capabilities: CallCapabilities,
    ) -> Self {
        Self { answer, call_id, party_id: Some(party_id), version: VoipVersionId::V1, capabilities }
    }
}