ruma_federation_api/event/
get_event.rs
1pub mod v1 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedServerName,
13 };
14 use serde_json::value::RawValue as RawJsonValue;
15
16 const METADATA: Metadata = metadata! {
17 method: GET,
18 rate_limited: false,
19 authentication: ServerSignatures,
20 history: {
21 1.0 => "/_matrix/federation/v1/event/:event_id",
22 }
23 };
24
25 #[request]
27 pub struct Request {
28 #[ruma_api(path)]
30 pub event_id: OwnedEventId,
31 }
32
33 #[response]
35 pub struct Response {
36 pub origin: OwnedServerName,
38
39 pub origin_server_ts: MilliSecondsSinceUnixEpoch,
41
42 #[serde(rename = "pdus", with = "ruma_common::serde::single_element_seq")]
44 pub pdu: Box<RawJsonValue>,
45 }
46
47 impl Request {
48 pub fn new(event_id: OwnedEventId) -> Self {
50 Self { event_id }
51 }
52 }
53
54 impl Response {
55 pub fn new(
57 origin: OwnedServerName,
58 origin_server_ts: MilliSecondsSinceUnixEpoch,
59 pdu: Box<RawJsonValue>,
60 ) -> Self {
61 Self { origin, origin_server_ts, pdu }
62 }
63 }
64}