2019-03-21 01:22:31 +00:00
|
|
|
//! `ChatServer` is an actor. It maintains list of connection client session.
|
|
|
|
//! And manages available rooms. Peers send messages to other peers in same
|
|
|
|
//! room through `ChatServer`.
|
|
|
|
|
|
|
|
use actix::prelude::*;
|
2020-01-12 15:31:51 +00:00
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use diesel::PgConnection;
|
2019-09-07 15:35:05 +00:00
|
|
|
use failure::Error;
|
2019-03-21 01:22:31 +00:00
|
|
|
use rand::{rngs::ThreadRng, Rng};
|
|
|
|
use serde::{Deserialize, Serialize};
|
2019-09-07 15:35:05 +00:00
|
|
|
use serde_json::Value;
|
|
|
|
use std::collections::{HashMap, HashSet};
|
2019-03-25 03:51:27 +00:00
|
|
|
use std::str::FromStr;
|
2019-09-07 15:35:05 +00:00
|
|
|
use std::time::SystemTime;
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
use crate::api::comment::*;
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::api::community::*;
|
|
|
|
use crate::api::post::*;
|
|
|
|
use crate::api::site::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
use crate::api::user::*;
|
|
|
|
use crate::api::*;
|
2020-01-16 14:39:08 +00:00
|
|
|
use crate::websocket::UserOperation;
|
2019-10-13 19:06:18 +00:00
|
|
|
use crate::Settings;
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
/// Chat server sends this messages to session
|
|
|
|
#[derive(Message)]
|
2020-01-10 22:41:08 +00:00
|
|
|
#[rtype(result = "()")]
|
2019-03-21 01:22:31 +00:00
|
|
|
pub struct WSMessage(pub String);
|
|
|
|
|
|
|
|
/// Message for chat server communications
|
|
|
|
|
|
|
|
/// New chat session is created
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(usize)]
|
|
|
|
pub struct Connect {
|
|
|
|
pub addr: Recipient<WSMessage>,
|
2019-05-01 22:44:39 +00:00
|
|
|
pub ip: String,
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Session is disconnected
|
|
|
|
#[derive(Message)]
|
2020-01-10 22:41:08 +00:00
|
|
|
#[rtype(result = "()")]
|
2019-03-21 01:22:31 +00:00
|
|
|
pub struct Disconnect {
|
|
|
|
pub id: usize,
|
2019-05-01 22:44:39 +00:00
|
|
|
pub ip: String,
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
// TODO this is unused rn
|
2019-03-21 01:22:31 +00:00
|
|
|
/// Send message to specific room
|
|
|
|
#[derive(Message)]
|
2020-01-10 22:41:08 +00:00
|
|
|
#[rtype(result = "()")]
|
2019-03-21 01:22:31 +00:00
|
|
|
pub struct ClientMessage {
|
|
|
|
/// Id of the client session
|
|
|
|
pub id: usize,
|
|
|
|
/// Peer message
|
|
|
|
pub msg: String,
|
|
|
|
/// Room name
|
|
|
|
pub room: String,
|
|
|
|
}
|
|
|
|
|
2020-01-10 22:41:08 +00:00
|
|
|
#[derive(Serialize, Deserialize, Message)]
|
|
|
|
#[rtype(String)]
|
2019-03-25 03:51:27 +00:00
|
|
|
pub struct StandardMessage {
|
|
|
|
/// Id of the client session
|
|
|
|
pub id: usize,
|
|
|
|
/// Peer message
|
|
|
|
pub msg: String,
|
|
|
|
}
|
|
|
|
|
2019-05-01 22:44:39 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct RateLimitBucket {
|
|
|
|
last_checked: SystemTime,
|
2019-09-07 15:35:05 +00:00
|
|
|
allowance: f64,
|
2019-05-01 22:44:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct SessionInfo {
|
|
|
|
pub addr: Recipient<WSMessage>,
|
|
|
|
pub ip: String,
|
|
|
|
}
|
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
/// `ChatServer` manages chat rooms and responsible for coordinating chat
|
|
|
|
/// session. implementation is super primitive
|
|
|
|
pub struct ChatServer {
|
2019-05-01 22:44:39 +00:00
|
|
|
sessions: HashMap<usize, SessionInfo>, // A map from generated random ID to session addr
|
|
|
|
rate_limits: HashMap<String, RateLimitBucket>,
|
2019-03-27 16:59:21 +00:00
|
|
|
rooms: HashMap<i32, HashSet<usize>>, // A map from room / post name to set of connectionIDs
|
2019-03-21 01:22:31 +00:00
|
|
|
rng: ThreadRng,
|
2020-01-12 15:31:51 +00:00
|
|
|
db: Pool<ConnectionManager<PgConnection>>,
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
impl ChatServer {
|
|
|
|
pub fn startup(db: Pool<ConnectionManager<PgConnection>>) -> ChatServer {
|
2019-03-21 01:22:31 +00:00
|
|
|
// default room
|
2019-03-27 16:59:21 +00:00
|
|
|
let rooms = HashMap::new();
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
ChatServer {
|
|
|
|
sessions: HashMap::new(),
|
2019-05-01 22:44:39 +00:00
|
|
|
rate_limits: HashMap::new(),
|
2020-01-02 11:30:00 +00:00
|
|
|
rooms,
|
2019-03-21 01:22:31 +00:00
|
|
|
rng: rand::thread_rng(),
|
2020-01-12 15:31:51 +00:00
|
|
|
db,
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send message to all users in the room
|
2020-01-02 11:30:00 +00:00
|
|
|
fn send_room_message(&self, room: i32, message: &str, skip_id: usize) {
|
|
|
|
if let Some(sessions) = self.rooms.get(&room) {
|
2019-03-21 01:22:31 +00:00
|
|
|
for id in sessions {
|
|
|
|
if *id != skip_id {
|
2019-05-01 22:44:39 +00:00
|
|
|
if let Some(info) = self.sessions.get(id) {
|
|
|
|
let _ = info.addr.do_send(WSMessage(message.to_owned()));
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
2019-05-05 16:20:30 +00:00
|
|
|
fn join_room(&mut self, room_id: i32, id: usize) {
|
2019-05-05 05:20:38 +00:00
|
|
|
// remove session from all rooms
|
2020-01-02 11:30:00 +00:00
|
|
|
for sessions in self.rooms.values_mut() {
|
2019-05-05 05:20:38 +00:00
|
|
|
sessions.remove(&id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the room doesn't exist yet
|
|
|
|
if self.rooms.get_mut(&room_id).is_none() {
|
|
|
|
self.rooms.insert(room_id, HashSet::new());
|
|
|
|
}
|
|
|
|
|
2020-01-02 11:30:00 +00:00
|
|
|
self.rooms.get_mut(&room_id).unwrap().insert(id);
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
fn send_community_message(
|
|
|
|
&self,
|
2020-01-02 11:30:00 +00:00
|
|
|
community_id: i32,
|
2019-09-07 15:35:05 +00:00
|
|
|
message: &str,
|
|
|
|
skip_id: usize,
|
|
|
|
) -> Result<(), Error> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::db::post_view::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
use crate::db::*;
|
2020-01-12 15:31:51 +00:00
|
|
|
|
|
|
|
let conn = self.db.get()?;
|
2019-12-07 12:03:03 +00:00
|
|
|
|
2019-12-07 22:54:42 +00:00
|
|
|
let posts = PostQueryBuilder::create(&conn)
|
|
|
|
.listing_type(ListingType::Community)
|
|
|
|
.sort(&SortType::New)
|
2020-01-02 11:30:00 +00:00
|
|
|
.for_community_id(community_id)
|
2019-12-07 22:54:42 +00:00
|
|
|
.limit(9999)
|
|
|
|
.list()?;
|
2019-12-07 12:03:03 +00:00
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
for post in posts {
|
2020-01-02 11:30:00 +00:00
|
|
|
self.send_room_message(post.id, message, skip_id);
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
|
|
|
|
Ok(())
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
2019-05-01 22:44:39 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
fn check_rate_limit_register(&mut self, id: usize) -> Result<(), Error> {
|
2019-10-13 19:06:18 +00:00
|
|
|
self.check_rate_limit_full(
|
|
|
|
id,
|
2019-12-15 16:40:55 +00:00
|
|
|
Settings::get().rate_limit.register,
|
|
|
|
Settings::get().rate_limit.register_per_second,
|
2019-10-13 19:06:18 +00:00
|
|
|
)
|
2019-05-01 22:44:39 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 20:18:07 +00:00
|
|
|
fn check_rate_limit_post(&mut self, id: usize) -> Result<(), Error> {
|
2019-10-13 19:06:18 +00:00
|
|
|
self.check_rate_limit_full(
|
|
|
|
id,
|
2019-12-15 16:40:55 +00:00
|
|
|
Settings::get().rate_limit.post,
|
|
|
|
Settings::get().rate_limit.post_per_second,
|
2019-10-13 19:06:18 +00:00
|
|
|
)
|
2019-09-03 20:18:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_rate_limit_message(&mut self, id: usize) -> Result<(), Error> {
|
2019-10-13 19:06:18 +00:00
|
|
|
self.check_rate_limit_full(
|
|
|
|
id,
|
2019-12-15 16:40:55 +00:00
|
|
|
Settings::get().rate_limit.message,
|
|
|
|
Settings::get().rate_limit.message_per_second,
|
2019-10-13 19:06:18 +00:00
|
|
|
)
|
2019-05-01 22:44:39 +00:00
|
|
|
}
|
|
|
|
|
2020-01-02 11:30:00 +00:00
|
|
|
#[allow(clippy::float_cmp)]
|
2019-05-05 05:20:38 +00:00
|
|
|
fn check_rate_limit_full(&mut self, id: usize, rate: i32, per: i32) -> Result<(), Error> {
|
|
|
|
if let Some(info) = self.sessions.get(&id) {
|
2019-05-01 22:44:39 +00:00
|
|
|
if let Some(rate_limit) = self.rate_limits.get_mut(&info.ip) {
|
2019-05-02 05:26:31 +00:00
|
|
|
// The initial value
|
2019-05-01 22:44:39 +00:00
|
|
|
if rate_limit.allowance == -2f64 {
|
|
|
|
rate_limit.allowance = rate as f64;
|
|
|
|
};
|
|
|
|
|
|
|
|
let current = SystemTime::now();
|
|
|
|
let time_passed = current.duration_since(rate_limit.last_checked)?.as_secs() as f64;
|
|
|
|
rate_limit.last_checked = current;
|
|
|
|
rate_limit.allowance += time_passed * (rate as f64 / per as f64);
|
|
|
|
if rate_limit.allowance > rate as f64 {
|
|
|
|
rate_limit.allowance = rate as f64;
|
|
|
|
}
|
|
|
|
|
|
|
|
if rate_limit.allowance < 1.0 {
|
2019-09-07 15:35:05 +00:00
|
|
|
println!(
|
|
|
|
"Rate limited IP: {}, time_passed: {}, allowance: {}",
|
|
|
|
&info.ip, time_passed, rate_limit.allowance
|
|
|
|
);
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(
|
|
|
|
APIError {
|
|
|
|
message: format!("Too many requests. {} per {} seconds", rate, per),
|
|
|
|
}
|
|
|
|
.into(),
|
|
|
|
)
|
2019-05-01 22:44:39 +00:00
|
|
|
} else {
|
|
|
|
rate_limit.allowance -= 1.0;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Make actor from `ChatServer`
|
|
|
|
impl Actor for ChatServer {
|
|
|
|
/// We are going to use simple Context, we just need ability to communicate
|
|
|
|
/// with other actors.
|
|
|
|
type Context = Context<Self>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Handler for Connect message.
|
|
|
|
///
|
|
|
|
/// Register new session and assign unique id to this session
|
|
|
|
impl Handler<Connect> for ChatServer {
|
|
|
|
type Result = usize;
|
|
|
|
|
2019-05-01 22:44:39 +00:00
|
|
|
fn handle(&mut self, msg: Connect, _ctx: &mut Context<Self>) -> Self::Result {
|
2019-03-21 01:22:31 +00:00
|
|
|
// notify all users in same room
|
2019-03-27 16:59:21 +00:00
|
|
|
// self.send_room_message(&"Main".to_owned(), "Someone joined", 0);
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
// register session with random id
|
|
|
|
let id = self.rng.gen::<usize>();
|
2019-05-02 05:26:31 +00:00
|
|
|
println!("{} joined", &msg.ip);
|
2019-05-01 22:44:39 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
self.sessions.insert(
|
|
|
|
id,
|
|
|
|
SessionInfo {
|
|
|
|
addr: msg.addr,
|
|
|
|
ip: msg.ip.to_owned(),
|
|
|
|
},
|
|
|
|
);
|
2019-05-01 22:44:39 +00:00
|
|
|
|
|
|
|
if self.rate_limits.get(&msg.ip).is_none() {
|
2019-09-07 15:35:05 +00:00
|
|
|
self.rate_limits.insert(
|
|
|
|
msg.ip,
|
|
|
|
RateLimitBucket {
|
|
|
|
last_checked: SystemTime::now(),
|
|
|
|
allowance: -2f64,
|
|
|
|
},
|
|
|
|
);
|
2019-05-01 22:44:39 +00:00
|
|
|
}
|
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Handler for Disconnect message.
|
|
|
|
impl Handler<Disconnect> for ChatServer {
|
|
|
|
type Result = ();
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: Disconnect, _: &mut Context<Self>) {
|
2019-04-03 20:59:37 +00:00
|
|
|
// let mut rooms: Vec<i32> = Vec::new();
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
// remove address
|
|
|
|
if self.sessions.remove(&msg.id).is_some() {
|
|
|
|
// remove session from all rooms
|
2020-01-02 11:30:00 +00:00
|
|
|
for sessions in self.rooms.values_mut() {
|
2019-03-21 01:22:31 +00:00
|
|
|
if sessions.remove(&msg.id) {
|
2019-03-27 16:59:21 +00:00
|
|
|
// rooms.push(*id);
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 03:51:27 +00:00
|
|
|
/// Handler for Message message.
|
|
|
|
impl Handler<StandardMessage> for ChatServer {
|
|
|
|
type Result = MessageResult<StandardMessage>;
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: StandardMessage, _: &mut Context<Self>) -> Self::Result {
|
2019-04-21 07:26:26 +00:00
|
|
|
let msg_out = match parse_json_message(self, msg) {
|
|
|
|
Ok(m) => m,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(e) => e.to_string(),
|
2019-04-21 07:26:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
MessageResult(msg_out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 14:39:08 +00:00
|
|
|
fn to_json_string<T>(op: UserOperation, data: T) -> Result<String, Error>
|
|
|
|
where
|
|
|
|
T: Serialize,
|
|
|
|
{
|
|
|
|
dbg!(&op);
|
|
|
|
let mut json = serde_json::to_value(&data)?;
|
|
|
|
match json.as_object_mut() {
|
|
|
|
Some(j) => j.insert("op".to_string(), serde_json::to_value(op.to_string())?),
|
|
|
|
None => return Err(format_err!("")),
|
|
|
|
};
|
|
|
|
// TODO: it seems like this is never called?
|
|
|
|
let x = serde_json::to_string(&json)?;
|
|
|
|
Ok(x)
|
|
|
|
}
|
|
|
|
|
2019-04-21 07:26:26 +00:00
|
|
|
fn parse_json_message(chat: &mut ChatServer, msg: StandardMessage) -> Result<String, Error> {
|
|
|
|
let json: Value = serde_json::from_str(&msg.msg)?;
|
|
|
|
let data = &json["data"].to_string();
|
2019-08-30 20:33:20 +00:00
|
|
|
let op = &json["op"].as_str().ok_or(APIError {
|
2020-01-02 11:30:00 +00:00
|
|
|
message: "Unknown op type".to_string(),
|
2019-08-30 20:33:20 +00:00
|
|
|
})?;
|
2019-04-21 07:26:26 +00:00
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
let conn = chat.db.get()?;
|
|
|
|
|
2019-04-21 07:26:26 +00:00
|
|
|
let user_operation: UserOperation = UserOperation::from_str(&op)?;
|
|
|
|
|
|
|
|
match user_operation {
|
|
|
|
UserOperation::Login => {
|
|
|
|
let login: Login = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(login).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::Register => {
|
|
|
|
let register: Register = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(register).perform(&conn);
|
2019-09-11 01:26:33 +00:00
|
|
|
if res.is_ok() {
|
|
|
|
chat.check_rate_limit_register(msg.id)?;
|
|
|
|
}
|
|
|
|
Ok(serde_json::to_string(&res?)?)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::GetUserDetails => {
|
|
|
|
let get_user_details: GetUserDetails = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_user_details).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-14 02:52:43 +00:00
|
|
|
UserOperation::SaveUserSettings => {
|
|
|
|
let save_user_settings: SaveUserSettings = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(save_user_settings).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::AddAdmin => {
|
|
|
|
let add_admin: AddAdmin = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(add_admin).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::BanUser => {
|
|
|
|
let ban_user: BanUser = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(ban_user).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::GetReplies => {
|
|
|
|
let get_replies: GetReplies = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_replies).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-10-20 00:46:29 +00:00
|
|
|
UserOperation::GetUserMentions => {
|
|
|
|
let get_user_mentions: GetUserMentions = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_user_mentions).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-10-20 00:46:29 +00:00
|
|
|
}
|
|
|
|
UserOperation::EditUserMention => {
|
|
|
|
let edit_user_mention: EditUserMention = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(edit_user_mention).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-10-20 00:46:29 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::MarkAllAsRead => {
|
|
|
|
let mark_all_as_read: MarkAllAsRead = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(mark_all_as_read).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::GetCommunity => {
|
|
|
|
let get_community: GetCommunity = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_community).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::ListCommunities => {
|
|
|
|
let list_communities: ListCommunities = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(list_communities).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::CreateCommunity => {
|
|
|
|
chat.check_rate_limit_register(msg.id)?;
|
|
|
|
let create_community: CreateCommunity = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_community).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::EditCommunity => {
|
|
|
|
let edit_community: EditCommunity = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(edit_community).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let mut community_sent: CommunityResponse = res.clone();
|
|
|
|
community_sent.community.user_id = None;
|
|
|
|
community_sent.community.subscribed = None;
|
|
|
|
let community_sent_str = serde_json::to_string(&community_sent)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_community_message(community_sent.community.id, &community_sent_str, msg.id)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::FollowCommunity => {
|
|
|
|
let follow_community: FollowCommunity = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(follow_community).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::GetFollowedCommunities => {
|
|
|
|
let followed_communities: GetFollowedCommunities = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(followed_communities).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::BanFromCommunity => {
|
|
|
|
let ban_from_community: BanFromCommunity = serde_json::from_str(data)?;
|
2019-05-05 16:20:30 +00:00
|
|
|
let community_id = ban_from_community.community_id;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(ban_from_community).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let res_str = serde_json::to_string(&res)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_community_message(community_id, &res_str, msg.id)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(res_str)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::AddModToCommunity => {
|
|
|
|
let mod_add_to_community: AddModToCommunity = serde_json::from_str(data)?;
|
2019-05-05 16:20:30 +00:00
|
|
|
let community_id = mod_add_to_community.community_id;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(mod_add_to_community).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let res_str = serde_json::to_string(&res)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_community_message(community_id, &res_str, msg.id)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(res_str)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::ListCategories => {
|
|
|
|
let list_categories: ListCategories = ListCategories;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(list_categories).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::CreatePost => {
|
2019-09-03 20:18:07 +00:00
|
|
|
chat.check_rate_limit_post(msg.id)?;
|
2019-04-21 07:26:26 +00:00
|
|
|
let create_post: CreatePost = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_post).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::GetPost => {
|
|
|
|
let get_post: GetPost = serde_json::from_str(data)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
chat.join_room(get_post.id, msg.id);
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_post).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::GetPosts => {
|
|
|
|
let get_posts: GetPosts = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_posts).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::CreatePostLike => {
|
2019-09-03 20:18:07 +00:00
|
|
|
chat.check_rate_limit_message(msg.id)?;
|
2019-04-21 07:26:26 +00:00
|
|
|
let create_post_like: CreatePostLike = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_post_like).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::EditPost => {
|
|
|
|
let edit_post: EditPost = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(edit_post).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let mut post_sent = res.clone();
|
|
|
|
post_sent.post.my_vote = None;
|
|
|
|
let post_sent_str = serde_json::to_string(&post_sent)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_room_message(post_sent.post.id, &post_sent_str, msg.id);
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::SavePost => {
|
|
|
|
let save_post: SavePost = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(save_post).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::CreateComment => {
|
2019-09-03 20:18:07 +00:00
|
|
|
chat.check_rate_limit_message(msg.id)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let create_comment: CreateComment = serde_json::from_str(data)?;
|
2019-05-05 16:20:30 +00:00
|
|
|
let post_id = create_comment.post_id;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_comment).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let mut comment_sent = res.clone();
|
|
|
|
comment_sent.comment.my_vote = None;
|
|
|
|
comment_sent.comment.user_id = None;
|
|
|
|
let comment_sent_str = serde_json::to_string(&comment_sent)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_room_message(post_id, &comment_sent_str, msg.id);
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::EditComment => {
|
|
|
|
let edit_comment: EditComment = serde_json::from_str(data)?;
|
2019-05-05 16:20:30 +00:00
|
|
|
let post_id = edit_comment.post_id;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(edit_comment).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let mut comment_sent = res.clone();
|
|
|
|
comment_sent.comment.my_vote = None;
|
|
|
|
comment_sent.comment.user_id = None;
|
|
|
|
let comment_sent_str = serde_json::to_string(&comment_sent)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_room_message(post_id, &comment_sent_str, msg.id);
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::SaveComment => {
|
|
|
|
let save_comment: SaveComment = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(save_comment).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
UserOperation::CreateCommentLike => {
|
2019-09-03 20:18:07 +00:00
|
|
|
chat.check_rate_limit_message(msg.id)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let create_comment_like: CreateCommentLike = serde_json::from_str(data)?;
|
2019-05-05 16:20:30 +00:00
|
|
|
let post_id = create_comment_like.post_id;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_comment_like).perform(&conn)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
let mut comment_sent = res.clone();
|
|
|
|
comment_sent.comment.my_vote = None;
|
|
|
|
comment_sent.comment.user_id = None;
|
|
|
|
let comment_sent_str = serde_json::to_string(&comment_sent)?;
|
2020-01-02 11:30:00 +00:00
|
|
|
chat.send_room_message(post_id, &comment_sent_str, msg.id);
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::GetModlog => {
|
|
|
|
let get_modlog: GetModlog = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(get_modlog).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::CreateSite => {
|
|
|
|
let create_site: CreateSite = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(create_site).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::EditSite => {
|
|
|
|
let edit_site: EditSite = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(edit_site).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-21 07:26:26 +00:00
|
|
|
UserOperation::GetSite => {
|
2019-09-13 16:09:01 +00:00
|
|
|
let online: usize = chat.sessions.len();
|
2019-04-21 07:26:26 +00:00
|
|
|
let get_site: GetSite = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let mut res = Oper::new(get_site).perform(&conn)?;
|
2019-09-13 16:09:01 +00:00
|
|
|
res.online = online;
|
2020-01-16 14:39:08 +00:00
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-04-23 22:05:50 +00:00
|
|
|
UserOperation::Search => {
|
|
|
|
let search: Search = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(search).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-24 02:40:41 +00:00
|
|
|
UserOperation::TransferCommunity => {
|
|
|
|
let transfer_community: TransferCommunity = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(transfer_community).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-24 02:40:41 +00:00
|
|
|
UserOperation::TransferSite => {
|
|
|
|
let transfer_site: TransferSite = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(transfer_site).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-10-15 22:09:01 +00:00
|
|
|
UserOperation::DeleteAccount => {
|
|
|
|
let delete_account: DeleteAccount = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(delete_account).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-10-15 22:09:01 +00:00
|
|
|
}
|
2019-10-30 03:35:39 +00:00
|
|
|
UserOperation::PasswordReset => {
|
|
|
|
let password_reset: PasswordReset = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(password_reset).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
|
|
|
UserOperation::PasswordChange => {
|
|
|
|
let password_change: PasswordChange = serde_json::from_str(data)?;
|
2020-01-16 14:39:08 +00:00
|
|
|
let res = Oper::new(password_change).perform(&conn)?;
|
|
|
|
to_json_string(user_operation, &res)
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
2019-04-29 16:51:13 +00:00
|
|
|
}
|
|
|
|
}
|