Sending requests to this endpoints to Synapse/Dendrite homeservers leads to some deserialization errors. After claryfing it (https://github.com/matrix-org/matrix-doc/issues/2856), `room_id` and `event_id` fields are expected to appear on request's body and also on path params. It seems that there's some initiative, in any case, to remove the parameters from path: https://github.com/matrix-org/matrix-doc/issues/2330
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
//! [PUT /_matrix/federation/v2/send_join/{roomId}/{eventId}](https://matrix.org/docs/spec/server_server/r0.1.4#put-matrix-federation-v2-send-join-roomid-eventid)
|
|
|
|
use ruma_api::ruma_api;
|
|
use ruma_common::Raw;
|
|
use ruma_events::pdu::Pdu;
|
|
use ruma_identifiers::{EventId, RoomId};
|
|
|
|
use super::RoomState;
|
|
|
|
ruma_api! {
|
|
metadata: {
|
|
description: "Send a join event to a resident server.",
|
|
name: "create_join_event",
|
|
method: PUT,
|
|
path: "/_matrix/federation/v2/send_join/:room_id/:event_id",
|
|
rate_limited: false,
|
|
authentication: ServerSignatures,
|
|
}
|
|
|
|
request: {
|
|
/// The room ID that is about to be joined.
|
|
#[ruma_api(path)]
|
|
pub room_id: &'a RoomId,
|
|
|
|
/// The user ID the join event will be for.
|
|
#[ruma_api(path)]
|
|
pub event_id: &'a EventId,
|
|
|
|
/// PDU type
|
|
#[ruma_api(body)]
|
|
pub pdu_stub: Raw<Pdu>,
|
|
}
|
|
|
|
response: {
|
|
/// Full state of the room.
|
|
#[ruma_api(body)]
|
|
pub room_state: RoomState,
|
|
}
|
|
}
|
|
|
|
impl<'a> Request<'a> {
|
|
/// Creates a `Request` from the given room ID, event ID and `Pdu`.
|
|
pub fn new(room_id: &'a RoomId, event_id: &'a EventId, pdu_stub: Raw<Pdu>) -> Self {
|
|
Self { room_id, event_id, pdu_stub }
|
|
}
|
|
}
|
|
|
|
impl Response {
|
|
/// Creates a new `Response` with the given room state.
|
|
pub fn new(room_state: RoomState) -> Self {
|
|
Self { room_state }
|
|
}
|
|
}
|