|
|
|
@ -60,12 +60,11 @@ use ruma::{
|
|
|
|
|
unversioned::get_supported_versions,
|
|
|
|
|
},
|
|
|
|
|
events::{
|
|
|
|
|
collections::only::Event as EduEvent,
|
|
|
|
|
room::{
|
|
|
|
|
canonical_alias, guest_access, history_visibility, join_rules, member, name, redaction,
|
|
|
|
|
topic,
|
|
|
|
|
},
|
|
|
|
|
EventJson, EventType,
|
|
|
|
|
AnyBasicEvent, AnyEphemeralRoomEvent, AnyEvent as EduEvent, EventJson, EventType,
|
|
|
|
|
},
|
|
|
|
|
identifiers::{RoomAliasId, RoomId, RoomVersionId, UserId},
|
|
|
|
|
};
|
|
|
|
@ -77,7 +76,7 @@ const TOKEN_LENGTH: usize = 256;
|
|
|
|
|
const MXC_LENGTH: usize = 256;
|
|
|
|
|
const SESSION_ID_LENGTH: usize = 256;
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/versions")]
|
|
|
|
|
// #[get("/_matrix/client/versions")]
|
|
|
|
|
pub fn get_supported_versions_route() -> ConduitResult<get_supported_versions::Response> {
|
|
|
|
|
let mut unstable_features = BTreeMap::new();
|
|
|
|
|
|
|
|
|
@ -90,7 +89,7 @@ pub fn get_supported_versions_route() -> ConduitResult<get_supported_versions::R
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/register/available", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/register/available", data = "<body>")]
|
|
|
|
|
pub fn get_register_available_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_username_availability::Request>,
|
|
|
|
@ -120,7 +119,7 @@ pub fn get_register_available_route(
|
|
|
|
|
Ok(get_username_availability::Response { available: true }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/register", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/register", data = "<body>")]
|
|
|
|
|
pub fn register_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<register::Request>,
|
|
|
|
@ -226,7 +225,7 @@ pub fn register_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/login")]
|
|
|
|
|
// #[get("/_matrix/client/r0/login")]
|
|
|
|
|
pub fn get_login_route() -> ConduitResult<get_login_types::Response> {
|
|
|
|
|
Ok(get_login_types::Response {
|
|
|
|
|
flows: vec![get_login_types::LoginType::Password],
|
|
|
|
@ -234,7 +233,7 @@ pub fn get_login_route() -> ConduitResult<get_login_types::Response> {
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/login", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/login", data = "<body>")]
|
|
|
|
|
pub fn login_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<login::Request>,
|
|
|
|
@ -285,14 +284,14 @@ pub fn login_route(
|
|
|
|
|
Ok(login::Response {
|
|
|
|
|
user_id,
|
|
|
|
|
access_token: token,
|
|
|
|
|
home_server: Some(db.globals.server_name().to_owned()),
|
|
|
|
|
home_server: Some(db.globals.server_name().to_string()),
|
|
|
|
|
device_id,
|
|
|
|
|
well_known: None,
|
|
|
|
|
}
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/logout", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/logout", data = "<body>")]
|
|
|
|
|
pub fn logout_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<logout::Request>,
|
|
|
|
@ -473,14 +472,14 @@ pub fn get_capabilities_route() -> ConduitResult<get_capabilities::Response> {
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/pushrules", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/pushrules", data = "<body>")]
|
|
|
|
|
pub fn get_pushrules_all_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_pushrules_all::Request>,
|
|
|
|
|
) -> ConduitResult<get_pushrules_all::Response> {
|
|
|
|
|
let user_id = body.user_id.as_ref().expect("user is authenticated");
|
|
|
|
|
|
|
|
|
|
if let EduEvent::PushRules(pushrules) = db
|
|
|
|
|
if let EduEvent::Basic(AnyBasicEvent::PushRules(pushrules)) = db
|
|
|
|
|
.account_data
|
|
|
|
|
.get(None, &user_id, &EventType::PushRules)?
|
|
|
|
|
.ok_or(Error::BadRequest(
|
|
|
|
@ -515,7 +514,7 @@ pub fn set_pushrule_route(
|
|
|
|
|
Ok(set_pushrule::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/pushrules/<_scope>/<_kind>/<_rule_id>/enabled")]
|
|
|
|
|
// #[put("/_matrix/client/r0/pushrules/<_scope>/<_kind>/<_rule_id>/enabled")]
|
|
|
|
|
pub fn set_pushrule_enabled_route(
|
|
|
|
|
_scope: String,
|
|
|
|
|
_kind: String,
|
|
|
|
@ -526,7 +525,7 @@ pub fn set_pushrule_enabled_route(
|
|
|
|
|
Ok(set_pushrule_enabled::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/user/<_user_id>/filter/<_filter_id>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/user/<_user_id>/filter/<_filter_id>")]
|
|
|
|
|
pub fn get_filter_route(
|
|
|
|
|
_user_id: String,
|
|
|
|
|
_filter_id: String,
|
|
|
|
@ -544,7 +543,7 @@ pub fn get_filter_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/user/<_user_id>/filter")]
|
|
|
|
|
// #[post("/_matrix/client/r0/user/<_user_id>/filter")]
|
|
|
|
|
pub fn create_filter_route(_user_id: String) -> ConduitResult<create_filter::Response> {
|
|
|
|
|
// TODO
|
|
|
|
|
Ok(create_filter::Response {
|
|
|
|
@ -553,10 +552,10 @@ pub fn create_filter_route(_user_id: String) -> ConduitResult<create_filter::Res
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/user/<_user_id>/account_data/<_type>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[put(
|
|
|
|
|
// "/_matrix/client/r0/user/<_user_id>/account_data/<_type>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn set_global_account_data_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<set_global_account_data::Request>,
|
|
|
|
@ -582,10 +581,10 @@ pub fn set_global_account_data_route(
|
|
|
|
|
Ok(set_global_account_data::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/client/r0/user/<_user_id>/account_data/<_type>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/client/r0/user/<_user_id>/account_data/<_type>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_global_account_data_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_global_account_data::Request>,
|
|
|
|
@ -603,10 +602,19 @@ pub fn get_global_account_data_route(
|
|
|
|
|
)?
|
|
|
|
|
.ok_or(Error::BadRequest(ErrorKind::NotFound, "Data not found."))?;
|
|
|
|
|
|
|
|
|
|
Ok(get_global_account_data::Response { account_data: data }.into())
|
|
|
|
|
// TODO clearly this is not ideal...
|
|
|
|
|
// NOTE: EventJson is no longer needed as all the enums and event structs impl ser/de
|
|
|
|
|
let data: Result<EduEvent, Error> = data.deserialize().map_err(Into::into);
|
|
|
|
|
match data? {
|
|
|
|
|
EduEvent::Basic(data) => Ok(get_global_account_data::Response {
|
|
|
|
|
account_data: EventJson::from(data),
|
|
|
|
|
}
|
|
|
|
|
.into()),
|
|
|
|
|
_ => panic!("timo what do i do here"),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/profile/<_user_id>/displayname", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/profile/<_user_id>/displayname", data = "<body>")]
|
|
|
|
|
pub fn set_displayname_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<set_display_name::Request>,
|
|
|
|
@ -672,7 +680,7 @@ pub fn set_displayname_route(
|
|
|
|
|
Ok(set_display_name::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/profile/<_user_id>/displayname", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/profile/<_user_id>/displayname", data = "<body>")]
|
|
|
|
|
pub fn get_displayname_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_display_name::Request>,
|
|
|
|
@ -685,7 +693,7 @@ pub fn get_displayname_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/profile/<_user_id>/avatar_url", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/profile/<_user_id>/avatar_url", data = "<body>")]
|
|
|
|
|
pub fn set_avatar_url_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<set_avatar_url::Request>,
|
|
|
|
@ -762,7 +770,7 @@ pub fn set_avatar_url_route(
|
|
|
|
|
Ok(set_avatar_url::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/profile/<_user_id>/avatar_url", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/profile/<_user_id>/avatar_url", data = "<body>")]
|
|
|
|
|
pub fn get_avatar_url_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_avatar_url::Request>,
|
|
|
|
@ -775,7 +783,7 @@ pub fn get_avatar_url_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/profile/<_user_id>", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/profile/<_user_id>", data = "<body>")]
|
|
|
|
|
pub fn get_profile_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_profile::Request>,
|
|
|
|
@ -800,7 +808,7 @@ pub fn get_profile_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/presence/<_user_id>/status", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/presence/<_user_id>/status", data = "<body>")]
|
|
|
|
|
pub fn set_presence_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<set_presence::Request>,
|
|
|
|
@ -830,7 +838,7 @@ pub fn set_presence_route(
|
|
|
|
|
Ok(set_presence::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/keys/upload", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/keys/upload", data = "<body>")]
|
|
|
|
|
pub fn upload_keys_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<upload_keys::Request>,
|
|
|
|
@ -859,7 +867,7 @@ pub fn upload_keys_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/keys/query", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/keys/query", data = "<body>")]
|
|
|
|
|
pub fn get_keys_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_keys::Request>,
|
|
|
|
@ -936,7 +944,7 @@ pub fn get_keys_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/keys/claim", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/keys/claim", data = "<body>")]
|
|
|
|
|
pub fn claim_keys_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<claim_keys::Request>,
|
|
|
|
@ -1099,7 +1107,7 @@ pub fn set_read_marker_route(
|
|
|
|
|
content: ruma::events::fully_read::FullyReadEventContent {
|
|
|
|
|
event_id: body.fully_read.clone(),
|
|
|
|
|
},
|
|
|
|
|
room_id: Some(body.room_id.clone()),
|
|
|
|
|
room_id: body.room_id.clone(),
|
|
|
|
|
})
|
|
|
|
|
.expect("we just created a valid event")
|
|
|
|
|
.as_object_mut()
|
|
|
|
@ -1135,20 +1143,22 @@ pub fn set_read_marker_route(
|
|
|
|
|
db.rooms.edus.roomlatest_update(
|
|
|
|
|
&user_id,
|
|
|
|
|
&body.room_id,
|
|
|
|
|
EduEvent::Receipt(ruma::events::receipt::ReceiptEvent {
|
|
|
|
|
content: receipt_content,
|
|
|
|
|
room_id: None, // None because it can be inferred
|
|
|
|
|
}),
|
|
|
|
|
EduEvent::Ephemeral(AnyEphemeralRoomEvent::Receipt(
|
|
|
|
|
ruma::events::receipt::ReceiptEvent {
|
|
|
|
|
content: ruma::events::receipt::ReceiptEventContent(receipt_content),
|
|
|
|
|
room_id: body.room_id.clone(),
|
|
|
|
|
},
|
|
|
|
|
)),
|
|
|
|
|
&db.globals,
|
|
|
|
|
)?;
|
|
|
|
|
}
|
|
|
|
|
Ok(set_read_marker::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/typing/<_user_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[put(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/typing/<_user_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn create_typing_event_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<create_typing_event::Request>,
|
|
|
|
@ -1174,15 +1184,14 @@ pub fn create_typing_event_route(
|
|
|
|
|
Ok(create_typing_event::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/createRoom", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/createRoom", data = "<body>")]
|
|
|
|
|
pub fn create_room_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<create_room::Request>,
|
|
|
|
|
) -> ConduitResult<create_room::Response> {
|
|
|
|
|
let user_id = body.user_id.as_ref().expect("user is authenticated");
|
|
|
|
|
|
|
|
|
|
let room_id = RoomId::new(db.globals.server_name())
|
|
|
|
|
.map_err(|_| Error::bad_database("Server name is invalid."))?;
|
|
|
|
|
let room_id = RoomId::new(db.globals.server_name());
|
|
|
|
|
|
|
|
|
|
let alias = body
|
|
|
|
|
.room_alias_name
|
|
|
|
@ -1439,10 +1448,10 @@ pub fn create_room_route(
|
|
|
|
|
Ok(create_room::Response { room_id }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/redact/<_event_id>/<_txn_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[put(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/redact/<_event_id>/<_txn_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn redact_event_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<redact_event::Request>,
|
|
|
|
@ -1469,7 +1478,7 @@ pub fn redact_event_route(
|
|
|
|
|
Ok(redact_event::Response { event_id }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
pub fn create_alias_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<create_alias::Request>,
|
|
|
|
@ -1485,7 +1494,7 @@ pub fn create_alias_route(
|
|
|
|
|
Ok(create_alias::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[delete("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
// #[delete("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
pub fn delete_alias_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<delete_alias::Request>,
|
|
|
|
@ -1496,7 +1505,7 @@ pub fn delete_alias_route(
|
|
|
|
|
Ok(delete_alias::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/directory/room/<_room_alias>", data = "<body>")]
|
|
|
|
|
pub fn get_alias_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_alias::Request>,
|
|
|
|
@ -1516,12 +1525,12 @@ pub fn get_alias_route(
|
|
|
|
|
|
|
|
|
|
Ok(get_alias::Response {
|
|
|
|
|
room_id,
|
|
|
|
|
servers: vec![db.globals.server_name().to_owned()],
|
|
|
|
|
servers: vec![db.globals.server_name().to_string()],
|
|
|
|
|
}
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/join", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/join", data = "<body>")]
|
|
|
|
|
pub fn join_room_by_id_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<join_room_by_id::Request>,
|
|
|
|
@ -1556,7 +1565,7 @@ pub fn join_room_by_id_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/join/<_room_id_or_alias>", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/join/<_room_id_or_alias>", data = "<body>")]
|
|
|
|
|
pub fn join_room_by_id_or_alias_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<join_room_by_id_or_alias::Request>,
|
|
|
|
@ -1585,7 +1594,7 @@ pub fn join_room_by_id_or_alias_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/leave", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/leave", data = "<body>")]
|
|
|
|
|
pub fn leave_room_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<leave_room::Request>,
|
|
|
|
@ -1623,7 +1632,7 @@ pub fn leave_room_route(
|
|
|
|
|
Ok(leave_room::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/kick", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/kick", data = "<body>")]
|
|
|
|
|
pub fn kick_user_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<kick_user::Request>,
|
|
|
|
@ -1663,7 +1672,7 @@ pub fn kick_user_route(
|
|
|
|
|
Ok(kick_user::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/ban", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/ban", data = "<body>")]
|
|
|
|
|
pub fn ban_user_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<ban_user::Request>,
|
|
|
|
@ -1710,7 +1719,7 @@ pub fn ban_user_route(
|
|
|
|
|
Ok(ban_user::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/unban", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/unban", data = "<body>")]
|
|
|
|
|
pub fn unban_user_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<unban_user::Request>,
|
|
|
|
@ -1749,7 +1758,7 @@ pub fn unban_user_route(
|
|
|
|
|
Ok(unban_user::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/forget", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/forget", data = "<body>")]
|
|
|
|
|
pub fn forget_room_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<forget_room::Request>,
|
|
|
|
@ -1762,7 +1771,7 @@ pub fn forget_room_route(
|
|
|
|
|
Ok(forget_room::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/rooms/<_room_id>/invite", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/rooms/<_room_id>/invite", data = "<body>")]
|
|
|
|
|
pub fn invite_user_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<invite_user::Request>,
|
|
|
|
@ -1793,7 +1802,7 @@ pub fn invite_user_route(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/directory/list/room/<_room_id>", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/directory/list/room/<_room_id>", data = "<body>")]
|
|
|
|
|
pub async fn set_room_visibility_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<set_room_visibility::Request>,
|
|
|
|
@ -1807,7 +1816,7 @@ pub async fn set_room_visibility_route(
|
|
|
|
|
Ok(set_room_visibility::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/directory/list/room/<_room_id>", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/directory/list/room/<_room_id>", data = "<body>")]
|
|
|
|
|
pub async fn get_room_visibility_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_room_visibility::Request>,
|
|
|
|
@ -1823,7 +1832,7 @@ pub async fn get_room_visibility_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/publicRooms", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/publicRooms", data = "<body>")]
|
|
|
|
|
pub async fn get_public_rooms_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_public_rooms::Request>,
|
|
|
|
@ -1872,7 +1881,7 @@ pub async fn get_public_rooms_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/publicRooms", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/publicRooms", data = "<body>")]
|
|
|
|
|
pub async fn get_public_rooms_filtered_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_public_rooms_filtered::Request>,
|
|
|
|
@ -1984,7 +1993,7 @@ pub async fn get_public_rooms_filtered_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/user_directory/search", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/user_directory/search", data = "<body>")]
|
|
|
|
|
pub fn search_users_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<search_users::Request>,
|
|
|
|
@ -2050,7 +2059,7 @@ pub fn get_member_events_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/thirdparty/protocols")]
|
|
|
|
|
// #[get("/_matrix/client/r0/thirdparty/protocols")]
|
|
|
|
|
pub fn get_protocols_route() -> ConduitResult<get_protocols::Response> {
|
|
|
|
|
warn!("TODO: get_protocols_route");
|
|
|
|
|
Ok(get_protocols::Response {
|
|
|
|
@ -2124,7 +2133,7 @@ pub fn create_message_event_route(
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>/<_state_key>",
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>/<_state_key>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
pub fn create_state_event_for_key_route(
|
|
|
|
@ -2185,10 +2194,10 @@ pub fn create_state_event_for_key_route(
|
|
|
|
|
Ok(create_state_event_for_key::Response { event_id }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[put(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn create_state_event_for_empty_key_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<create_state_event_for_empty_key::Request>,
|
|
|
|
@ -2232,7 +2241,7 @@ pub fn create_state_event_for_empty_key_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/rooms/<_room_id>/state", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/rooms/<_room_id>/state", data = "<body>")]
|
|
|
|
|
pub fn get_state_events_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_state_events::Request>,
|
|
|
|
@ -2258,10 +2267,10 @@ pub fn get_state_events_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>/<_state_key>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>/<_state_key>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_state_events_for_key_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_state_events_for_key::Request>,
|
|
|
|
@ -2293,10 +2302,10 @@ pub fn get_state_events_for_key_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/state/<_event_type>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_state_events_for_empty_key_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_state_events_for_empty_key::Request>,
|
|
|
|
@ -2327,7 +2336,7 @@ pub fn get_state_events_for_empty_key_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/sync", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/sync", data = "<body>")]
|
|
|
|
|
pub fn sync_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<sync_events::Request>,
|
|
|
|
@ -2522,9 +2531,9 @@ pub fn sync_route(
|
|
|
|
|
{
|
|
|
|
|
edus.push(
|
|
|
|
|
serde_json::from_str(
|
|
|
|
|
&serde_json::to_string(&EduEvent::Typing(
|
|
|
|
|
&serde_json::to_string(&EduEvent::Ephemeral(AnyEphemeralRoomEvent::Typing(
|
|
|
|
|
db.rooms.edus.roomactives_all(&room_id)?,
|
|
|
|
|
))
|
|
|
|
|
)))
|
|
|
|
|
.expect("event is valid, we just created it"),
|
|
|
|
|
)
|
|
|
|
|
.expect("event is valid, we just created it"),
|
|
|
|
@ -2537,7 +2546,13 @@ pub fn sync_route(
|
|
|
|
|
.account_data
|
|
|
|
|
.changes_since(Some(&room_id), &user_id, since)?
|
|
|
|
|
.into_iter()
|
|
|
|
|
.map(|(_, v)| v)
|
|
|
|
|
.flat_map(|(_, v)| {
|
|
|
|
|
if let Some(EduEvent::Basic(account_event)) = v.deserialize().ok() {
|
|
|
|
|
Some(EventJson::from(account_event))
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.collect(),
|
|
|
|
|
},
|
|
|
|
|
summary: sync_events::RoomSummary {
|
|
|
|
@ -2701,10 +2716,10 @@ pub fn sync_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/client/r0/rooms/<_room_id>/context/<_event_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/client/r0/rooms/<_room_id>/context/<_event_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_context_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_context::Request>,
|
|
|
|
@ -2802,7 +2817,7 @@ pub fn get_context_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/rooms/<_room_id>/messages", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/rooms/<_room_id>/messages", data = "<body>")]
|
|
|
|
|
pub fn get_message_events_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_message_events::Request>,
|
|
|
|
@ -2824,15 +2839,16 @@ pub fn get_message_events_route(
|
|
|
|
|
.map_err(|_| Error::BadRequest(ErrorKind::InvalidParam, "Invalid `from` value."))?;
|
|
|
|
|
match body.dir {
|
|
|
|
|
get_message_events::Direction::Forward => {
|
|
|
|
|
let limit = body
|
|
|
|
|
.limit
|
|
|
|
|
.try_into()
|
|
|
|
|
.map_or(Ok::<_, Error>(10_usize), |l: u32| Ok(l as usize))?;
|
|
|
|
|
|
|
|
|
|
let events_after = db
|
|
|
|
|
.rooms
|
|
|
|
|
.pdus_after(&user_id, &body.room_id, from)
|
|
|
|
|
// Use limit or else 10
|
|
|
|
|
.take(body.limit.map_or(Ok::<_, Error>(10_usize), |l| {
|
|
|
|
|
Ok(u32::try_from(l).map_err(|_| {
|
|
|
|
|
Error::BadRequest(ErrorKind::InvalidParam, "Limit value is invalid.")
|
|
|
|
|
})? as usize)
|
|
|
|
|
})?)
|
|
|
|
|
.take(limit)
|
|
|
|
|
.filter_map(|r| r.ok()) // Filter out buggy events
|
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
|
@ -2859,15 +2875,16 @@ pub fn get_message_events_route(
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
get_message_events::Direction::Backward => {
|
|
|
|
|
let limit = body
|
|
|
|
|
.limit
|
|
|
|
|
.try_into()
|
|
|
|
|
.map_or(Ok::<_, Error>(10_usize), |l: u32| Ok(l as usize))?;
|
|
|
|
|
|
|
|
|
|
let events_before = db
|
|
|
|
|
.rooms
|
|
|
|
|
.pdus_until(&user_id, &body.room_id, from)
|
|
|
|
|
// Use limit or else 10
|
|
|
|
|
.take(body.limit.map_or(Ok::<_, Error>(10_usize), |l| {
|
|
|
|
|
Ok(u32::try_from(l).map_err(|_| {
|
|
|
|
|
Error::BadRequest(ErrorKind::InvalidParam, "Limit value is invalid.")
|
|
|
|
|
})? as usize)
|
|
|
|
|
})?)
|
|
|
|
|
.take(limit)
|
|
|
|
|
.filter_map(|r| r.ok()) // Filter out buggy events
|
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
|
@ -2896,7 +2913,7 @@ pub fn get_message_events_route(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/voip/turnServer")]
|
|
|
|
|
// #[get("/_matrix/client/r0/voip/turnServer")]
|
|
|
|
|
pub fn turn_server_route() -> ConduitResult<create_message_event::Response> {
|
|
|
|
|
Err(Error::BadRequest(
|
|
|
|
|
ErrorKind::NotFound,
|
|
|
|
@ -2904,7 +2921,7 @@ pub fn turn_server_route() -> ConduitResult<create_message_event::Response> {
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/publicised_groups")]
|
|
|
|
|
// #[post("/_matrix/client/r0/publicised_groups")]
|
|
|
|
|
pub fn publicised_groups_route() -> ConduitResult<create_message_event::Response> {
|
|
|
|
|
Err(Error::BadRequest(
|
|
|
|
|
ErrorKind::NotFound,
|
|
|
|
@ -2912,10 +2929,10 @@ pub fn publicised_groups_route() -> ConduitResult<create_message_event::Response
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put(
|
|
|
|
|
"/_matrix/client/r0/sendToDevice/<_event_type>/<_txn_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[put(
|
|
|
|
|
// "/_matrix/client/r0/sendToDevice/<_event_type>/<_txn_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn send_event_to_device_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<send_event_to_device::Request>,
|
|
|
|
@ -2961,7 +2978,7 @@ pub fn send_event_to_device_route(
|
|
|
|
|
Ok(send_event_to_device::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/media/r0/config")]
|
|
|
|
|
// #[get("/_matrix/media/r0/config")]
|
|
|
|
|
pub fn get_media_config_route() -> ConduitResult<get_media_config::Response> {
|
|
|
|
|
Ok(get_media_config::Response {
|
|
|
|
|
upload_size: (20_u32 * 1024 * 1024).into(), // 20 MB
|
|
|
|
@ -2969,7 +2986,7 @@ pub fn get_media_config_route() -> ConduitResult<get_media_config::Response> {
|
|
|
|
|
.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/media/r0/upload", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/media/r0/upload", data = "<body>")]
|
|
|
|
|
pub fn create_content_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<create_content::Request>,
|
|
|
|
@ -2989,10 +3006,10 @@ pub fn create_content_route(
|
|
|
|
|
Ok(create_content::Response { content_uri: mxc }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/media/r0/download/<_server_name>/<_media_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/media/r0/download/<_server_name>/<_media_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_content_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_content::Request>,
|
|
|
|
@ -3014,10 +3031,10 @@ pub fn get_content_route(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get(
|
|
|
|
|
"/_matrix/media/r0/thumbnail/<_server_name>/<_media_id>",
|
|
|
|
|
data = "<body>"
|
|
|
|
|
)]
|
|
|
|
|
// #[get(
|
|
|
|
|
// "/_matrix/media/r0/thumbnail/<_server_name>/<_media_id>",
|
|
|
|
|
// data = "<body>"
|
|
|
|
|
// )]
|
|
|
|
|
pub fn get_content_thumbnail_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_content_thumbnail::Request>,
|
|
|
|
@ -3039,7 +3056,7 @@ pub fn get_content_thumbnail_route(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/devices", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/devices", data = "<body>")]
|
|
|
|
|
pub fn get_devices_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_devices::Request>,
|
|
|
|
@ -3055,7 +3072,7 @@ pub fn get_devices_route(
|
|
|
|
|
Ok(get_devices::Response { devices }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[get("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
// #[get("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
pub fn get_device_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<get_device::Request>,
|
|
|
|
@ -3071,7 +3088,7 @@ pub fn get_device_route(
|
|
|
|
|
Ok(get_device::Response { device }.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[put("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
// #[put("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
pub fn update_device_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<update_device::Request>,
|
|
|
|
@ -3092,7 +3109,7 @@ pub fn update_device_route(
|
|
|
|
|
Ok(update_device::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[delete("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
// #[delete("/_matrix/client/r0/devices/<_device_id>", data = "<body>")]
|
|
|
|
|
pub fn delete_device_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<delete_device::Request>,
|
|
|
|
@ -3136,7 +3153,7 @@ pub fn delete_device_route(
|
|
|
|
|
Ok(delete_device::Response.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[post("/_matrix/client/r0/delete_devices", data = "<body>")]
|
|
|
|
|
// #[post("/_matrix/client/r0/delete_devices", data = "<body>")]
|
|
|
|
|
pub fn delete_devices_route(
|
|
|
|
|
db: State<'_, Database>,
|
|
|
|
|
body: Ruma<delete_devices::Request>,
|
|
|
|
|