Todo: ruma signatures

This commit will get force pushed away later
next
timokoesters 2020-03-30 15:38:25 +02:00
parent dba6c46667
commit 22cca206ba
No known key found for this signature in database
GPG Key ID: 356E705610F626D5
2 changed files with 14 additions and 12 deletions

View File

@ -19,3 +19,4 @@ ruma-api = "0.15.0"
ruma-events = "0.18.0"
js_int = "0.1.3"
serde_json = "1.0.50"
ruma-signatures = "0.5.0"

View File

@ -218,20 +218,21 @@ fn create_message_event_route(
_txn_id: String,
body: Ruma<create_message_event::Request>,
) -> MatrixResult<create_message_event::Response> {
// Construct event
let event = Event::RoomMessage(MessageEvent {
content: body.data.clone().into_result().unwrap(),
event_id: event_id.clone(),
origin_server_ts: utils::millis_since_unix_epoch(),
room_id: Some(body.room_id.clone()),
sender: body.user_id.clone().expect("user is authenticated"),
unsigned: Map::default(),
});
// Generate event id
dbg!(ruma_signatures::reference_hash(event));
let event_id = EventId::try_from("$TODOrandomeventid:localhost").unwrap();
data.event_add(
&body.room_id,
&event_id,
&Event::RoomMessage(MessageEvent {
content: body.data.clone().into_result().unwrap(),
event_id: event_id.clone(),
origin_server_ts: utils::millis_since_unix_epoch(),
room_id: Some(body.room_id.clone()),
sender: body.user_id.clone().expect("user is authenticated"),
unsigned: Map::default(),
}),
);
data.event_add(&body.room_id, &event_id, &event);
MatrixResult(Ok(create_message_event::Response { event_id }))
}