mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Hiding some print messages, removing unused code.
This commit is contained in:
parent
70ff638103
commit
ee03b5a55f
2 changed files with 3 additions and 210 deletions
|
@ -82,11 +82,12 @@ impl Actor for WSSession {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handle messages from chat server, we simply send it to peer websocket
|
/// Handle messages from chat server, we simply send it to peer websocket
|
||||||
|
/// These are room messages, IE sent to others in the room
|
||||||
impl Handler<WSMessage> for WSSession {
|
impl Handler<WSMessage> for WSSession {
|
||||||
type Result = ();
|
type Result = ();
|
||||||
|
|
||||||
fn handle(&mut self, msg: WSMessage, ctx: &mut Self::Context) {
|
fn handle(&mut self, msg: WSMessage, ctx: &mut Self::Context) {
|
||||||
println!("id: {} msg: {}", self.id, msg.0);
|
// println!("id: {} msg: {}", self.id, msg.0);
|
||||||
ctx.text(msg.0);
|
ctx.text(msg.0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,7 +95,7 @@ impl Handler<WSMessage> for WSSession {
|
||||||
/// WebSocket message handler
|
/// WebSocket message handler
|
||||||
impl StreamHandler<ws::Message, ws::ProtocolError> for WSSession {
|
impl StreamHandler<ws::Message, ws::ProtocolError> for WSSession {
|
||||||
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
||||||
println!("WEBSOCKET MESSAGE: {:?} from id: {}", msg, self.id);
|
// println!("WEBSOCKET MESSAGE: {:?} from id: {}", msg, self.id);
|
||||||
match msg {
|
match msg {
|
||||||
ws::Message::Ping(msg) => {
|
ws::Message::Ping(msg) => {
|
||||||
self.hb = Instant::now();
|
self.hb = Instant::now();
|
||||||
|
|
|
@ -328,16 +328,6 @@ impl ChatServer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// /// Send message only to self
|
|
||||||
// fn send(&self, message: &str, id: &usize) {
|
|
||||||
// // println!("{:?}", self.sessions);
|
|
||||||
// if let Some(addr) = self.sessions.get(id) {
|
|
||||||
// println!("msg: {}", message);
|
|
||||||
// // println!("{:?}", addr.connected());
|
|
||||||
// let _ = addr.do_send(WSMessage(message.to_owned()));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Make actor from `ChatServer`
|
/// Make actor from `ChatServer`
|
||||||
|
@ -389,22 +379,9 @@ impl Handler<Disconnect> for ChatServer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// send message to other users
|
|
||||||
// for room in rooms {
|
|
||||||
// self.send_room_message(room, "Someone disconnected", 0);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handler for Message message.
|
|
||||||
// impl Handler<ClientMessage> for ChatServer {
|
|
||||||
// type Result = ();
|
|
||||||
|
|
||||||
// fn handle(&mut self, msg: ClientMessage, _: &mut Context<Self>) {
|
|
||||||
// self.send_room_message(&msg.room, msg.msg.as_str(), msg.id);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/// Handler for Message message.
|
/// Handler for Message message.
|
||||||
impl Handler<StandardMessage> for ChatServer {
|
impl Handler<StandardMessage> for ChatServer {
|
||||||
type Result = MessageResult<StandardMessage>;
|
type Result = MessageResult<StandardMessage>;
|
||||||
|
@ -800,8 +777,6 @@ impl Perform for GetPost {
|
||||||
|
|
||||||
let conn = establish_connection();
|
let conn = establish_connection();
|
||||||
|
|
||||||
println!("{:?}", self.auth);
|
|
||||||
|
|
||||||
let user_id: Option<i32> = match &self.auth {
|
let user_id: Option<i32> = match &self.auth {
|
||||||
Some(auth) => {
|
Some(auth) => {
|
||||||
match Claims::decode(&auth) {
|
match Claims::decode(&auth) {
|
||||||
|
@ -1141,7 +1116,6 @@ impl Perform for GetPosts {
|
||||||
let posts = match PostView::list(&conn, type_, &sort, self.community_id, None, user_id, self.limit) {
|
let posts = match PostView::list(&conn, type_, &sort, self.community_id, None, user_id, self.limit) {
|
||||||
Ok(posts) => posts,
|
Ok(posts) => posts,
|
||||||
Err(_e) => {
|
Err(_e) => {
|
||||||
eprintln!("{}", _e);
|
|
||||||
return self.error("Couldn't get posts");
|
return self.error("Couldn't get posts");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1486,185 +1460,3 @@ impl Perform for GetUserDetails {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// impl Handler<Login> for ChatServer {
|
|
||||||
|
|
||||||
// type Result = MessageResult<Login>;
|
|
||||||
// fn handle(&mut self, msg: Login, _: &mut Context<Self>) -> Self::Result {
|
|
||||||
|
|
||||||
// let conn = establish_connection();
|
|
||||||
|
|
||||||
// // Fetch that username / email
|
|
||||||
// let user: User_ = match User_::find_by_email_or_username(&conn, &msg.username_or_email) {
|
|
||||||
// Ok(user) => user,
|
|
||||||
// Err(_e) => return MessageResult(
|
|
||||||
// Err(
|
|
||||||
// ErrorMessage {
|
|
||||||
// op: UserOperation::Login.to_string(),
|
|
||||||
// error: "Couldn't find that username or email".to_string()
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// };
|
|
||||||
|
|
||||||
// // Verify the password
|
|
||||||
// let valid: bool = verify(&msg.password, &user.password_encrypted).unwrap_or(false);
|
|
||||||
// if !valid {
|
|
||||||
// return MessageResult(
|
|
||||||
// Err(
|
|
||||||
// ErrorMessage {
|
|
||||||
// op: UserOperation::Login.to_string(),
|
|
||||||
// error: "Password incorrect".to_string()
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Return the jwt
|
|
||||||
// MessageResult(
|
|
||||||
// Ok(
|
|
||||||
// LoginResponse {
|
|
||||||
// op: UserOperation::Login.to_string(),
|
|
||||||
// jwt: user.jwt()
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// impl Handler<Register> for ChatServer {
|
|
||||||
|
|
||||||
// type Result = MessageResult<Register>;
|
|
||||||
// fn handle(&mut self, msg: Register, _: &mut Context<Self>) -> Self::Result {
|
|
||||||
|
|
||||||
// let conn = establish_connection();
|
|
||||||
|
|
||||||
// // Make sure passwords match
|
|
||||||
// if msg.password != msg.password_verify {
|
|
||||||
// return MessageResult(
|
|
||||||
// Err(
|
|
||||||
// ErrorMessage {
|
|
||||||
// op: UserOperation::Register.to_string(),
|
|
||||||
// error: "Passwords do not match.".to_string()
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Register the new user
|
|
||||||
// let user_form = UserForm {
|
|
||||||
// name: msg.username,
|
|
||||||
// email: msg.email,
|
|
||||||
// password_encrypted: msg.password,
|
|
||||||
// preferred_username: None,
|
|
||||||
// updated: None
|
|
||||||
// };
|
|
||||||
|
|
||||||
// // Create the user
|
|
||||||
// let inserted_user = match User_::create(&conn, &user_form) {
|
|
||||||
// Ok(user) => user,
|
|
||||||
// Err(_e) => return MessageResult(
|
|
||||||
// Err(
|
|
||||||
// ErrorMessage {
|
|
||||||
// op: UserOperation::Register.to_string(),
|
|
||||||
// error: "User already exists.".to_string() // overwrite the diesel error
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// };
|
|
||||||
|
|
||||||
// // Return the jwt
|
|
||||||
// MessageResult(
|
|
||||||
// Ok(
|
|
||||||
// LoginResponse {
|
|
||||||
// op: UserOperation::Register.to_string(),
|
|
||||||
// jwt: inserted_user.jwt()
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
// impl Handler<CreateCommunity> for ChatServer {
|
|
||||||
|
|
||||||
// type Result = MessageResult<CreateCommunity>;
|
|
||||||
|
|
||||||
// fn handle(&mut self, msg: CreateCommunity, _: &mut Context<Self>) -> Self::Result {
|
|
||||||
// let conn = establish_connection();
|
|
||||||
|
|
||||||
// let user_id = Claims::decode(&msg.auth).id;
|
|
||||||
|
|
||||||
// let community_form = CommunityForm {
|
|
||||||
// name: msg.name,
|
|
||||||
// updated: None
|
|
||||||
// };
|
|
||||||
|
|
||||||
// let community = match Community::create(&conn, &community_form) {
|
|
||||||
// Ok(community) => community,
|
|
||||||
// Err(_e) => return MessageResult(
|
|
||||||
// Err(
|
|
||||||
// ErrorMessage {
|
|
||||||
// op: UserOperation::CreateCommunity.to_string(),
|
|
||||||
// error: "Community already exists.".to_string() // overwrite the diesel error
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// };
|
|
||||||
|
|
||||||
// MessageResult(
|
|
||||||
// Ok(
|
|
||||||
// CommunityResponse {
|
|
||||||
// op: UserOperation::CreateCommunity.to_string(),
|
|
||||||
// community: community
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// /// Handler for `ListRooms` message.
|
|
||||||
// impl Handler<ListRooms> for ChatServer {
|
|
||||||
// type Result = MessageResult<ListRooms>;
|
|
||||||
|
|
||||||
// fn handle(&mut self, _: ListRooms, _: &mut Context<Self>) -> Self::Result {
|
|
||||||
// let mut rooms = Vec::new();
|
|
||||||
|
|
||||||
// for key in self.rooms.keys() {
|
|
||||||
// rooms.push(key.to_owned())
|
|
||||||
// }
|
|
||||||
|
|
||||||
// MessageResult(rooms)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// /// Join room, send disconnect message to old room
|
|
||||||
// /// send join message to new room
|
|
||||||
// impl Handler<Join> for ChatServer {
|
|
||||||
// type Result = ();
|
|
||||||
|
|
||||||
// fn handle(&mut self, msg: Join, _: &mut Context<Self>) {
|
|
||||||
// let Join { id, name } = msg;
|
|
||||||
// let mut rooms = Vec::new();
|
|
||||||
|
|
||||||
// // remove session from all rooms
|
|
||||||
// for (n, sessions) in &mut self.rooms {
|
|
||||||
// if sessions.remove(&id) {
|
|
||||||
// rooms.push(n.to_owned());
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // send message to other users
|
|
||||||
// for room in rooms {
|
|
||||||
// self.send_room_message(&room, "Someone disconnected", 0);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// if self.rooms.get_mut(&name).is_none() {
|
|
||||||
// self.rooms.insert(name.clone(), HashSet::new());
|
|
||||||
// }
|
|
||||||
// self.send_room_message(&name, "Someone connected", id);
|
|
||||||
// self.rooms.get_mut(&name).unwrap().insert(id);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
Loading…
Reference in a new issue