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