acter_core/events/
explicit_invites.rs

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
use derive_builder::Builder;
use derive_getters::Getters;
use matrix_sdk::ruma::{events::Mentions, OwnedUserId};
use matrix_sdk_base::ruma::{events::macros::EventContent, OwnedEventId};
use serde::{Deserialize, Serialize};

use super::BelongsTo;

/// Subscribe Event
#[derive(Clone, Debug, Deserialize, Serialize, EventContent, Builder, Getters)]
#[ruma_event(type = "global.acter.dev.invite", kind = MessageLike)]
#[builder(name = "SubscribeBuilder", derive(Debug))]
pub struct ExplicitInviteEventContent {
    #[builder(setter(into))]
    #[serde(rename = "m.relates_to")]
    pub to: BelongsTo,

    /// The actual user being invited    
    #[builder(setter(into))]
    #[serde(rename = "m.mentions")]
    // We model this after a mention to use the existing notification setup
    pub mention: Mentions,
}

impl ExplicitInviteEventContent {
    pub fn new(object_id: OwnedEventId, user_id: OwnedUserId) -> ExplicitInviteEventContent {
        ExplicitInviteEventContent {
            to: BelongsTo::from(object_id),
            mention: Mentions::with_user_ids([user_id]),
        }
    }
}