1//! `GET /_matrix/client/*/presence/{userId}/status`
2//!
3//! Get presence status for this user.
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv3presenceuseridstatus
910use std::time::Duration;
1112use ruma_common::{
13 api::{request, response, Metadata},
14 metadata,
15 presence::PresenceState,
16 OwnedUserId,
17 };
1819const METADATA: Metadata = metadata! {
20 method: GET,
21 rate_limited: false,
22 authentication: AccessToken,
23 history: {
241.0 => "/_matrix/client/r0/presence/:user_id/status",
251.1 => "/_matrix/client/v3/presence/:user_id/status",
26 }
27 };
2829/// Request type for the `get_presence` endpoint.
30#[request(error = crate::Error)]
31pub struct Request {
32/// The user whose presence state will be retrieved.
33#[ruma_api(path)]
34pub user_id: OwnedUserId,
35 }
3637/// Response type for the `get_presence` endpoint.
38#[response(error = crate::Error)]
39pub struct Response {
40/// The state message for this user if one was set.
41#[serde(skip_serializing_if = "Option::is_none")]
42pub status_msg: Option<String>,
4344/// Whether or not the user is currently active.
45#[serde(skip_serializing_if = "Option::is_none")]
46pub currently_active: Option<bool>,
4748/// The length of time in milliseconds since an action was performed by the user.
49#[serde(
50 with = "ruma_common::serde::duration::opt_ms",
51 default,
52 skip_serializing_if = "Option::is_none"
53)]
54pub last_active_ago: Option<Duration>,
5556/// The user's presence state.
57pub presence: PresenceState,
58 }
5960impl Request {
61/// Creates a new `Request` with the given user ID.
62pub fn new(user_id: OwnedUserId) -> Self {
63Self { user_id }
64 }
65 }
6667impl Response {
68/// Creates a new `Response` with the given presence state.
69pub fn new(presence: PresenceState) -> Self {
70Self { presence, status_msg: None, currently_active: None, last_active_ago: None }
71 }
72 }
73}