1//! `GET /_matrix/federation/*/timestamp_to_event/{roomId}`
2//!
3//! Get the ID of the event closest to the given timestamp.
45pub mod v1 {
6//! `/v1/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/server-server-api/#get_matrixfederationv1timestamp_to_eventroomid
910use ruma_common::{
11 api::{request, response, Direction, Metadata},
12 metadata, MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedRoomId,
13 };
1415const METADATA: Metadata = metadata! {
16 method: GET,
17 rate_limited: false,
18 authentication: ServerSignatures,
19 history: {
20 unstable => "/_matrix/federation/unstable/org.matrix.msc3030/timestamp_to_event/:room_id",
211.6 => "/_matrix/federation/v1/timestamp_to_event/:room_id",
22 }
23 };
2425/// Request type for the `get_event_by_timestamp` endpoint.
26#[request]
27pub struct Request {
28/// The ID of the room the event is in.
29#[ruma_api(path)]
30pub room_id: OwnedRoomId,
3132/// The timestamp to search from.
33#[ruma_api(query)]
34pub ts: MilliSecondsSinceUnixEpoch,
3536/// The direction in which to search.
37#[ruma_api(query)]
38pub dir: Direction,
39 }
4041/// Response type for the `get_event_by_timestamp` endpoint.
42#[response]
43pub struct Response {
44/// The ID of the event found.
45pub event_id: OwnedEventId,
4647/// The event's timestamp.
48pub origin_server_ts: MilliSecondsSinceUnixEpoch,
49 }
5051impl Request {
52/// Creates a new `Request` with the given room ID, timestamp and direction.
53pub fn new(room_id: OwnedRoomId, ts: MilliSecondsSinceUnixEpoch, dir: Direction) -> Self {
54Self { room_id, ts, dir }
55 }
56 }
5758impl Response {
59/// Creates a new `Response` with the given event ID and timestamp.
60pub fn new(event_id: OwnedEventId, origin_server_ts: MilliSecondsSinceUnixEpoch) -> Self {
61Self { event_id, origin_server_ts }
62 }
63 }
64}