fix: Handle the websocet in handle_socket
itself #34
1 changed files with 24 additions and 29 deletions
|
@ -148,17 +148,14 @@ async fn handle_socket(
|
||||||
// TODO: Send the incoming chat request to the user, while they are offline.
|
// TODO: Send the incoming chat request to the user, while they are offline.
|
||||||
// This after adding last_login col to the user table
|
// This after adding last_login col to the user table
|
||||||
|
|
||||||
let fut = async move {
|
|
||||||
while let Some(Ok(msg)) = user_ws_receiver.next().await {
|
while let Some(Ok(msg)) = user_ws_receiver.next().await {
|
||||||
match handle_ws_msg(msg, &nonce_cache, &user_shared_secret).await {
|
match handle_ws_msg(msg, &nonce_cache, &user_shared_secret).await {
|
||||||
Ok(event) => {
|
Ok(event) => {
|
||||||
if let Some(server_event) =
|
if let Some(server_event) =
|
||||||
handle_events(event, &db_conn, &conn_id, user.as_ref()).await
|
handle_events(event, &db_conn, &conn_id, user.as_ref()).await
|
||||||
{
|
{
|
||||||
if let Err(err) = sender.unbounded_send(Ok(server_event
|
if let Err(err) = sender
|
||||||
.sign(&user_shared_secret)
|
.unbounded_send(Ok(server_event.sign(&user_shared_secret).as_ref().into()))
|
||||||
.as_ref()
|
|
||||||
.into()))
|
|
||||||
{
|
{
|
||||||
log::error!("Websocket Error: {err}");
|
log::error!("Websocket Error: {err}");
|
||||||
break;
|
break;
|
||||||
|
@ -178,8 +175,6 @@ async fn handle_socket(
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
user_disconnected(&db_conn, &conn_id, &user_public_key, user).await;
|
user_disconnected(&db_conn, &conn_id, &user_public_key, user).await;
|
||||||
};
|
|
||||||
tokio_spawn(fut);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handle websocket msg
|
/// Handle websocket msg
|
||||||
|
|
Loading…
Reference in a new issue