pub mod v3 {
use std::borrow::Borrow;
use ruma_common::{
MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedRoomId,
api::{auth_scheme::AccessToken, response},
metadata,
serde::Raw,
};
use ruma_events::{AnyStateEventContent, StateEventContent, StateEventType};
use serde_json::value::to_raw_value as to_raw_json_value;
metadata! {
method: PUT,
rate_limited: false,
authentication: AccessToken,
history: {
1.0 => "/_matrix/client/r0/rooms/{room_id}/state/{event_type}/{state_key}",
1.1 => "/_matrix/client/v3/rooms/{room_id}/state/{event_type}/{state_key}",
}
}
#[derive(Clone, Debug)]
#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
pub struct Request {
pub room_id: OwnedRoomId,
pub event_type: StateEventType,
pub state_key: String,
pub body: Raw<AnyStateEventContent>,
pub timestamp: Option<MilliSecondsSinceUnixEpoch>,
}
impl Request {
pub fn new<T, K>(
room_id: OwnedRoomId,
state_key: &K,
content: &T,
) -> serde_json::Result<Self>
where
T: StateEventContent,
T::StateKey: Borrow<K>,
K: AsRef<str> + ?Sized,
{
Ok(Self {
room_id,
state_key: state_key.as_ref().to_owned(),
event_type: content.event_type(),
body: Raw::from_json(to_raw_json_value(content)?),
timestamp: None,
})
}
pub fn new_raw(
room_id: OwnedRoomId,
event_type: StateEventType,
state_key: String,
body: Raw<AnyStateEventContent>,
) -> Self {
Self { room_id, event_type, state_key, body, timestamp: None }
}
}
#[response(error = crate::Error)]
pub struct Response {
pub event_id: OwnedEventId,
}
impl Response {
pub fn new(event_id: OwnedEventId) -> Self {
Self { event_id }
}
}
#[cfg(feature = "client")]
impl ruma_common::api::OutgoingRequest for Request {
type EndpointError = crate::Error;
type IncomingResponse = Response;
fn try_into_http_request<T: Default + bytes::BufMut + AsRef<[u8]>>(
self,
base_url: &str,
access_token: ruma_common::api::auth_scheme::SendAccessToken<'_>,
considering: std::borrow::Cow<'_, ruma_common::api::SupportedVersions>,
) -> Result<http::Request<T>, ruma_common::api::error::IntoHttpError> {
use ruma_common::api::{Metadata, auth_scheme::AuthScheme};
let query_string =
serde_html_form::to_string(RequestQuery { timestamp: self.timestamp })?;
let mut http_request = http::Request::builder()
.method(Self::METHOD)
.uri(Self::make_endpoint_url(
considering,
base_url,
&[&self.room_id, &self.event_type, &self.state_key],
&query_string,
)?)
.header(http::header::CONTENT_TYPE, ruma_common::http_headers::APPLICATION_JSON)
.body(ruma_common::serde::json_to_buf(&self.body)?)?;
Self::Authentication::add_authentication(&mut http_request, access_token).map_err(
|error| ruma_common::api::error::IntoHttpError::Authentication(error.into()),
)?;
Ok(http_request)
}
}
#[cfg(feature = "server")]
impl ruma_common::api::IncomingRequest for Request {
type EndpointError = crate::Error;
type OutgoingResponse = Response;
fn try_from_http_request<B, S>(
request: http::Request<B>,
path_args: &[S],
) -> Result<Self, ruma_common::api::error::FromHttpRequestError>
where
B: AsRef<[u8]>,
S: AsRef<str>,
{
Self::check_request_method(request.method())?;
let (room_id, event_type, state_key): (OwnedRoomId, StateEventType, String) =
if path_args.len() == 3 {
serde::Deserialize::deserialize(serde::de::value::SeqDeserializer::<
_,
serde::de::value::Error,
>::new(
path_args.iter().map(::std::convert::AsRef::as_ref),
))?
} else {
let (a, b) =
serde::Deserialize::deserialize(serde::de::value::SeqDeserializer::<
_,
serde::de::value::Error,
>::new(
path_args.iter().map(::std::convert::AsRef::as_ref),
))?;
(a, b, "".into())
};
let request_query: RequestQuery =
serde_html_form::from_str(request.uri().query().unwrap_or(""))?;
let body = serde_json::from_slice(request.body().as_ref())?;
Ok(Self { room_id, event_type, state_key, body, timestamp: request_query.timestamp })
}
}
#[derive(Debug)]
#[cfg_attr(feature = "client", derive(serde::Serialize))]
#[cfg_attr(feature = "server", derive(serde::Deserialize))]
struct RequestQuery {
#[serde(rename = "ts", skip_serializing_if = "Option::is_none")]
timestamp: Option<MilliSecondsSinceUnixEpoch>,
}
#[cfg(feature = "client")]
#[test]
fn serialize() {
use std::borrow::Cow;
use ruma_common::{
api::{
MatrixVersion, OutgoingRequest as _, SupportedVersions,
auth_scheme::SendAccessToken,
},
owned_room_id,
};
use ruma_events::{EmptyStateKey, room::name::RoomNameEventContent};
let supported = SupportedVersions {
versions: [MatrixVersion::V1_1].into(),
features: Default::default(),
};
let req = Request::new(
owned_room_id!("!room:server.tld"),
&EmptyStateKey,
&RoomNameEventContent::new("Test room".to_owned()),
)
.unwrap()
.try_into_http_request::<Vec<u8>>(
"https://server.tld",
SendAccessToken::IfRequired("access_token"),
Cow::Owned(supported),
)
.unwrap();
assert_eq!(
req.uri(),
"https://server.tld/_matrix/client/v3/rooms/!room:server.tld/state/m.room.name/"
);
}
}