1//! `GET /_matrix/client/*/rooms/{roomId}/context/{eventId}`
2//!
3//! Get the events immediately preceding and following a given event.
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv3roomsroomidcontexteventid
910use js_int::{uint, UInt};
11use ruma_common::{
12 api::{request, response, Metadata},
13 metadata,
14 serde::Raw,
15 OwnedEventId, OwnedRoomId,
16 };
17use ruma_events::{AnyStateEvent, AnyTimelineEvent};
1819use crate::filter::RoomEventFilter;
2021const METADATA: Metadata = metadata! {
22 method: GET,
23 rate_limited: false,
24 authentication: AccessToken,
25 history: {
261.0 => "/_matrix/client/r0/rooms/:room_id/context/:event_id",
271.1 => "/_matrix/client/v3/rooms/:room_id/context/:event_id",
28 }
29 };
3031/// Request type for the `get_context` endpoint.
32#[request(error = crate::Error)]
33pub struct Request {
34/// The room to get events from.
35#[ruma_api(path)]
36pub room_id: OwnedRoomId,
3738/// The event to get context around.
39#[ruma_api(path)]
40pub event_id: OwnedEventId,
4142/// The maximum number of context events to return.
43 ///
44 /// This limit applies to the sum of the `events_before` and `events_after` arrays. The
45 /// requested event ID is always returned in `event` even if the limit is `0`.
46 ///
47 /// Defaults to 10.
48#[ruma_api(query)]
49 #[serde(default = "default_limit", skip_serializing_if = "is_default_limit")]
50pub limit: UInt,
5152/// A RoomEventFilter to filter returned events with.
53#[ruma_api(query)]
54 #[serde(
55 with = "ruma_common::serde::json_string",
56 default,
57 skip_serializing_if = "RoomEventFilter::is_empty"
58)]
59pub filter: RoomEventFilter,
60 }
6162/// Response type for the `get_context` endpoint.
63#[response(error = crate::Error)]
64 #[derive(Default)]
65pub struct Response {
66/// A token that can be used to paginate backwards with.
67#[serde(skip_serializing_if = "Option::is_none")]
68pub start: Option<String>,
6970/// A token that can be used to paginate forwards with.
71#[serde(skip_serializing_if = "Option::is_none")]
72pub end: Option<String>,
7374/// A list of room events that happened just before the requested event,
75 /// in reverse-chronological order.
76#[serde(default, skip_serializing_if = "Vec::is_empty")]
77pub events_before: Vec<Raw<AnyTimelineEvent>>,
7879/// Details of the requested event.
80#[serde(skip_serializing_if = "Option::is_none")]
81pub event: Option<Raw<AnyTimelineEvent>>,
8283/// A list of room events that happened just after the requested event,
84 /// in chronological order.
85#[serde(default, skip_serializing_if = "Vec::is_empty")]
86pub events_after: Vec<Raw<AnyTimelineEvent>>,
8788/// The state of the room at the last event returned.
89#[serde(default, skip_serializing_if = "Vec::is_empty")]
90pub state: Vec<Raw<AnyStateEvent>>,
91 }
9293impl Request {
94/// Creates a new `Request` with the given room id and event id.
95pub fn new(room_id: OwnedRoomId, event_id: OwnedEventId) -> Self {
96Self { room_id, event_id, limit: default_limit(), filter: RoomEventFilter::default() }
97 }
98 }
99100impl Response {
101/// Creates an empty `Response`.
102pub fn new() -> Self {
103 Default::default()
104 }
105 }
106107fn default_limit() -> UInt {
108uint!(10)
109 }
110111#[allow(clippy::trivially_copy_pass_by_ref)]
112fn is_default_limit(val: &UInt) -> bool {
113*val == default_limit()
114 }
115}