ruma_federation_api/event/
get_missing_events.rs
1pub mod v1 {
6 use js_int::{uint, UInt};
11 use ruma_common::{
12 api::{request, response, Metadata},
13 metadata, OwnedEventId, OwnedRoomId,
14 };
15 use serde_json::value::RawValue as RawJsonValue;
16
17 const METADATA: Metadata = metadata! {
18 method: POST,
19 rate_limited: false,
20 authentication: ServerSignatures,
21 history: {
22 1.0 => "/_matrix/federation/v1/get_missing_events/:room_id",
23 }
24 };
25
26 #[request]
28 pub struct Request {
29 #[ruma_api(path)]
31 pub room_id: OwnedRoomId,
32
33 #[serde(default = "default_limit", skip_serializing_if = "is_default_limit")]
37 pub limit: UInt,
38
39 #[serde(default, skip_serializing_if = "ruma_common::serde::is_default")]
43 pub min_depth: UInt,
44
45 pub earliest_events: Vec<OwnedEventId>,
49
50 pub latest_events: Vec<OwnedEventId>,
52 }
53
54 #[response]
56 #[derive(Default)]
57 pub struct Response {
58 pub events: Vec<Box<RawJsonValue>>,
60 }
61
62 impl Request {
63 pub fn new(
65 room_id: OwnedRoomId,
66 earliest_events: Vec<OwnedEventId>,
67 latest_events: Vec<OwnedEventId>,
68 ) -> Self {
69 Self {
70 room_id,
71 limit: default_limit(),
72 min_depth: UInt::default(),
73 earliest_events,
74 latest_events,
75 }
76 }
77 }
78
79 impl Response {
80 pub fn new(events: Vec<Box<RawJsonValue>>) -> Self {
82 Self { events }
83 }
84 }
85
86 fn default_limit() -> UInt {
87 uint!(10)
88 }
89
90 fn is_default_limit(val: &UInt) -> bool {
91 *val == default_limit()
92 }
93}