Add tagging endpoints.

This commit is contained in:
Victor Berger 2016-12-23 14:52:28 +01:00
parent f880b15f42
commit 3cd398a9ae

View File

@ -1 +1,133 @@
//! Endpoints for tagging rooms.
/// PUT /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags/{tag}
///
/// [Matrix spec link](http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-user-userid-rooms-roomid-tags-tag)
pub mod add_tag {
use ruma_identifiers::{UserId, RoomId};
use ruma_events::tag::TagInfo;
/// Details about this API endpoint.
pub struct Endpoint;
/// This API endpoint's path parameters.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct PathParams {
pub user_id: UserId,
pub room_id: RoomId,
pub tag: String
}
impl ::Endpoint for Endpoint {
type BodyParams = TagInfo;
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
fn method() -> ::Method {
::Method::Put
}
fn request_path(params: Self::PathParams) -> String {
format!(
"/_matrix/client/r0/user/{}/rooms/{}/tags/{}",
params.user_id,
params.room_id,
params.tag
)
}
fn router_path() -> String {
"/_matrix/client/r0/user/:user_id/rooms/:room_id/tags/:tag".to_string()
}
}
}
/// GET /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags
///
/// [Matrix spec link](http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-user-userid-rooms-roomid-tags)
pub mod get_tags {
use ruma_identifiers::{UserId, RoomId};
use ruma_events::tag::TagEventContent;
/// Details about this API endpoint.
pub struct Endpoint;
/// This API endpoint's path parameters.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct PathParams {
pub user_id: UserId,
pub room_id: RoomId
}
/// This API endpoint's path parameters.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Response {
pub tags: TagEventContent,
}
impl ::Endpoint for Endpoint {
type BodyParams = ();
type PathParams = PathParams;
type QueryParams = ();
type Response = Response;
fn method() -> ::Method {
::Method::Get
}
fn request_path(params: Self::PathParams) -> String {
format!(
"/_matrix/client/r0/user/{}/rooms/{}/tags",
params.user_id,
params.room_id
)
}
fn router_path() -> String {
"/_matrix/client/r0/user/:user_id/rooms/:room_id/tags".to_string()
}
}
}
/// DELETE /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags/{tag}
///
/// [Matrix spec link](http://matrix.org/docs/spec/client_server/r0.2.0.html#delete-matrix-client-r0-user-userid-rooms-roomid-tags-tag)
pub mod del_tag {
use ruma_identifiers::{UserId, RoomId};
/// Details about this API endpoint.
pub struct Endpoint;
/// This API endpoint's path parameters.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct PathParams {
pub user_id: UserId,
pub room_id: RoomId,
pub tag: String
}
impl ::Endpoint for Endpoint {
type BodyParams = ();
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
fn method() -> ::Method {
::Method::Delete
}
fn request_path(params: Self::PathParams) -> String {
format!(
"/_matrix/client/r0/user/{}/rooms/{}/tags/{}",
params.user_id,
params.room_id,
params.tag
)
}
fn router_path() -> String {
"/_matrix/client/r0/user/:user_id/rooms/:room_id/tags/:tag".to_string()
}
}
}