rust/hedgewars-server/src/server/handlers.rs
author alfadur
Wed, 10 Apr 2019 19:30:08 +0300
changeset 14784 8390d5e4e39c
parent 14783 b3adc030104b
child 14785 a1077e8d26f4
permissions -rw-r--r--
implememg global&delegate messages
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
     1
use mio;
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
     2
use std::{collections::HashMap, io, io::Write};
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
     3
14694
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
     4
use super::{
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
     5
    actions::{Destination, DestinationRoom},
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
     6
    core::HWServer,
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
     7
    coretypes::{ClientId, RoomId},
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
     8
    room::RoomSave,
14694
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
     9
};
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    10
use crate::{
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
    11
    protocol::messages::{server_chat, HWProtocolMessage, HWServerMessage, HWServerMessage::*},
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    12
    server::actions::PendingMessage,
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
    13
    utils,
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    14
};
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
    15
use base64::encode;
13805
0463a4221327 cleanup crate imports
alfadur
parents: 13798
diff changeset
    16
use log::*;
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
    17
use rand::{thread_rng, RngCore};
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13521
diff changeset
    18
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    19
mod checker;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    20
mod common;
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
    21
mod inroom;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    22
mod lobby;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    23
mod loggingin;
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
    24
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
    25
use self::loggingin::LoginResult;
14784
8390d5e4e39c implememg global&delegate messages
alfadur
parents: 14783
diff changeset
    26
use crate::protocol::messages::global_chat;
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    27
use std::fmt::{Formatter, LowerHex};
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    28
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    29
#[derive(PartialEq)]
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    30
pub struct Sha1Digest([u8; 20]);
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    31
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    32
impl Sha1Digest {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    33
    pub fn new(digest: [u8; 20]) -> Self {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    34
        Self(digest)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    35
    }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    36
}
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    37
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    38
impl LowerHex for Sha1Digest {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    39
    fn fmt(&self, f: &mut Formatter) -> Result<(), std::fmt::Error> {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    40
        for byte in &self.0 {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    41
            write!(f, "{:02x}", byte)?;
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    42
        }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    43
        Ok(())
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    44
    }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    45
}
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    46
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    47
pub struct AccountInfo {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    48
    pub is_registered: bool,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    49
    pub is_admin: bool,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    50
    pub is_contributor: bool,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    51
    pub server_hash: Sha1Digest,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    52
}
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    53
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    54
pub enum IoTask {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    55
    GetAccount {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    56
        nick: String,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    57
        protocol: u16,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    58
        password_hash: String,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    59
        client_salt: String,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    60
        server_salt: String,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    61
    },
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    62
    SaveRoom {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    63
        room_id: RoomId,
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    64
        filename: String,
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    65
        contents: String,
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    66
    },
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    67
    LoadRoom {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    68
        room_id: RoomId,
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
    69
        filename: String,
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
    70
    },
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    71
}
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    72
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    73
pub enum IoResult {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    74
    Account(Option<AccountInfo>),
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
    75
    SaveRoom(RoomId, bool),
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
    76
    LoadRoom(RoomId, Option<String>),
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    77
}
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
    78
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    79
pub struct Response {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    80
    client_id: ClientId,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    81
    messages: Vec<PendingMessage>,
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    82
    io_tasks: Vec<IoTask>,
14696
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
    83
    removed_clients: Vec<ClientId>,
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    84
}
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    85
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    86
impl Response {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    87
    pub fn new(client_id: ClientId) -> Self {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    88
        Self {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    89
            client_id,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    90
            messages: vec![],
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    91
            io_tasks: vec![],
14696
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
    92
            removed_clients: vec![],
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    93
        }
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    94
    }
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
    95
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
    96
    #[inline]
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
    97
    pub fn is_empty(&self) -> bool {
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    98
        self.messages.is_empty() && self.removed_clients.is_empty() && self.io_tasks.is_empty()
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
    99
    }
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   100
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   101
    #[inline]
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   102
    pub fn len(&self) -> usize {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   103
        self.messages.len()
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   104
    }
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   105
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   106
    #[inline]
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   107
    pub fn client_id(&self) -> ClientId {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   108
        self.client_id
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   109
    }
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   110
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   111
    #[inline]
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   112
    pub fn add(&mut self, message: PendingMessage) {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   113
        self.messages.push(message)
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   114
    }
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   115
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   116
    #[inline]
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   117
    pub fn request_io(&mut self, task: IoTask) {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   118
        self.io_tasks.push(task)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   119
    }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   120
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   121
    pub fn extract_messages<'a, 'b: 'a>(
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   122
        &'b mut self,
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   123
        server: &'a HWServer,
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   124
    ) -> impl Iterator<Item = (Vec<ClientId>, HWServerMessage)> + 'a {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   125
        let client_id = self.client_id;
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   126
        self.messages.drain(..).map(move |m| {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   127
            let ids = get_recipients(server, client_id, &m.destination);
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   128
            (ids, m.message)
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   129
        })
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   130
    }
14696
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   131
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   132
    pub fn remove_client(&mut self, client_id: ClientId) {
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   133
        self.removed_clients.push(client_id);
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   134
    }
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   135
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   136
    pub fn extract_removed_clients(&mut self) -> impl Iterator<Item = ClientId> + '_ {
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   137
        self.removed_clients.drain(..)
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   138
    }
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   139
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   140
    pub fn extract_io_tasks(&mut self) -> impl Iterator<Item = IoTask> + '_ {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   141
        self.io_tasks.drain(..)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   142
    }
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   143
}
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   144
14687
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   145
impl Extend<PendingMessage> for Response {
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   146
    fn extend<T: IntoIterator<Item = PendingMessage>>(&mut self, iter: T) {
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   147
        for msg in iter {
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   148
            self.add(msg)
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   149
        }
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   150
    }
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   151
}
5122c584804e Server action refactoring part A of N
alfadur <mail@none>
parents: 14673
diff changeset
   152
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   153
fn get_recipients(
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   154
    server: &HWServer,
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   155
    client_id: ClientId,
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   156
    destination: &Destination,
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   157
) -> Vec<ClientId> {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   158
    let mut ids = match *destination {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   159
        Destination::ToSelf => vec![client_id],
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   160
        Destination::ToId(id) => vec![id],
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   161
        Destination::ToAll {
14694
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
   162
            room_id: DestinationRoom::Lobby,
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
   163
            ..
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   164
        } => server.collect_lobby_clients(),
14694
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
   165
        Destination::ToAll {
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
   166
            room_id: DestinationRoom::Room(id),
25c564f77b7d remove lobby room
alfadur <mail@none>
parents: 14693
diff changeset
   167
            ..
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   168
        } => server.collect_room_clients(id),
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   169
        Destination::ToAll {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   170
            protocol: Some(proto),
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   171
            ..
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   172
        } => server.protocol_clients(proto),
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   173
        Destination::ToAll { .. } => server.clients.iter().map(|(id, _)| id).collect::<Vec<_>>(),
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   174
    };
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   175
    if let Destination::ToAll {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   176
        skip_self: true, ..
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   177
    } = destination
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   178
    {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   179
        if let Some(index) = ids.iter().position(|id| *id == client_id) {
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   180
            ids.remove(index);
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   181
        }
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   182
    }
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   183
    ids
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   184
}
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   185
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   186
pub fn handle(
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   187
    server: &mut HWServer,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   188
    client_id: ClientId,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   189
    response: &mut Response,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   190
    message: HWProtocolMessage,
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   191
) {
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
   192
    match message {
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   193
        HWProtocolMessage::Ping => response.add(Pong.send_self()),
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
   194
        HWProtocolMessage::Malformed => warn!("Malformed/unknown message"),
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
   195
        HWProtocolMessage::Empty => warn!("Empty message"),
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   196
        _ => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   197
            if server.anteroom.clients.contains(client_id) {
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   198
                match loggingin::handle(server, client_id, response, message) {
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   199
                    LoginResult::Unchanged => (),
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   200
                    LoginResult::Complete => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   201
                        if let Some(client) = server.anteroom.remove_client(client_id) {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   202
                            server.add_client(client_id, client);
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   203
                            common::join_lobby(server, response);
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   204
                        }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   205
                    }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   206
                    LoginResult::Exit => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   207
                        server.anteroom.remove_client(client_id);
14696
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   208
                        response.remove_client(client_id);
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   209
                    }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   210
                }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   211
            } else {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   212
                match message {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   213
                    HWProtocolMessage::Quit(Some(msg)) => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   214
                        common::remove_client(server, response, "User quit: ".to_string() + &msg);
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   215
                    }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   216
                    HWProtocolMessage::Quit(None) => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   217
                        common::remove_client(server, response, "User quit".to_string());
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   218
                    }
14784
8390d5e4e39c implememg global&delegate messages
alfadur
parents: 14783
diff changeset
   219
                    HWProtocolMessage::Global(msg) => response.add(global_chat(msg).send_all()),
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   220
                    _ => match server.clients[client_id].room_id {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   221
                        None => lobby::handle(server, client_id, response, message),
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   222
                        Some(room_id) => {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   223
                            inroom::handle(server, client_id, response, room_id, message)
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   224
                        }
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   225
                    },
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   226
                }
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14457
diff changeset
   227
            }
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   228
        }
12149
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
   229
    }
44b06731278b Fix handlers module
unc0rr
parents:
diff changeset
   230
}
14673
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
   231
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   232
pub fn handle_client_accept(server: &mut HWServer, client_id: ClientId, response: &mut Response) {
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   233
    let mut salt = [0u8; 18];
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   234
    thread_rng().fill_bytes(&mut salt);
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   235
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   236
    server.anteroom.add_client(client_id, encode(&salt));
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   237
14783
b3adc030104b implement server vars
alfadur
parents: 14781
diff changeset
   238
    response.add(HWServerMessage::Connected(utils::SERVER_VERSION).send_self());
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   239
}
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14690
diff changeset
   240
14673
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
   241
pub fn handle_client_loss(server: &mut HWServer, client_id: ClientId, response: &mut Response) {
14696
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   242
    if server.anteroom.remove_client(client_id).is_none() {
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   243
        common::remove_client(server, response, "Connection reset".to_string());
8a45c90f4580 fix client removal
alfadur
parents: 14694
diff changeset
   244
    }
14673
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
   245
}
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   246
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   247
pub fn handle_io_result(
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   248
    server: &mut HWServer,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   249
    client_id: ClientId,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   250
    response: &mut Response,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   251
    io_result: IoResult,
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   252
) {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   253
    match io_result {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   254
        IoResult::Account(Some(info)) => {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   255
            response.add(ServerAuth(format!("{:x}", info.server_hash)).send_self());
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   256
            if let Some(client) = server.anteroom.remove_client(client_id) {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   257
                server.add_client(client_id, client);
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   258
                let client = &mut server.clients[client_id];
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   259
                client.set_is_admin(info.is_admin);
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   260
                client.set_is_contributor(info.is_admin)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   261
            }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   262
        }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   263
        IoResult::Account(None) => {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   264
            response.add(Error("Authentication failed.".to_string()).send_self());
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   265
            response.remove_client(client_id);
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   266
        }
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   267
        IoResult::SaveRoom(_, true) => {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   268
            response.add(server_chat("Room configs saved successfully.".to_string()).send_self());
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   269
        }
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   270
        IoResult::SaveRoom(_, false) => {
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   271
            response.add(Warning("Unable to save the room configs.".to_string()).send_self());
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   272
        }
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   273
        IoResult::LoadRoom(room_id, Some(contents)) => {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   274
            if let Some(ref mut room) = server.rooms.get_mut(room_id) {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   275
                match room.set_saves(&contents) {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   276
                    Ok(_) => response.add(
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   277
                        server_chat("Room configs loaded successfully.".to_string()).send_self(),
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   278
                    ),
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   279
                    Err(e) => {
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   280
                        warn!("Error while deserializing the room configs: {}", e);
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   281
                        response.add(
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   282
                            Warning("Unable to deserialize the room configs.".to_string())
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   283
                                .send_self(),
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   284
                        );
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   285
                    }
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   286
                }
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   287
            }
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   288
        }
14781
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   289
        IoResult::LoadRoom(_, None) => {
01f8ab45f806 fix lobby joining
alfadur
parents: 14780
diff changeset
   290
            response.add(Warning("Unable to load the room configs.".to_string()).send_self());
14780
65861ba8b4e8 move room saves to IO thread
alfadur
parents: 14779
diff changeset
   291
        }
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   292
    }
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
   293
}