mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-11 00:34:46 +00:00
68 lines
1.7 KiB
Rust
68 lines
1.7 KiB
Rust
|
use super::State;
|
||
|
use crate::{ConduitResult, Database, Error, Ruma};
|
||
|
use ruma::api::client::{
|
||
|
error::ErrorKind,
|
||
|
r0::alias::{create_alias, delete_alias, get_alias},
|
||
|
};
|
||
|
|
||
|
#[cfg(feature = "conduit_bin")]
|
||
|
use rocket::{delete, get, put};
|
||
|
|
||
|
#[cfg_attr(
|
||
|
feature = "conduit_bin",
|
||
|
put("/_matrix/client/r0/directory/room/<_>", data = "<body>")
|
||
|
)]
|
||
|
pub fn create_alias_route(
|
||
|
db: State<'_, Database>,
|
||
|
body: Ruma<create_alias::Request>,
|
||
|
) -> ConduitResult<create_alias::Response> {
|
||
|
if db.rooms.id_from_alias(&body.room_alias)?.is_some() {
|
||
|
return Err(Error::Conflict("Alias already exists."));
|
||
|
}
|
||
|
|
||
|
db.rooms
|
||
|
.set_alias(&body.room_alias, Some(&body.room_id), &db.globals)?;
|
||
|
|
||
|
Ok(create_alias::Response.into())
|
||
|
}
|
||
|
|
||
|
#[cfg_attr(
|
||
|
feature = "conduit_bin",
|
||
|
delete("/_matrix/client/r0/directory/room/<_>", data = "<body>")
|
||
|
)]
|
||
|
pub fn delete_alias_route(
|
||
|
db: State<'_, Database>,
|
||
|
body: Ruma<delete_alias::Request>,
|
||
|
) -> ConduitResult<delete_alias::Response> {
|
||
|
db.rooms.set_alias(&body.room_alias, None, &db.globals)?;
|
||
|
|
||
|
Ok(delete_alias::Response.into())
|
||
|
}
|
||
|
|
||
|
#[cfg_attr(
|
||
|
feature = "conduit_bin",
|
||
|
get("/_matrix/client/r0/directory/room/<_>", data = "<body>")
|
||
|
)]
|
||
|
pub fn get_alias_route(
|
||
|
db: State<'_, Database>,
|
||
|
body: Ruma<get_alias::Request>,
|
||
|
) -> ConduitResult<get_alias::Response> {
|
||
|
if body.room_alias.server_name() != db.globals.server_name() {
|
||
|
todo!("ask remote server");
|
||
|
}
|
||
|
|
||
|
let room_id = db
|
||
|
.rooms
|
||
|
.id_from_alias(&body.room_alias)?
|
||
|
.ok_or(Error::BadRequest(
|
||
|
ErrorKind::NotFound,
|
||
|
"Room with alias not found.",
|
||
|
))?;
|
||
|
|
||
|
Ok(get_alias::Response {
|
||
|
room_id,
|
||
|
servers: vec![db.globals.server_name().to_string()],
|
||
|
}
|
||
|
.into())
|
||
|
}
|