2020-09-13 20:24:36 +00:00
|
|
|
use crate::{client_server, ConduitResult, Database, Error, PduEvent, Result, Ruma};
|
2020-04-22 09:53:06 +00:00
|
|
|
use http::header::{HeaderValue, AUTHORIZATION};
|
2020-08-14 09:29:32 +00:00
|
|
|
use rocket::{get, post, put, response::content::Json, State};
|
2020-09-12 20:41:33 +00:00
|
|
|
use ruma::{
|
|
|
|
api::{
|
|
|
|
client,
|
|
|
|
federation::{
|
|
|
|
directory::get_public_rooms,
|
|
|
|
discovery::{
|
|
|
|
get_server_keys, get_server_version::v1 as get_server_version, ServerKey, VerifyKey,
|
|
|
|
},
|
|
|
|
transactions::send_transaction_message,
|
2020-08-06 12:29:59 +00:00
|
|
|
},
|
2020-09-12 20:41:33 +00:00
|
|
|
OutgoingRequest,
|
2020-08-14 09:29:32 +00:00
|
|
|
},
|
2020-09-12 20:41:33 +00:00
|
|
|
EventId,
|
2020-05-26 08:27:51 +00:00
|
|
|
};
|
2020-04-22 18:55:11 +00:00
|
|
|
use serde_json::json;
|
|
|
|
use std::{
|
2020-04-25 09:47:32 +00:00
|
|
|
collections::BTreeMap,
|
|
|
|
convert::TryFrom,
|
2020-08-14 09:31:31 +00:00
|
|
|
fmt::Debug,
|
2020-04-22 18:55:11 +00:00
|
|
|
time::{Duration, SystemTime},
|
|
|
|
};
|
2020-04-19 12:14:47 +00:00
|
|
|
|
2020-05-03 15:25:31 +00:00
|
|
|
pub async fn request_well_known(db: &crate::Database, destination: &str) -> Option<String> {
|
2020-04-29 10:18:45 +00:00
|
|
|
let body: serde_json::Value = serde_json::from_str(
|
2020-05-03 15:25:31 +00:00
|
|
|
&db.globals
|
2020-04-29 10:18:45 +00:00
|
|
|
.reqwest_client()
|
|
|
|
.get(&format!(
|
|
|
|
"https://{}/.well-known/matrix/server",
|
|
|
|
destination
|
|
|
|
))
|
|
|
|
.send()
|
|
|
|
.await
|
|
|
|
.ok()?
|
|
|
|
.text()
|
|
|
|
.await
|
|
|
|
.ok()?,
|
|
|
|
)
|
|
|
|
.ok()?;
|
2020-04-26 20:39:15 +00:00
|
|
|
Some(body.get("m.server")?.as_str()?.to_owned())
|
|
|
|
}
|
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
pub async fn send_request<T: OutgoingRequest>(
|
2020-05-03 15:25:31 +00:00
|
|
|
db: &crate::Database,
|
2020-04-19 12:14:47 +00:00
|
|
|
destination: String,
|
|
|
|
request: T,
|
2020-08-14 09:31:31 +00:00
|
|
|
) -> Result<T::IncomingResponse>
|
|
|
|
where
|
|
|
|
T: Debug,
|
|
|
|
{
|
2020-04-29 10:18:45 +00:00
|
|
|
let actual_destination = "https://".to_owned()
|
2020-05-03 15:25:31 +00:00
|
|
|
+ &request_well_known(db, &destination)
|
2020-04-29 10:18:45 +00:00
|
|
|
.await
|
|
|
|
.unwrap_or(destination.clone() + ":8448");
|
2020-08-14 09:31:31 +00:00
|
|
|
|
|
|
|
let mut http_request = request
|
|
|
|
.try_into_http_request(&actual_destination, Some(""))
|
|
|
|
.unwrap();
|
2020-04-22 09:53:06 +00:00
|
|
|
|
2020-04-22 19:14:40 +00:00
|
|
|
let mut request_map = serde_json::Map::new();
|
2020-04-19 12:14:47 +00:00
|
|
|
|
2020-04-22 19:14:40 +00:00
|
|
|
if !http_request.body().is_empty() {
|
2020-04-25 09:47:32 +00:00
|
|
|
request_map.insert(
|
|
|
|
"content".to_owned(),
|
2020-08-14 09:31:31 +00:00
|
|
|
serde_json::from_slice(http_request.body()).unwrap(),
|
2020-04-25 09:47:32 +00:00
|
|
|
);
|
2020-04-22 19:14:40 +00:00
|
|
|
};
|
2020-04-19 12:14:47 +00:00
|
|
|
|
2020-04-22 09:53:06 +00:00
|
|
|
request_map.insert("method".to_owned(), T::METADATA.method.to_string().into());
|
2020-08-14 09:31:31 +00:00
|
|
|
request_map.insert(
|
|
|
|
"uri".to_owned(),
|
|
|
|
http_request
|
|
|
|
.uri()
|
|
|
|
.path_and_query()
|
|
|
|
.expect("all requests have a path")
|
|
|
|
.to_string()
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
request_map.insert(
|
|
|
|
"origin".to_owned(),
|
|
|
|
db.globals.server_name().as_str().into(),
|
|
|
|
);
|
2020-04-26 20:39:15 +00:00
|
|
|
request_map.insert("destination".to_owned(), destination.into());
|
2020-04-22 19:14:40 +00:00
|
|
|
|
|
|
|
let mut request_json = request_map.into();
|
2020-06-05 16:19:26 +00:00
|
|
|
ruma::signatures::sign_json(
|
2020-08-14 09:31:31 +00:00
|
|
|
db.globals.server_name().as_str(),
|
2020-05-09 19:47:09 +00:00
|
|
|
db.globals.keypair(),
|
|
|
|
&mut request_json,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-04-19 12:14:47 +00:00
|
|
|
|
2020-04-22 09:53:06 +00:00
|
|
|
let signatures = request_json["signatures"]
|
|
|
|
.as_object()
|
|
|
|
.unwrap()
|
|
|
|
.values()
|
2020-08-14 09:31:31 +00:00
|
|
|
.map(|v| {
|
|
|
|
v.as_object()
|
|
|
|
.unwrap()
|
|
|
|
.iter()
|
|
|
|
.map(|(k, v)| (k, v.as_str().unwrap()))
|
|
|
|
});
|
|
|
|
|
|
|
|
for signature_server in signatures {
|
|
|
|
for s in signature_server {
|
|
|
|
http_request.headers_mut().insert(
|
|
|
|
AUTHORIZATION,
|
|
|
|
HeaderValue::from_str(&format!(
|
|
|
|
"X-Matrix origin={},key=\"{}\",sig=\"{}\"",
|
|
|
|
db.globals.server_name(),
|
|
|
|
s.0,
|
|
|
|
s.1
|
|
|
|
))
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
}
|
2020-04-22 09:53:06 +00:00
|
|
|
}
|
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
let reqwest_request = reqwest::Request::try_from(http_request)
|
|
|
|
.expect("all http requests are valid reqwest requests");
|
|
|
|
|
|
|
|
let reqwest_response = db.globals.reqwest_client().execute(reqwest_request).await;
|
2020-04-22 09:53:06 +00:00
|
|
|
|
|
|
|
// Because reqwest::Response -> http::Response is complicated:
|
|
|
|
match reqwest_response {
|
|
|
|
Ok(mut reqwest_response) => {
|
|
|
|
let status = reqwest_response.status();
|
|
|
|
let mut http_response = http::Response::builder().status(status);
|
|
|
|
let headers = http_response.headers_mut().unwrap();
|
|
|
|
|
|
|
|
for (k, v) in reqwest_response.headers_mut().drain() {
|
|
|
|
if let Some(key) = k {
|
|
|
|
headers.insert(key, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let body = reqwest_response
|
|
|
|
.bytes()
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
2020-09-12 19:30:07 +00:00
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
Ok(
|
|
|
|
T::IncomingResponse::try_from(http_response.body(body).unwrap())
|
|
|
|
.expect("TODO: error handle other server errors"),
|
2020-04-22 18:55:11 +00:00
|
|
|
)
|
2020-04-22 09:53:06 +00:00
|
|
|
}
|
2020-08-14 09:31:31 +00:00
|
|
|
Err(e) => Err(e.into()),
|
2020-04-22 09:53:06 +00:00
|
|
|
}
|
2020-04-19 12:14:47 +00:00
|
|
|
}
|
2020-04-22 18:55:11 +00:00
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
#[cfg_attr(feature = "conduit_bin", get("/.well-known/matrix/server"))]
|
2020-05-03 15:25:31 +00:00
|
|
|
pub fn well_known_server() -> Json<String> {
|
2020-08-14 09:31:31 +00:00
|
|
|
rocket::response::content::Json(json!({ "m.server": "pc.koesters.xyz:59003"}).to_string())
|
2020-04-22 18:55:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
#[cfg_attr(feature = "conduit_bin", get("/_matrix/federation/v1/version"))]
|
|
|
|
pub fn get_server_version() -> ConduitResult<get_server_version::Response> {
|
|
|
|
Ok(get_server_version::Response {
|
2020-04-28 18:03:14 +00:00
|
|
|
server: Some(get_server_version::Server {
|
2020-04-22 18:55:11 +00:00
|
|
|
name: Some("Conduit".to_owned()),
|
|
|
|
version: Some(env!("CARGO_PKG_VERSION").to_owned()),
|
2020-04-28 18:03:14 +00:00
|
|
|
}),
|
2020-08-14 09:31:31 +00:00
|
|
|
}
|
|
|
|
.into())
|
2020-04-22 18:55:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
#[cfg_attr(feature = "conduit_bin", get("/_matrix/key/v2/server"))]
|
2020-05-03 15:25:31 +00:00
|
|
|
pub fn get_server_keys(db: State<'_, Database>) -> Json<String> {
|
2020-04-22 18:55:11 +00:00
|
|
|
let mut verify_keys = BTreeMap::new();
|
|
|
|
verify_keys.insert(
|
2020-05-03 15:25:31 +00:00
|
|
|
format!("ed25519:{}", db.globals.keypair().version()),
|
2020-08-14 09:31:31 +00:00
|
|
|
VerifyKey {
|
2020-05-03 15:25:31 +00:00
|
|
|
key: base64::encode_config(db.globals.keypair().public_key(), base64::STANDARD_NO_PAD),
|
2020-04-22 18:55:11 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
let mut response = serde_json::from_slice(
|
2020-08-14 09:31:31 +00:00
|
|
|
http::Response::try_from(get_server_keys::v2::Response {
|
|
|
|
server_key: ServerKey {
|
|
|
|
server_name: db.globals.server_name().to_owned(),
|
|
|
|
verify_keys,
|
|
|
|
old_verify_keys: BTreeMap::new(),
|
|
|
|
signatures: BTreeMap::new(),
|
|
|
|
valid_until_ts: SystemTime::now() + Duration::from_secs(60 * 2),
|
|
|
|
},
|
2020-04-22 18:55:11 +00:00
|
|
|
})
|
|
|
|
.unwrap()
|
|
|
|
.body(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-05 16:19:26 +00:00
|
|
|
ruma::signatures::sign_json(
|
2020-08-14 09:31:31 +00:00
|
|
|
db.globals.server_name().as_str(),
|
2020-05-17 17:56:40 +00:00
|
|
|
db.globals.keypair(),
|
|
|
|
&mut response,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-04-25 09:47:32 +00:00
|
|
|
Json(response.to_string())
|
2020-04-22 18:55:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-14 09:31:31 +00:00
|
|
|
#[cfg_attr(feature = "conduit_bin", get("/_matrix/key/v2/server/<_>"))]
|
|
|
|
pub fn get_server_keys_deprecated(db: State<'_, Database>) -> Json<String> {
|
2020-05-03 15:25:31 +00:00
|
|
|
get_server_keys(db)
|
2020-04-22 18:55:11 +00:00
|
|
|
}
|
2020-08-14 09:29:32 +00:00
|
|
|
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "conduit_bin",
|
|
|
|
post("/_matrix/federation/v1/publicRooms", data = "<body>")
|
|
|
|
)]
|
|
|
|
pub async fn get_public_rooms_route(
|
|
|
|
db: State<'_, Database>,
|
2020-09-08 15:32:03 +00:00
|
|
|
body: Ruma<get_public_rooms::v1::Request<'_>>,
|
2020-08-14 09:29:32 +00:00
|
|
|
) -> ConduitResult<get_public_rooms::v1::Response> {
|
|
|
|
let Ruma {
|
|
|
|
body:
|
2020-08-06 12:29:59 +00:00
|
|
|
get_public_rooms::v1::IncomingRequest {
|
2020-08-14 09:29:32 +00:00
|
|
|
room_network: _room_network, // TODO
|
|
|
|
limit,
|
|
|
|
since,
|
|
|
|
},
|
2020-08-23 12:32:43 +00:00
|
|
|
..
|
2020-08-14 09:29:32 +00:00
|
|
|
} = body;
|
|
|
|
|
|
|
|
let client::r0::directory::get_public_rooms_filtered::Response {
|
|
|
|
chunk,
|
|
|
|
prev_batch,
|
|
|
|
next_batch,
|
|
|
|
total_room_count_estimate,
|
2020-08-23 12:32:43 +00:00
|
|
|
} = client_server::get_public_rooms_filtered_helper(
|
|
|
|
&db,
|
|
|
|
None,
|
|
|
|
limit,
|
|
|
|
since.as_deref(),
|
|
|
|
None,
|
2020-09-08 15:32:03 +00:00
|
|
|
Some(ruma::directory::IncomingRoomNetwork::Matrix),
|
2020-08-14 09:29:32 +00:00
|
|
|
)
|
|
|
|
.await?
|
|
|
|
.0;
|
|
|
|
|
|
|
|
Ok(get_public_rooms::v1::Response {
|
|
|
|
chunk: chunk
|
|
|
|
.into_iter()
|
|
|
|
.map(|c| {
|
|
|
|
// Convert ruma::api::federation::directory::get_public_rooms::v1::PublicRoomsChunk
|
|
|
|
// to ruma::api::client::r0::directory::PublicRoomsChunk
|
|
|
|
Ok::<_, Error>(
|
|
|
|
serde_json::from_str(
|
|
|
|
&serde_json::to_string(&c)
|
|
|
|
.expect("PublicRoomsChunk::to_string always works"),
|
|
|
|
)
|
|
|
|
.expect("federation and client-server PublicRoomsChunk are the same type"),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.filter_map(|r| r.ok())
|
|
|
|
.collect(),
|
|
|
|
prev_batch,
|
|
|
|
next_batch,
|
|
|
|
total_room_count_estimate,
|
|
|
|
}
|
|
|
|
.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "conduit_bin",
|
|
|
|
put("/_matrix/federation/v1/send/<_>", data = "<body>")
|
|
|
|
)]
|
2020-08-06 12:29:59 +00:00
|
|
|
pub fn send_transaction_message_route<'a>(
|
2020-09-12 20:41:33 +00:00
|
|
|
db: State<'a, Database>,
|
2020-09-08 15:32:03 +00:00
|
|
|
body: Ruma<send_transaction_message::v1::Request<'_>>,
|
2020-08-14 09:29:32 +00:00
|
|
|
) -> ConduitResult<send_transaction_message::v1::Response> {
|
2020-09-13 20:24:36 +00:00
|
|
|
//dbg!(&*body);
|
2020-09-12 20:41:33 +00:00
|
|
|
for pdu in &body.pdus {
|
2020-09-13 20:24:36 +00:00
|
|
|
let mut value = serde_json::from_str(pdu.json().get())
|
|
|
|
.expect("converting raw jsons to values always works");
|
|
|
|
|
2020-09-12 20:41:33 +00:00
|
|
|
let event_id = EventId::try_from(&*format!(
|
|
|
|
"${}",
|
|
|
|
ruma::signatures::reference_hash(&value).expect("ruma can calculate reference hashes")
|
|
|
|
))
|
|
|
|
.expect("ruma's reference hashes are valid event ids");
|
|
|
|
|
|
|
|
value
|
|
|
|
.as_object_mut()
|
|
|
|
.expect("ruma pdus are json objects")
|
|
|
|
.insert("event_id".to_owned(), event_id.to_string().into());
|
|
|
|
|
2020-09-13 20:24:36 +00:00
|
|
|
let pdu =
|
|
|
|
serde_json::from_value::<PduEvent>(value).expect("all ruma pdus are conduit pdus");
|
|
|
|
if db.rooms.exists(&pdu.room_id)? {
|
|
|
|
db.rooms.append_pdu(&pdu, &db.globals, &db.account_data)?;
|
|
|
|
}
|
2020-09-12 20:41:33 +00:00
|
|
|
}
|
2020-08-14 09:29:32 +00:00
|
|
|
Ok(send_transaction_message::v1::Response {
|
|
|
|
pdus: BTreeMap::new(),
|
|
|
|
}
|
|
|
|
.into())
|
|
|
|
}
|