mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Fix issue with adding multiple instances of chatserver.
This commit is contained in:
parent
1e884c6969
commit
318ce4a52a
1
server/.rustfmt.toml
vendored
1
server/.rustfmt.toml
vendored
@ -1 +1,2 @@
|
|||||||
tab_spaces = 2
|
tab_spaces = 2
|
||||||
|
edition="2018"
|
||||||
|
@ -2,11 +2,13 @@ extern crate lemmy_server;
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate diesel_migrations;
|
extern crate diesel_migrations;
|
||||||
|
|
||||||
|
use actix::prelude::*;
|
||||||
use actix_web::*;
|
use actix_web::*;
|
||||||
use diesel::r2d2::{ConnectionManager, Pool};
|
use diesel::r2d2::{ConnectionManager, Pool};
|
||||||
use diesel::PgConnection;
|
use diesel::PgConnection;
|
||||||
use lemmy_server::routes::{federation, feeds, index, nodeinfo, webfinger, websocket};
|
use lemmy_server::routes::{federation, feeds, index, nodeinfo, webfinger, websocket};
|
||||||
use lemmy_server::settings::Settings;
|
use lemmy_server::settings::Settings;
|
||||||
|
use lemmy_server::websocket::server::*;
|
||||||
use std::io;
|
use std::io;
|
||||||
|
|
||||||
embed_migrations!();
|
embed_migrations!();
|
||||||
@ -27,6 +29,9 @@ async fn main() -> io::Result<()> {
|
|||||||
let conn = pool.get().unwrap();
|
let conn = pool.get().unwrap();
|
||||||
embedded_migrations::run(&conn).unwrap();
|
embedded_migrations::run(&conn).unwrap();
|
||||||
|
|
||||||
|
// Set up websocket server
|
||||||
|
let server = ChatServer::startup(pool.clone()).start();
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
"Starting http server at {}:{}",
|
"Starting http server at {}:{}",
|
||||||
settings.bind, settings.port
|
settings.bind, settings.port
|
||||||
@ -37,6 +42,7 @@ async fn main() -> io::Result<()> {
|
|||||||
App::new()
|
App::new()
|
||||||
.wrap(middleware::Logger::default())
|
.wrap(middleware::Logger::default())
|
||||||
.data(pool.clone())
|
.data(pool.clone())
|
||||||
|
.data(server.clone())
|
||||||
// The routes
|
// The routes
|
||||||
.configure(federation::config)
|
.configure(federation::config)
|
||||||
.configure(feeds::config)
|
.configure(feeds::config)
|
||||||
|
@ -1,27 +1,12 @@
|
|||||||
use crate::websocket::server::*;
|
use crate::websocket::server::*;
|
||||||
use crate::Settings;
|
|
||||||
use actix::prelude::*;
|
use actix::prelude::*;
|
||||||
use actix_web::web;
|
use actix_web::web;
|
||||||
use actix_web::*;
|
use actix_web::*;
|
||||||
use actix_web_actors::ws;
|
use actix_web_actors::ws;
|
||||||
use diesel::r2d2::{ConnectionManager, Pool};
|
|
||||||
use diesel::PgConnection;
|
|
||||||
use std::time::{Duration, Instant};
|
use std::time::{Duration, Instant};
|
||||||
|
|
||||||
pub fn config(cfg: &mut web::ServiceConfig) {
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
||||||
// TODO couldn't figure out how to get this method to recieve the other pool
|
cfg.service(web::resource("/api/v1/ws").to(chat_route));
|
||||||
let settings = Settings::get();
|
|
||||||
let manager = ConnectionManager::<PgConnection>::new(&settings.get_database_url());
|
|
||||||
let pool = Pool::builder()
|
|
||||||
.max_size(settings.database.pool_size)
|
|
||||||
.build(manager)
|
|
||||||
.unwrap_or_else(|_| panic!("Error connecting to {}", settings.get_database_url()));
|
|
||||||
|
|
||||||
// Start chat server actor in separate thread
|
|
||||||
let server = ChatServer::startup(pool).start();
|
|
||||||
cfg
|
|
||||||
.data(server)
|
|
||||||
.service(web::resource("/api/v1/ws").to(chat_route));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// How often heartbeat pings are sent
|
/// How often heartbeat pings are sent
|
||||||
@ -38,8 +23,7 @@ async fn chat_route(
|
|||||||
// TODO not sure if the blocking should be here or not
|
// TODO not sure if the blocking should be here or not
|
||||||
ws::start(
|
ws::start(
|
||||||
WSSession {
|
WSSession {
|
||||||
// db: db.get_ref().clone(),
|
cs_addr: chat_server.get_ref().to_owned(),
|
||||||
cs_addr: chat_server.get_ref().clone(),
|
|
||||||
id: 0,
|
id: 0,
|
||||||
hb: Instant::now(),
|
hb: Instant::now(),
|
||||||
ip: req
|
ip: req
|
||||||
|
@ -335,30 +335,30 @@ joinable!(user_mention -> comment (comment_id));
|
|||||||
joinable!(user_mention -> user_ (recipient_id));
|
joinable!(user_mention -> user_ (recipient_id));
|
||||||
|
|
||||||
allow_tables_to_appear_in_same_query!(
|
allow_tables_to_appear_in_same_query!(
|
||||||
category,
|
category,
|
||||||
comment,
|
comment,
|
||||||
comment_like,
|
comment_like,
|
||||||
comment_saved,
|
comment_saved,
|
||||||
community,
|
community,
|
||||||
community_follower,
|
community_follower,
|
||||||
community_moderator,
|
community_moderator,
|
||||||
community_user_ban,
|
community_user_ban,
|
||||||
mod_add,
|
mod_add,
|
||||||
mod_add_community,
|
mod_add_community,
|
||||||
mod_ban,
|
mod_ban,
|
||||||
mod_ban_from_community,
|
mod_ban_from_community,
|
||||||
mod_lock_post,
|
mod_lock_post,
|
||||||
mod_remove_comment,
|
mod_remove_comment,
|
||||||
mod_remove_community,
|
mod_remove_community,
|
||||||
mod_remove_post,
|
mod_remove_post,
|
||||||
mod_sticky_post,
|
mod_sticky_post,
|
||||||
password_reset_request,
|
password_reset_request,
|
||||||
post,
|
post,
|
||||||
post_like,
|
post_like,
|
||||||
post_read,
|
post_read,
|
||||||
post_saved,
|
post_saved,
|
||||||
site,
|
site,
|
||||||
user_,
|
user_,
|
||||||
user_ban,
|
user_ban,
|
||||||
user_mention,
|
user_mention,
|
||||||
);
|
);
|
||||||
|
@ -87,21 +87,6 @@ pub struct ChatServer {
|
|||||||
db: Pool<ConnectionManager<PgConnection>>,
|
db: Pool<ConnectionManager<PgConnection>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// impl Default for ChatServer {
|
|
||||||
// fn default(nah: String) -> ChatServer {
|
|
||||||
// // default room
|
|
||||||
// let rooms = HashMap::new();
|
|
||||||
|
|
||||||
// ChatServer {
|
|
||||||
// sessions: HashMap::new(),
|
|
||||||
// rate_limits: HashMap::new(),
|
|
||||||
// rooms,
|
|
||||||
// rng: rand::thread_rng(),
|
|
||||||
// nah: nah,
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
impl ChatServer {
|
impl ChatServer {
|
||||||
pub fn startup(db: Pool<ConnectionManager<PgConnection>>) -> ChatServer {
|
pub fn startup(db: Pool<ConnectionManager<PgConnection>>) -> ChatServer {
|
||||||
// default room
|
// default room
|
||||||
|
Loading…
Reference in New Issue
Block a user