2019-05-03 01:34:21 +00:00
|
|
|
extern crate lemmy_server;
|
2019-07-17 11:11:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel_migrations;
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-07-17 11:11:01 +00:00
|
|
|
use actix::prelude::*;
|
|
|
|
use actix_files::NamedFile;
|
2019-07-19 03:05:17 +00:00
|
|
|
use actix_web::*;
|
2019-07-17 11:11:01 +00:00
|
|
|
use actix_web_actors::ws;
|
2019-12-19 21:59:13 +00:00
|
|
|
use lemmy_server::apub;
|
2019-05-05 16:20:30 +00:00
|
|
|
use lemmy_server::db::establish_connection;
|
2019-11-16 02:17:42 +00:00
|
|
|
use lemmy_server::feeds;
|
2019-12-02 01:21:19 +00:00
|
|
|
use lemmy_server::nodeinfo;
|
2019-12-15 16:40:55 +00:00
|
|
|
use lemmy_server::settings::Settings;
|
2019-12-18 00:59:47 +00:00
|
|
|
use lemmy_server::webfinger;
|
2019-07-19 03:05:17 +00:00
|
|
|
use lemmy_server::websocket::server::*;
|
|
|
|
use std::env;
|
|
|
|
use std::time::{Duration, Instant};
|
2019-04-06 05:29:20 +00:00
|
|
|
|
|
|
|
embed_migrations!();
|
2019-03-21 01:22:31 +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
|
2019-07-19 03:05:17 +00:00
|
|
|
fn chat_route(
|
2019-07-20 02:56:40 +00:00
|
|
|
req: HttpRequest,
|
|
|
|
stream: web::Payload,
|
|
|
|
chat_server: web::Data<Addr<ChatServer>>,
|
2019-09-07 15:35:05 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2019-07-20 02:56:40 +00:00
|
|
|
ws::start(
|
|
|
|
WSSession {
|
|
|
|
cs_addr: chat_server.get_ref().to_owned(),
|
|
|
|
id: 0,
|
|
|
|
hb: Instant::now(),
|
|
|
|
ip: req
|
|
|
|
.connection_info()
|
|
|
|
.remote()
|
|
|
|
.unwrap_or("127.0.0.1:12345")
|
|
|
|
.split(":")
|
|
|
|
.next()
|
|
|
|
.unwrap_or("127.0.0.1")
|
|
|
|
.to_string(),
|
|
|
|
},
|
|
|
|
&req,
|
|
|
|
stream,
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct WSSession {
|
2019-07-20 02:56:40 +00:00
|
|
|
cs_addr: Addr<ChatServer>,
|
|
|
|
/// unique session id
|
|
|
|
id: usize,
|
|
|
|
ip: String,
|
|
|
|
/// Client must send ping at least once per 10 seconds (CLIENT_TIMEOUT),
|
|
|
|
/// otherwise we drop connection.
|
|
|
|
hb: Instant,
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Actor for WSSession {
|
2019-07-20 02:56:40 +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();
|
2019-09-07 15:35:05 +00:00
|
|
|
self
|
|
|
|
.cs_addr
|
2019-07-20 02:56:40 +00:00
|
|
|
.send(Connect {
|
|
|
|
addr: addr.recipient(),
|
|
|
|
ip: self.ip.to_owned(),
|
|
|
|
})
|
2019-09-07 15:35:05 +00:00
|
|
|
.into_actor(self)
|
2019-07-20 02:56:40 +00:00
|
|
|
.then(|res, act, ctx| {
|
|
|
|
match res {
|
|
|
|
Ok(res) => act.id = res,
|
|
|
|
// something is wrong with chat server
|
|
|
|
_ => ctx.stop(),
|
|
|
|
}
|
|
|
|
fut::ok(())
|
|
|
|
})
|
2019-09-07 15:35:05 +00:00
|
|
|
.wait(ctx);
|
2019-07-20 02:56:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Handle messages from chat server, we simply send it to peer websocket
|
2019-04-08 22:10:38 +00:00
|
|
|
/// These are room messages, IE sent to others in the room
|
2019-03-21 01:22:31 +00:00
|
|
|
impl Handler<WSMessage> for WSSession {
|
2019-07-20 02:56:40 +00:00
|
|
|
type Result = ();
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-07-20 02:56:40 +00:00
|
|
|
fn handle(&mut self, msg: WSMessage, ctx: &mut Self::Context) {
|
|
|
|
// println!("id: {} msg: {}", self.id, msg.0);
|
|
|
|
ctx.text(msg.0);
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// WebSocket message handler
|
|
|
|
impl StreamHandler<ws::Message, ws::ProtocolError> for WSSession {
|
2019-07-20 02:56:40 +00:00
|
|
|
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
|
|
|
// println!("WEBSOCKET MESSAGE: {:?} from id: {}", msg, self.id);
|
|
|
|
match msg {
|
|
|
|
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();
|
|
|
|
println!("WEBSOCKET MESSAGE: {:?} from id: {}", &m, self.id);
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
self
|
|
|
|
.cs_addr
|
2019-07-20 02:56:40 +00:00
|
|
|
.send(StandardMessage {
|
|
|
|
id: self.id,
|
|
|
|
msg: m,
|
|
|
|
})
|
2019-09-07 15:35:05 +00:00
|
|
|
.into_actor(self)
|
2019-07-20 02:56:40 +00:00
|
|
|
.then(|res, _, ctx| {
|
|
|
|
match res {
|
|
|
|
Ok(res) => ctx.text(res),
|
|
|
|
Err(e) => {
|
|
|
|
eprintln!("{}", &e);
|
|
|
|
}
|
2019-07-17 11:11:01 +00:00
|
|
|
}
|
2019-07-20 02:56:40 +00:00
|
|
|
fut::ok(())
|
|
|
|
})
|
2019-09-07 15:35:05 +00:00
|
|
|
.wait(ctx);
|
2019-07-20 02:56:40 +00:00
|
|
|
}
|
|
|
|
ws::Message::Binary(_bin) => println!("Unexpected binary"),
|
|
|
|
ws::Message::Close(_) => {
|
|
|
|
ctx.stop();
|
|
|
|
}
|
|
|
|
_ => {}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
2019-07-20 02:56:40 +00:00
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WSSession {
|
2019-07-20 02:56:40 +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
|
|
|
|
println!("Websocket Client heartbeat failed, disconnecting!");
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-07-20 02:56:40 +00:00
|
|
|
// notify chat server
|
|
|
|
act.cs_addr.do_send(Disconnect {
|
|
|
|
id: act.id,
|
|
|
|
ip: act.ip.to_owned(),
|
2019-07-17 11:11:01 +00:00
|
|
|
});
|
2019-07-20 02:56:40 +00:00
|
|
|
|
|
|
|
// stop actor
|
|
|
|
ctx.stop();
|
|
|
|
|
|
|
|
// don't try to send a ping
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.ping("");
|
|
|
|
});
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-07-20 02:56:40 +00:00
|
|
|
let _ = env_logger::init();
|
|
|
|
let sys = actix::System::new("lemmy");
|
|
|
|
|
|
|
|
// Run the migrations from code
|
|
|
|
let conn = establish_connection();
|
|
|
|
embedded_migrations::run(&conn).unwrap();
|
|
|
|
|
|
|
|
// Start chat server actor in separate thread
|
|
|
|
let server = ChatServer::default().start();
|
2019-11-15 17:10:56 +00:00
|
|
|
|
2019-12-06 22:47:30 +00:00
|
|
|
let settings = Settings::get();
|
2019-12-06 19:36:56 +00:00
|
|
|
|
|
|
|
// Create Http server with websocket support
|
2019-07-20 02:56:40 +00:00
|
|
|
HttpServer::new(move || {
|
2019-12-19 00:29:56 +00:00
|
|
|
let app = App::new()
|
2019-07-20 02:56:40 +00:00
|
|
|
.data(server.clone())
|
2019-12-12 05:28:33 +00:00
|
|
|
// Front end routes
|
|
|
|
.service(actix_files::Files::new("/static", front_end_dir()))
|
|
|
|
.route("/", web::get().to(index))
|
|
|
|
.route(
|
|
|
|
"/home/type/{type}/sort/{sort}/page/{page}",
|
|
|
|
web::get().to(index),
|
|
|
|
)
|
|
|
|
.route("/login", web::get().to(index))
|
|
|
|
.route("/create_post", web::get().to(index))
|
|
|
|
.route("/create_community", web::get().to(index))
|
|
|
|
.route("/communities/page/{page}", web::get().to(index))
|
|
|
|
.route("/communities", web::get().to(index))
|
|
|
|
.route("/post/{id}/comment/{id2}", web::get().to(index))
|
|
|
|
.route("/post/{id}", web::get().to(index))
|
|
|
|
.route("/c/{name}/sort/{sort}/page/{page}", web::get().to(index))
|
|
|
|
.route("/c/{name}", web::get().to(index))
|
|
|
|
.route("/community/{id}", web::get().to(index))
|
|
|
|
.route(
|
|
|
|
"/u/{username}/view/{view}/sort/{sort}/page/{page}",
|
|
|
|
web::get().to(index),
|
|
|
|
)
|
|
|
|
.route("/u/{username}", web::get().to(index))
|
|
|
|
.route("/user/{id}", web::get().to(index))
|
|
|
|
.route("/inbox", web::get().to(index))
|
|
|
|
.route("/modlog/community/{community_id}", web::get().to(index))
|
|
|
|
.route("/modlog", web::get().to(index))
|
|
|
|
.route("/setup", web::get().to(index))
|
|
|
|
.route(
|
|
|
|
"/search/q/{q}/type/{type}/sort/{sort}/page/{page}",
|
|
|
|
web::get().to(index),
|
|
|
|
)
|
|
|
|
.route("/search", web::get().to(index))
|
|
|
|
.route("/sponsors", web::get().to(index))
|
|
|
|
.route("/password_change/{token}", web::get().to(index))
|
|
|
|
// Websocket
|
2019-07-20 02:56:40 +00:00
|
|
|
.service(web::resource("/api/v1/ws").to(chat_route))
|
2019-12-12 05:28:33 +00:00
|
|
|
// NodeInfo
|
2019-11-15 02:08:25 +00:00
|
|
|
.route("/nodeinfo/2.0.json", web::get().to(nodeinfo::node_info))
|
2019-11-21 19:27:52 +00:00
|
|
|
.route(
|
|
|
|
"/.well-known/nodeinfo",
|
|
|
|
web::get().to(nodeinfo::node_info_well_known),
|
|
|
|
)
|
2019-12-12 05:28:33 +00:00
|
|
|
// RSS
|
2019-11-19 17:07:10 +00:00
|
|
|
.route("/feeds/{type}/{name}.xml", web::get().to(feeds::get_feed))
|
2019-12-01 19:01:38 +00:00
|
|
|
.route("/feeds/all.xml", web::get().to(feeds::get_all_feed))
|
2019-12-19 21:59:13 +00:00
|
|
|
// Federation
|
|
|
|
.route(
|
|
|
|
"/federation/c/{community_name}",
|
|
|
|
web::get().to(apub::community::get_apub_community),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/federation/c/{community_name}/followers",
|
|
|
|
web::get().to(apub::community::get_apub_community_followers),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/federation/u/{user_name}",
|
2019-12-18 00:59:47 +00:00
|
|
|
web::get().to(apub::user::get_apub_user))
|
2019-12-19 00:29:56 +00:00
|
|
|
.route("/feeds/all.xml", web::get().to(feeds::get_all_feed));
|
|
|
|
|
|
|
|
// Federation
|
|
|
|
if Settings::get().federation_enabled {
|
|
|
|
app.route(
|
2019-12-18 00:59:47 +00:00
|
|
|
".well-known/webfinger",
|
|
|
|
web::get().to(webfinger::get_webfinger_response),
|
2019-12-19 21:59:13 +00:00
|
|
|
)
|
2019-12-19 00:29:56 +00:00
|
|
|
} else {
|
|
|
|
app
|
|
|
|
}
|
2019-07-20 02:56:40 +00:00
|
|
|
})
|
2019-12-06 19:36:56 +00:00
|
|
|
.bind((settings.bind, settings.port))
|
2019-09-07 15:35:05 +00:00
|
|
|
.unwrap()
|
|
|
|
.start();
|
2019-07-17 11:11:01 +00:00
|
|
|
|
2019-12-06 19:36:56 +00:00
|
|
|
println!("Started http server at {}:{}", settings.bind, settings.port);
|
2019-07-20 02:56:40 +00:00
|
|
|
let _ = sys.run();
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
2019-04-06 05:29:20 +00:00
|
|
|
|
2019-07-17 11:11:01 +00:00
|
|
|
fn index() -> Result<NamedFile, actix_web::error::Error> {
|
2019-07-20 02:56:40 +00:00
|
|
|
Ok(NamedFile::open(front_end_dir() + "/index.html")?)
|
2019-04-06 05:29:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn front_end_dir() -> String {
|
2019-07-20 02:56:40 +00:00
|
|
|
env::var("LEMMY_FRONT_END_DIR").unwrap_or("../ui/dist".to_string())
|
2019-04-06 05:29:20 +00:00
|
|
|
}
|