1//! `/v2/` ([spec])
2//!
3//! [spec]: https://spec.matrix.org/latest/server-server-api/#put_matrixfederationv2inviteroomideventid
45#[cfg(feature = "unstable-msc4125")]
6use ruma_common::OwnedServerName;
7use ruma_common::{
8 api::{request, response, Metadata},
9 metadata,
10 serde::Raw,
11 OwnedEventId, OwnedRoomId, RoomVersionId,
12};
13use ruma_events::AnyStrippedStateEvent;
14use serde_json::value::RawValue as RawJsonValue;
1516const METADATA: Metadata = metadata! {
17 method: PUT,
18 rate_limited: false,
19 authentication: ServerSignatures,
20 history: {
211.0 => "/_matrix/federation/v2/invite/:room_id/:event_id",
22 }
23};
2425/// Request type for the `create_invite` endpoint.
26#[request]
27pub struct Request {
28/// The room ID that the user is being invited to.
29#[ruma_api(path)]
30pub room_id: OwnedRoomId,
3132/// The event ID for the invite event, generated by the inviting server.
33#[ruma_api(path)]
34pub event_id: OwnedEventId,
3536/// The version of the room where the user is being invited to.
37pub room_version: RoomVersionId,
3839/// The invite event which needs to be signed.
40pub event: Box<RawJsonValue>,
4142/// An optional list of simplified events to help the receiver of the invite identify the room.
43pub invite_room_state: Vec<Raw<AnyStrippedStateEvent>>,
4445/// An optional list of servers the invited homeserver should attempt to join or leave via,
46 /// according to [MSC4125](https://github.com/matrix-org/matrix-spec-proposals/pull/4125).
47 ///
48 /// If present, it must not be empty.
49#[cfg(feature = "unstable-msc4125")]
50 #[serde(skip_serializing_if = "Option::is_none", rename = "org.matrix.msc4125.via")]
51pub via: Option<Vec<OwnedServerName>>,
52}
5354/// Response type for the `create_invite` endpoint.
55#[response]
56pub struct Response {
57/// The signed invite event.
58pub event: Box<RawJsonValue>,
59}
6061impl Request {
62/// Creates a new `Request` with the given room ID, event ID, room version, event and invite
63 /// room state.
64pub fn new(
65 room_id: OwnedRoomId,
66 event_id: OwnedEventId,
67 room_version: RoomVersionId,
68 event: Box<RawJsonValue>,
69 invite_room_state: Vec<Raw<AnyStrippedStateEvent>>,
70 ) -> Self {
71Self {
72 room_id,
73 event_id,
74 room_version,
75 event,
76 invite_room_state,
77#[cfg(feature = "unstable-msc4125")]
78via: None,
79 }
80 }
81}
8283impl Response {
84/// Creates a new `Response` with the given invite event.
85pub fn new(event: Box<RawJsonValue>) -> Self {
86Self { event }
87 }
88}