author | alfadur <mail@none> |
Thu, 26 Dec 2019 21:55:51 +0300 | |
changeset 15531 | ede5f4ec48f3 |
parent 15526 | 24f692e791d3 |
child 15533 | 0606f89698e7 |
permissions | -rw-r--r-- |
15439 | 1 |
use super::{common::rnd_reply, strings::*}; |
13666 | 2 |
use crate::{ |
15075 | 3 |
core::{ |
4 |
client::HwClient, |
|
15439 | 5 |
server::{AccessError, CreateRoomError, HwServer, JoinRoomError}, |
15075 | 6 |
types::{ClientId, ServerVar}, |
14782 | 7 |
}, |
15075 | 8 |
protocol::messages::{ |
9 |
add_flags, remove_flags, server_chat, HwProtocolMessage, HwServerMessage::*, |
|
10 |
ProtocolFlags as Flags, |
|
14783 | 11 |
}, |
14457 | 12 |
utils::is_name_illegal, |
13416 | 13 |
}; |
13805 | 14 |
use log::*; |
14789 | 15 |
use std::{collections::HashSet, convert::identity}; |
12147 | 16 |
|
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
17 |
pub fn handle( |
15075 | 18 |
server: &mut HwServer, |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
19 |
client_id: ClientId, |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
20 |
response: &mut super::Response, |
15075 | 21 |
message: HwProtocolMessage, |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
22 |
) { |
15075 | 23 |
use crate::protocol::messages::HwProtocolMessage::*; |
15439 | 24 |
|
12147 | 25 |
match message { |
15439 | 26 |
CreateRoom(name, password) => match server.create_room(client_id, name, password) { |
27 |
Err(CreateRoomError::InvalidName) => response.warn(ILLEGAL_ROOM_NAME), |
|
28 |
Err(CreateRoomError::AlreadyExists) => response.warn(ROOM_EXISTS), |
|
29 |
Ok((client, room)) => { |
|
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
30 |
response.add( |
14504
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
31 |
RoomAdd(room.info(Some(&client))) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
32 |
.send_all() |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
33 |
.with_protocol(room.protocol_number), |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
34 |
); |
14797 | 35 |
response.add(RoomJoined(vec![client.nick.clone()]).send_self()); |
15439 | 36 |
response.add( |
37 |
ClientFlags( |
|
38 |
add_flags(&[Flags::RoomMaster, Flags::Ready]), |
|
39 |
vec![client.nick.clone()], |
|
40 |
) |
|
41 |
.send_self(), |
|
42 |
); |
|
14782 | 43 |
response.add( |
44 |
ClientFlags(add_flags(&[Flags::InRoom]), vec![client.nick.clone()]).send_self(), |
|
45 |
); |
|
15439 | 46 |
} |
47 |
}, |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
48 |
Chat(msg) => { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
49 |
response.add( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
50 |
ChatMsg { |
15439 | 51 |
nick: server.get_client_nick(client_id).to_string(), |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
52 |
msg, |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
53 |
} |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
54 |
.send_all() |
14694 | 55 |
.in_lobby() |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
56 |
.but_self(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
57 |
); |
14457 | 58 |
} |
15439 | 59 |
JoinRoom(name, _password) => match server.join_room_by_name(client_id, &name) { |
60 |
Err(error) => super::common::get_room_join_error(error, response), |
|
61 |
Ok((client, room, room_clients)) => { |
|
62 |
super::common::get_room_join_data(client, room, room_clients, response) |
|
63 |
} |
|
64 |
}, |
|
65 |
Follow(nick) => { |
|
66 |
if let Some(client) = server.find_client(&nick) { |
|
67 |
if let Some(room_id) = client.room_id { |
|
68 |
match server.join_room(client_id, room_id) { |
|
69 |
Err(error) => super::common::get_room_join_error(error, response), |
|
70 |
Ok((client, room, room_clients)) => { |
|
71 |
super::common::get_room_join_data(client, room, room_clients, response) |
|
72 |
} |
|
73 |
} |
|
74 |
} else { |
|
75 |
response.warn(NO_ROOM); |
|
13666 | 76 |
} |
77 |
} else { |
|
15439 | 78 |
response.warn(NO_USER); |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
79 |
} |
14457 | 80 |
} |
15439 | 81 |
SetServerVar(var) => match server.set_var(client_id, var) { |
82 |
Err(AccessError()) => response.warn(ACCESS_DENIED), |
|
83 |
Ok(()) => response.add(server_chat(VARIABLE_UPDATED.to_string()).send_self()), |
|
84 |
}, |
|
85 |
GetServerVar => match server.get_vars(client_id) { |
|
86 |
Err(AccessError()) => response.warn(ACCESS_DENIED), |
|
87 |
Ok(vars) => { |
|
88 |
response.add( |
|
89 |
ServerVars(vars.iter().flat_map(|v| v.to_protocol()).collect()).send_self(), |
|
90 |
); |
|
14787 | 91 |
} |
15439 | 92 |
}, |
13445
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13444
diff
changeset
|
93 |
Rnd(v) => { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
94 |
response.add(rnd_reply(&v).send_self()); |
14457 | 95 |
} |
15439 | 96 |
Stats => match server.get_used_protocols(client_id) { |
97 |
Err(AccessError()) => response.warn(ACCESS_DENIED), |
|
98 |
Ok(protocols) => { |
|
99 |
let mut html = Vec::with_capacity(protocols.len() + 2); |
|
14789 | 100 |
|
15439 | 101 |
html.push("<table>".to_string()); |
102 |
for protocol in protocols { |
|
103 |
html.push(format!( |
|
104 |
"<tr><td>{}</td><td>{}</td><td>{}</td></tr>", |
|
105 |
super::utils::protocol_version_string(protocol), |
|
15526
24f692e791d3
disallow mutable rooms outside the server
alfadur <mail@none>
parents:
15482
diff
changeset
|
106 |
server.protocol_client_ids(protocol).count(), |
24f692e791d3
disallow mutable rooms outside the server
alfadur <mail@none>
parents:
15482
diff
changeset
|
107 |
server.protocol_room_ids(protocol).count() |
15439 | 108 |
)); |
109 |
} |
|
110 |
html.push("</table>".to_string()); |
|
111 |
||
112 |
response.add(Warning(html.join("")).send_self()); |
|
14789 | 113 |
} |
15439 | 114 |
}, |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
115 |
List => warn!("Deprecated LIST message received"), |
12147 | 116 |
_ => warn!("Incorrect command in lobby state"), |
117 |
} |
|
118 |
} |