2021-02-09 18:26:06 +00:00
|
|
|
use crate::{
|
2020-09-24 13:53:21 +00:00
|
|
|
chat_server::ChatServer,
|
2021-02-22 18:04:32 +00:00
|
|
|
messages::{Connect, Disconnect, StandardMessage, WsMessage},
|
2020-09-24 13:53:21 +00:00
|
|
|
LemmyContext,
|
|
|
|
};
|
2021-02-09 18:26:06 +00:00
|
|
|
use actix::prelude::*;
|
|
|
|
use actix_web::*;
|
|
|
|
use actix_web_actors::ws;
|
2021-03-18 20:25:21 +00:00
|
|
|
use lemmy_utils::{utils::get_ip, ConnectionId, IpAddr};
|
2020-05-17 01:09:26 +00:00
|
|
|
use log::{debug, error, info};
|
2020-05-16 14:04:08 +00:00
|
|
|
use std::time::{Duration, Instant};
|
2019-12-31 12:55:33 +00:00
|
|
|
|
|
|
|
/// How often heartbeat pings are sent
|
|
|
|
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
|
|
|
|
/// How long before lack of client response causes a timeout
|
|
|
|
const CLIENT_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
|
|
|
|
/// Entry point for our route
|
2021-03-29 21:48:37 +00:00
|
|
|
pub async fn chat_route(
|
2019-12-31 12:55:33 +00:00
|
|
|
req: HttpRequest,
|
|
|
|
stream: web::Payload,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2019-12-31 12:55:33 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
|
|
|
ws::start(
|
2021-02-22 18:04:32 +00:00
|
|
|
WsSession {
|
2020-08-18 13:43:50 +00:00
|
|
|
cs_addr: context.chat_server().to_owned(),
|
2019-12-31 12:55:33 +00:00
|
|
|
id: 0,
|
|
|
|
hb: Instant::now(),
|
2020-04-20 18:02:25 +00:00
|
|
|
ip: get_ip(&req.connection_info()),
|
2019-12-31 12:55:33 +00:00
|
|
|
},
|
|
|
|
&req,
|
|
|
|
stream,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-02-22 18:04:32 +00:00
|
|
|
struct WsSession {
|
2019-12-31 12:55:33 +00:00
|
|
|
cs_addr: Addr<ChatServer>,
|
|
|
|
/// unique session id
|
2021-03-18 20:25:21 +00:00
|
|
|
id: ConnectionId,
|
|
|
|
ip: IpAddr,
|
2019-12-31 12:55:33 +00:00
|
|
|
/// Client must send ping at least once per 10 seconds (CLIENT_TIMEOUT),
|
|
|
|
/// otherwise we drop connection.
|
|
|
|
hb: Instant,
|
|
|
|
}
|
|
|
|
|
2021-02-22 18:04:32 +00:00
|
|
|
impl Actor for WsSession {
|
2019-12-31 12:55:33 +00:00
|
|
|
type Context = ws::WebsocketContext<Self>;
|
|
|
|
|
|
|
|
/// Method is called on actor start.
|
|
|
|
/// We register ws session with ChatServer
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
// we'll start heartbeat process on session start.
|
|
|
|
self.hb(ctx);
|
|
|
|
|
|
|
|
// register self in chat server. `AsyncContext::wait` register
|
|
|
|
// future within context, but context waits until this future resolves
|
|
|
|
// before processing any other events.
|
|
|
|
// across all routes within application
|
|
|
|
let addr = ctx.address();
|
|
|
|
self
|
|
|
|
.cs_addr
|
|
|
|
.send(Connect {
|
|
|
|
addr: addr.recipient(),
|
|
|
|
ip: self.ip.to_owned(),
|
|
|
|
})
|
|
|
|
.into_actor(self)
|
|
|
|
.then(|res, act, ctx| {
|
|
|
|
match res {
|
|
|
|
Ok(res) => act.id = res,
|
|
|
|
// something is wrong with chat server
|
|
|
|
_ => ctx.stop(),
|
|
|
|
}
|
2020-01-10 22:41:08 +00:00
|
|
|
actix::fut::ready(())
|
2019-12-31 12:55:33 +00:00
|
|
|
})
|
|
|
|
.wait(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stopping(&mut self, _ctx: &mut Self::Context) -> Running {
|
|
|
|
// notify chat server
|
|
|
|
self.cs_addr.do_send(Disconnect {
|
|
|
|
id: self.id,
|
|
|
|
ip: self.ip.to_owned(),
|
|
|
|
});
|
|
|
|
Running::Stop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Handle messages from chat server, we simply send it to peer websocket
|
|
|
|
/// These are room messages, IE sent to others in the room
|
2021-02-22 18:04:32 +00:00
|
|
|
impl Handler<WsMessage> for WsSession {
|
2019-12-31 12:55:33 +00:00
|
|
|
type Result = ();
|
|
|
|
|
2021-02-22 18:04:32 +00:00
|
|
|
fn handle(&mut self, msg: WsMessage, ctx: &mut Self::Context) {
|
2019-12-31 12:55:33 +00:00
|
|
|
ctx.text(msg.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// WebSocket message handler
|
2021-02-22 18:04:32 +00:00
|
|
|
impl StreamHandler<Result<ws::Message, ws::ProtocolError>> for WsSession {
|
2020-01-10 22:41:08 +00:00
|
|
|
fn handle(&mut self, result: Result<ws::Message, ws::ProtocolError>, ctx: &mut Self::Context) {
|
|
|
|
let message = match result {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(e) => {
|
2020-03-13 15:08:42 +00:00
|
|
|
error!("{}", e);
|
2020-01-10 22:41:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
match message {
|
2019-12-31 12:55:33 +00:00
|
|
|
ws::Message::Ping(msg) => {
|
|
|
|
self.hb = Instant::now();
|
|
|
|
ctx.pong(&msg);
|
|
|
|
}
|
|
|
|
ws::Message::Pong(_) => {
|
|
|
|
self.hb = Instant::now();
|
|
|
|
}
|
|
|
|
ws::Message::Text(text) => {
|
|
|
|
let m = text.trim().to_owned();
|
2020-03-13 15:08:42 +00:00
|
|
|
info!("Message received: {:?} from id: {}", &m, self.id);
|
2019-12-31 12:55:33 +00:00
|
|
|
|
|
|
|
self
|
|
|
|
.cs_addr
|
|
|
|
.send(StandardMessage {
|
|
|
|
id: self.id,
|
|
|
|
msg: m,
|
|
|
|
})
|
|
|
|
.into_actor(self)
|
|
|
|
.then(|res, _, ctx| {
|
|
|
|
match res {
|
2020-04-20 03:59:07 +00:00
|
|
|
Ok(Ok(res)) => ctx.text(res),
|
2020-04-21 20:40:03 +00:00
|
|
|
Ok(Err(_)) => {}
|
2020-04-20 03:59:07 +00:00
|
|
|
Err(e) => error!("{}", &e),
|
2019-12-31 12:55:33 +00:00
|
|
|
}
|
2020-01-10 22:41:08 +00:00
|
|
|
actix::fut::ready(())
|
2019-12-31 12:55:33 +00:00
|
|
|
})
|
2020-04-22 04:29:25 +00:00
|
|
|
.spawn(ctx);
|
2019-12-31 12:55:33 +00:00
|
|
|
}
|
2020-03-13 15:08:42 +00:00
|
|
|
ws::Message::Binary(_bin) => info!("Unexpected binary"),
|
2019-12-31 12:55:33 +00:00
|
|
|
ws::Message::Close(_) => {
|
|
|
|
ctx.stop();
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 18:04:32 +00:00
|
|
|
impl WsSession {
|
2019-12-31 12:55:33 +00:00
|
|
|
/// helper method that sends ping to client every second.
|
|
|
|
///
|
|
|
|
/// also this method checks heartbeats from client
|
|
|
|
fn hb(&self, ctx: &mut ws::WebsocketContext<Self>) {
|
|
|
|
ctx.run_interval(HEARTBEAT_INTERVAL, |act, ctx| {
|
|
|
|
// check client heartbeats
|
|
|
|
if Instant::now().duration_since(act.hb) > CLIENT_TIMEOUT {
|
|
|
|
// heartbeat timed out
|
2020-05-15 16:36:11 +00:00
|
|
|
debug!("Websocket Client heartbeat failed, disconnecting!");
|
2019-12-31 12:55:33 +00:00
|
|
|
|
|
|
|
// notify chat server
|
|
|
|
act.cs_addr.do_send(Disconnect {
|
|
|
|
id: act.id,
|
|
|
|
ip: act.ip.to_owned(),
|
|
|
|
});
|
|
|
|
|
|
|
|
// stop actor
|
|
|
|
ctx.stop();
|
|
|
|
|
|
|
|
// don't try to send a ping
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-10 22:41:08 +00:00
|
|
|
ctx.ping(b"");
|
2019-12-31 12:55:33 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|