author | unc0rr |
Sun, 13 Jan 2013 11:14:50 +0400 | |
changeset 8375 | af2d2f56bc45 |
parent 8372 | 3c193ec03e09 |
child 8396 | 5123eac2f9d6 |
permissions | -rw-r--r-- |
6012 | 1 |
{-# LANGUAGE CPP, OverloadedStrings #-} |
7766 | 2 |
{-# OPTIONS_GHC -fno-warn-orphans #-} |
5184 | 3 |
module Actions where |
4 |
||
5 |
import Control.Concurrent |
|
6 |
import qualified Data.Set as Set |
|
7 |
import qualified Data.List as L |
|
8 |
import qualified Control.Exception as Exception |
|
9 |
import System.Log.Logger |
|
10 |
import Control.Monad |
|
11 |
import Data.Time |
|
12 |
import Data.Maybe |
|
13 |
import Control.Monad.Reader |
|
14 |
import Control.Monad.State.Strict |
|
15 |
import qualified Data.ByteString.Char8 as B |
|
16 |
import Control.DeepSeq |
|
17 |
import Data.Unique |
|
18 |
import Control.Arrow |
|
19 |
import Control.Exception |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
20 |
import System.Process |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
21 |
import Network.Socket |
5184 | 22 |
----------------------------- |
7766 | 23 |
#if defined(OFFICIAL_SERVER) |
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5426
diff
changeset
|
24 |
import OfficialServer.GameReplayStore |
7766 | 25 |
#endif |
5184 | 26 |
import CoreTypes |
27 |
import Utils |
|
28 |
import ClientIO |
|
29 |
import ServerState |
|
30 |
import Consts |
|
31 |
import ConfigFile |
|
6068 | 32 |
import EngineInteraction |
5184 | 33 |
|
34 |
data Action = |
|
35 |
AnswerClients ![ClientChan] ![B.ByteString] |
|
36 |
| SendServerMessage |
|
37 |
| SendServerVars |
|
38 |
| MoveToRoom RoomIndex |
|
39 |
| MoveToLobby B.ByteString |
|
40 |
| RemoveTeam B.ByteString |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
41 |
| SendTeamRemovalMessage B.ByteString |
5184 | 42 |
| RemoveRoom |
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
43 |
| FinishGame |
5184 | 44 |
| UnreadyRoomClients |
45 |
| JoinLobby |
|
46 |
| ProtocolError B.ByteString |
|
47 |
| Warning B.ByteString |
|
48 |
| NoticeMessage Notice |
|
49 |
| ByeClient B.ByteString |
|
50 |
| KickClient ClientIndex |
|
51 |
| KickRoomClient ClientIndex |
|
52 |
| BanClient NominalDiffTime B.ByteString ClientIndex |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
53 |
| BanIP B.ByteString NominalDiffTime B.ByteString |
8154 | 54 |
| BanNick B.ByteString NominalDiffTime B.ByteString |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
55 |
| BanList |
7748 | 56 |
| Unban B.ByteString |
8247 | 57 |
| ChangeMaster (Maybe ClientIndex) |
5184 | 58 |
| RemoveClientTeams ClientIndex |
59 |
| ModifyClient (ClientInfo -> ClientInfo) |
|
60 |
| ModifyClient2 ClientIndex (ClientInfo -> ClientInfo) |
|
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
61 |
| ModifyRoomClients (ClientInfo -> ClientInfo) |
5184 | 62 |
| ModifyRoom (RoomInfo -> RoomInfo) |
63 |
| ModifyServerInfo (ServerInfo -> ServerInfo) |
|
64 |
| AddRoom B.ByteString B.ByteString |
|
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
65 |
| SendUpdateOnThisRoom |
5184 | 66 |
| CheckRegistered |
67 |
| ClearAccountsCache |
|
68 |
| ProcessAccountInfo AccountInfo |
|
69 |
| AddClient ClientInfo |
|
70 |
| DeleteClient ClientIndex |
|
71 |
| PingAll |
|
72 |
| StatsAction |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
73 |
| RestartServer |
5184 | 74 |
| AddNick2Bans B.ByteString B.ByteString UTCTime |
75 |
| AddIP2Bans B.ByteString B.ByteString UTCTime |
|
8239 | 76 |
| CheckBanned Bool |
5184 | 77 |
| SaveReplay |
78 |
||
79 |
||
80 |
type CmdHandler = [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
|
81 |
||
82 |
instance NFData Action where |
|
83 |
rnf (AnswerClients chans msg) = chans `deepseq` msg `deepseq` () |
|
84 |
rnf a = a `seq` () |
|
85 |
||
86 |
instance NFData B.ByteString |
|
87 |
instance NFData (Chan a) |
|
88 |
||
89 |
||
90 |
othersChans :: StateT ServerState IO [ClientChan] |
|
91 |
othersChans = do |
|
92 |
cl <- client's id |
|
93 |
ri <- clientRoomA |
|
94 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
95 |
||
96 |
processAction :: Action -> StateT ServerState IO () |
|
97 |
||
98 |
||
99 |
processAction (AnswerClients chans msg) = |
|
100 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
101 |
||
102 |
||
103 |
processAction SendServerMessage = do |
|
104 |
chan <- client's sendChan |
|
105 |
protonum <- client's clientProto |
|
106 |
si <- liftM serverInfo get |
|
107 |
let message = if protonum < latestReleaseVersion si then |
|
108 |
serverMessageForOldVersions si |
|
109 |
else |
|
110 |
serverMessage si |
|
111 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
112 |
||
113 |
||
114 |
processAction SendServerVars = do |
|
115 |
chan <- client's sendChan |
|
116 |
si <- gets serverInfo |
|
117 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
118 |
where |
|
119 |
vars si = [ |
|
120 |
"MOTD_NEW", serverMessage si, |
|
121 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
122 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
123 |
] |
|
124 |
||
125 |
||
126 |
processAction (ProtocolError msg) = do |
|
127 |
chan <- client's sendChan |
|
128 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
129 |
||
130 |
||
131 |
processAction (Warning msg) = do |
|
132 |
chan <- client's sendChan |
|
133 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
134 |
||
135 |
processAction (NoticeMessage n) = do |
|
136 |
chan <- client's sendChan |
|
137 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
138 |
||
139 |
processAction (ByeClient msg) = do |
|
140 |
(Just ci) <- gets clientIndex |
|
141 |
ri <- clientRoomA |
|
142 |
||
143 |
chan <- client's sendChan |
|
144 |
clNick <- client's nick |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
145 |
loggedIn <- client's isVisible |
5184 | 146 |
|
147 |
when (ri /= lobbyId) $ do |
|
148 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
149 |
return () |
|
150 |
||
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
151 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 152 |
io $ |
153 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
154 |
||
155 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
156 |
||
8158 | 157 |
mapM_ processAction |
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
158 |
[ |
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
159 |
AnswerClients [chan] ["BYE", msg] |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
160 |
, ModifyClient (\c -> c{nick = "", isVisible = False}) -- this will effectively hide client from others while he isn't deleted from list |
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
161 |
] |
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
162 |
|
5184 | 163 |
s <- get |
164 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
165 |
||
166 |
processAction (DeleteClient ci) = do |
|
167 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
168 |
||
169 |
rnc <- gets roomsClients |
|
170 |
io $ removeClient rnc ci |
|
171 |
||
172 |
s <- get |
|
173 |
put $! s{removedClients = ci `Set.delete` removedClients s} |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
174 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
175 |
sp <- gets (shutdownPending . serverInfo) |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
176 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
177 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 178 |
|
179 |
processAction (ModifyClient f) = do |
|
180 |
(Just ci) <- gets clientIndex |
|
181 |
rnc <- gets roomsClients |
|
182 |
io $ modifyClient rnc f ci |
|
183 |
return () |
|
184 |
||
185 |
processAction (ModifyClient2 ci f) = do |
|
186 |
rnc <- gets roomsClients |
|
187 |
io $ modifyClient rnc f ci |
|
188 |
return () |
|
189 |
||
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
190 |
processAction (ModifyRoomClients f) = do |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
191 |
rnc <- gets roomsClients |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
192 |
ri <- clientRoomA |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
193 |
roomClIDs <- io $ roomClientsIndicesM rnc ri |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
194 |
io $ mapM_ (modifyClient rnc f) roomClIDs |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
195 |
|
5184 | 196 |
|
197 |
processAction (ModifyRoom f) = do |
|
198 |
rnc <- gets roomsClients |
|
199 |
ri <- clientRoomA |
|
200 |
io $ modifyRoom rnc f ri |
|
201 |
return () |
|
202 |
||
203 |
||
204 |
processAction (ModifyServerInfo f) = do |
|
205 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
206 |
si <- gets serverInfo |
|
207 |
io $ writeServerConfig si |
|
208 |
||
209 |
||
210 |
processAction (MoveToRoom ri) = do |
|
211 |
(Just ci) <- gets clientIndex |
|
212 |
rnc <- gets roomsClients |
|
213 |
||
214 |
io $ do |
|
7898 | 215 |
modifyClient rnc (\cl -> cl{teamsInGame = 0, isReady = False, isMaster = False, isInGame = False}) ci |
5184 | 216 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
217 |
moveClientToRoom rnc ri ci |
|
218 |
||
219 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
220 |
clNick <- client's nick |
|
221 |
||
222 |
processAction $ AnswerClients chans ["JOINED", clNick] |
|
223 |
||
224 |
||
225 |
processAction (MoveToLobby msg) = do |
|
226 |
(Just ci) <- gets clientIndex |
|
227 |
ri <- clientRoomA |
|
228 |
rnc <- gets roomsClients |
|
7766 | 229 |
playersNum <- io $ room'sM rnc playersIn ri |
5184 | 230 |
master <- client's isMaster |
231 |
-- client <- client's id |
|
232 |
clNick <- client's nick |
|
233 |
chans <- othersChans |
|
234 |
||
235 |
if master then |
|
7521 | 236 |
if playersNum > 1 then |
8247 | 237 |
mapM_ processAction [ChangeMaster Nothing, NoticeMessage AdminLeft, RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 238 |
else |
239 |
processAction RemoveRoom |
|
240 |
else |
|
7351
34efdd1f230f
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game)
unc0rr
parents:
7321
diff
changeset
|
241 |
mapM_ processAction [RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 242 |
|
243 |
-- when not removing room |
|
7351
34efdd1f230f
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game)
unc0rr
parents:
7321
diff
changeset
|
244 |
ready <- client's isReady |
7521 | 245 |
when (not master || playersNum > 1) . io $ do |
5184 | 246 |
modifyRoom rnc (\r -> r{ |
247 |
playersIn = playersIn r - 1, |
|
248 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
249 |
}) ri |
|
250 |
moveClientToLobby rnc ci |
|
251 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
252 |
|
8247 | 253 |
processAction (ChangeMaster delegateId)= do |
5184 | 254 |
(Just ci) <- gets clientIndex |
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
255 |
proto <- client's clientProto |
5184 | 256 |
ri <- clientRoomA |
257 |
rnc <- gets roomsClients |
|
8247 | 258 |
newMasterId <- liftM (\ids -> fromMaybe (last . filter (/= ci) $ ids) delegateId) . io $ roomClientsIndicesM rnc ri |
5184 | 259 |
newMaster <- io $ client'sM rnc id newMasterId |
6733 | 260 |
oldRoomName <- io $ room'sM rnc name ri |
7682 | 261 |
oldMaster <- client's nick |
8245 | 262 |
kicked <- client's isKickedFromServer |
7668
4cb423f42105
Show who is the room admin on join (no tested, also I don't like how it is done via server warnings, but it seems there's no other solution compatible with .17)
unc0rr
parents:
7664
diff
changeset
|
263 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
8245 | 264 |
let newRoomName = if (proto < 42) || kicked then nick newMaster else oldRoomName |
5184 | 265 |
mapM_ processAction [ |
7775 | 266 |
ModifyRoom (\r -> r{masterID = newMasterId |
267 |
, name = newRoomName |
|
268 |
, isRestrictedJoins = False |
|
269 |
, isRestrictedTeams = False |
|
8232 | 270 |
, isRegisteredOnly = False |
7775 | 271 |
, readyPlayers = if isReady newMaster then readyPlayers r else readyPlayers r + 1}) |
272 |
, ModifyClient2 newMasterId (\c -> c{isMaster = True, isReady = True}) |
|
7682 | 273 |
, AnswerClients [sendChan newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
274 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "-h", oldMaster] |
|
7775 | 275 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+hr", nick newMaster] |
5184 | 276 |
] |
277 |
||
7766 | 278 |
newRoom' <- io $ room'sM rnc id ri |
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
279 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
7972 | 280 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : oldRoomName : roomInfo (nick newMaster) newRoom') |
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
281 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
282 |
|
5184 | 283 |
processAction (AddRoom roomName roomPassword) = do |
284 |
Just clId <- gets clientIndex |
|
285 |
rnc <- gets roomsClients |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
286 |
proto <- client's clientProto |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
287 |
n <- client's nick |
5184 | 288 |
|
289 |
let rm = newRoom{ |
|
290 |
masterID = clId, |
|
291 |
name = roomName, |
|
292 |
password = roomPassword, |
|
293 |
roomProto = proto |
|
294 |
} |
|
295 |
||
296 |
rId <- io $ addRoom rnc rm |
|
297 |
||
298 |
processAction $ MoveToRoom rId |
|
299 |
||
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
300 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 301 |
|
302 |
mapM_ processAction [ |
|
7945
4006d77e1a28
Send notification about 1 player in room on room creation
unc0rr
parents:
7926
diff
changeset
|
303 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo n rm{playersIn = 1}) |
5184 | 304 |
] |
305 |
||
306 |
||
307 |
processAction RemoveRoom = do |
|
308 |
Just clId <- gets clientIndex |
|
309 |
rnc <- gets roomsClients |
|
310 |
ri <- io $ clientRoomM rnc clId |
|
311 |
roomName <- io $ room'sM rnc name ri |
|
312 |
others <- othersChans |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
313 |
proto <- client's clientProto |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
314 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 315 |
|
316 |
mapM_ processAction [ |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
317 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 318 |
AnswerClients others ["ROOMABANDONED", roomName] |
319 |
] |
|
320 |
||
321 |
io $ removeRoom rnc ri |
|
322 |
||
323 |
||
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
324 |
processAction SendUpdateOnThisRoom = do |
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
325 |
Just clId <- gets clientIndex |
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
326 |
proto <- client's clientProto |
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
327 |
rnc <- gets roomsClients |
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
328 |
ri <- io $ clientRoomM rnc clId |
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
329 |
rm <- io $ room'sM rnc id ri |
7926
550083f61a0e
oops, fix incorrect room owner name in ROOM UPD command again
unc0rr
parents:
7924
diff
changeset
|
330 |
n <- io $ client'sM rnc nick (masterID rm) |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
331 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
7924
351f970c60e1
oops, fix incorrect room owner name in ROOM UPD command
unc0rr
parents:
7921
diff
changeset
|
332 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : name rm : roomInfo n rm) |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
333 |
|
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
334 |
|
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
335 |
processAction UnreadyRoomClients = do |
5184 | 336 |
ri <- clientRoomA |
337 |
roomPlayers <- roomClientsS ri |
|
338 |
pr <- client's clientProto |
|
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
339 |
mapM_ processAction [ |
7775 | 340 |
AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr . map nick . filter (not . isMaster) $ roomPlayers |
341 |
, ModifyRoomClients (\cl -> cl{isReady = isMaster cl}) |
|
342 |
, ModifyRoom (\r -> r{readyPlayers = 1}) |
|
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
343 |
] |
5184 | 344 |
where |
345 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
346 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
347 |
|
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
348 |
processAction FinishGame = do |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
349 |
rnc <- gets roomsClients |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
350 |
ri <- clientRoomA |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
351 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
352 |
answerRemovedTeams <- io $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
353 |
room'sM rnc (map (\t -> AnswerClients thisRoomChans ["REMOVE_TEAM", t]) . leftTeams . fromJust . gameInfo) ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
354 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
355 |
mapM_ processAction $ |
7124 | 356 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
357 |
: ModifyRoom |
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
358 |
(\r -> r{ |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
359 |
gameInfo = Nothing, |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
360 |
readyPlayers = 0 |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
361 |
} |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
362 |
) |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
363 |
: UnreadyRoomClients |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
364 |
: SendUpdateOnThisRoom |
8241
b15f165c080c
Send "ROUND_FINISHED" to room clients when server thinks so
unc0rr
parents:
8239
diff
changeset
|
365 |
: AnswerClients thisRoomChans ["ROUND_FINISHED"] |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
366 |
: answerRemovedTeams |
5184 | 367 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
368 |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
369 |
processAction (SendTeamRemovalMessage teamName) = do |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
370 |
chans <- othersChans |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
371 |
mapM_ processAction [ |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
372 |
AnswerClients chans ["EM", rmTeamMsg], |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
373 |
ModifyRoom (\r -> r{ |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
374 |
gameInfo = liftM (\g -> g{ |
7124 | 375 |
teamsInGameNumber = teamsInGameNumber g - 1 |
8369 | 376 |
, roundMsgs = rmTeamMsg : roundMsgs g |
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
377 |
}) $ gameInfo r |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
378 |
}) |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
379 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
380 |
|
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
381 |
rnc <- gets roomsClients |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
382 |
ri <- clientRoomA |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
383 |
gi <- io $ room'sM rnc gameInfo ri |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
384 |
when (isJust gi && 0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
385 |
processAction FinishGame |
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
386 |
where |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
387 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
388 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
389 |
|
5184 | 390 |
processAction (RemoveTeam teamName) = do |
391 |
rnc <- gets roomsClients |
|
392 |
ri <- clientRoomA |
|
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5426
diff
changeset
|
393 |
inGame <- io $ room'sM rnc (isJust . gameInfo) ri |
5184 | 394 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
395 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
396 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
397 |
teams = Prelude.filter (\t -> teamName /= teamname t) $ teams r |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
398 |
, gameInfo = liftM (\g -> g{leftTeams = teamName : leftTeams g}) $ gameInfo r |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
399 |
}) |
7947 | 400 |
: SendUpdateOnThisRoom |
7124 | 401 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
402 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 403 |
|
404 |
||
405 |
processAction (RemoveClientTeams clId) = do |
|
406 |
rnc <- gets roomsClients |
|
407 |
||
408 |
removeTeamActions <- io $ do |
|
409 |
clNick <- client'sM rnc nick clId |
|
410 |
rId <- clientRoomM rnc clId |
|
411 |
roomTeams <- room'sM rnc teams rId |
|
412 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == clNick) $ roomTeams |
|
413 |
||
414 |
mapM_ processAction removeTeamActions |
|
415 |
||
416 |
||
417 |
||
418 |
processAction CheckRegistered = do |
|
419 |
(Just ci) <- gets clientIndex |
|
420 |
n <- client's nick |
|
421 |
h <- client's host |
|
422 |
p <- client's clientProto |
|
8371 | 423 |
checker <- client's isChecker |
5184 | 424 |
uid <- client's clUID |
8371 | 425 |
-- allow multiple checker logins |
426 |
haveSameNick <- liftM (not . null . tail . filter (\c -> (not $ isChecker c) && caseInsensitiveCompare (nick c) n)) allClientsS |
|
427 |
if haveSameNick && (not checker) then |
|
5184 | 428 |
if p < 38 then |
8239 | 429 |
processAction $ ByeClient "Nickname is already in use" |
5184 | 430 |
else |
8239 | 431 |
processAction $ NoticeMessage NickAlreadyInUse |
5184 | 432 |
else |
433 |
do |
|
434 |
db <- gets (dbQueries . serverInfo) |
|
435 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
436 |
return () |
|
437 |
||
438 |
processAction ClearAccountsCache = do |
|
439 |
dbq <- gets (dbQueries . serverInfo) |
|
440 |
io $ writeChan dbq ClearCache |
|
441 |
return () |
|
442 |
||
443 |
||
8189 | 444 |
processAction (ProcessAccountInfo info) = do |
5184 | 445 |
case info of |
446 |
HasAccount passwd isAdmin -> do |
|
8189 | 447 |
b <- isBanned |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
448 |
c <- client's isChecker |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
449 |
when (not b) $ (if c then checkerLogin else playerLogin) passwd isAdmin |
8189 | 450 |
Guest -> do |
451 |
b <- isBanned |
|
452 |
when (not b) $ |
|
453 |
processAction JoinLobby |
|
5184 | 454 |
Admin -> do |
455 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
|
456 |
chan <- client's sendChan |
|
457 |
processAction $ AnswerClients [chan] ["ADMIN_ACCESS"] |
|
8189 | 458 |
where |
459 |
isBanned = do |
|
8239 | 460 |
processAction $ CheckBanned False |
8189 | 461 |
liftM B.null $ client's nick |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
462 |
checkerLogin p False = processAction $ ByeClient "No checker rights" |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
463 |
checkerLogin p True = do |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
464 |
wp <- client's webPassword |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
465 |
processAction $ |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
466 |
if wp == p then ModifyClient $ \c -> c{logonPassed = True} else ByeClient "Authentication failed" |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
467 |
playerLogin p a = do |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
468 |
chan <- client's sendChan |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
469 |
mapM_ processAction [AnswerClients [chan] ["ASKPASSWORD"], ModifyClient (\c -> c{webPassword = p, isAdministrator = a})] |
5184 | 470 |
|
471 |
processAction JoinLobby = do |
|
472 |
chan <- client's sendChan |
|
473 |
clientNick <- client's nick |
|
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
474 |
isAuthenticated <- liftM (not . B.null) $ client's webPassword |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
475 |
isAdmin <- client's isAdministrator |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
476 |
loggedInClients <- liftM (Prelude.filter isVisible) $! allClientsS |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
477 |
let (lobbyNicks, clientsChans) = unzip . L.map (nick &&& sendChan) $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
478 |
let authenticatedNicks = L.map nick . L.filter (not . B.null . webPassword) $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
479 |
let adminsNicks = L.map nick . L.filter isAdministrator $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
480 |
let clFlags = B.concat . L.concat $ [["u" | isAuthenticated], ["a" | isAdmin]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
481 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
482 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
483 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
484 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+u" : authenticatedNicks) | not $ null authenticatedNicks] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
485 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+a" : adminsNicks) | not $ null adminsNicks] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
486 |
, [AnswerClients (chan : clientsChans) ["CLIENT_FLAGS", B.concat["+" , clFlags], clientNick] | not $ B.null clFlags] |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
487 |
, [ModifyClient (\cl -> cl{logonPassed = True, isVisible = True})] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
488 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
489 |
] |
5184 | 490 |
|
491 |
||
492 |
processAction (KickClient kickId) = do |
|
493 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 494 |
clHost <- client's host |
495 |
currentTime <- io getCurrentTime |
|
496 |
mapM_ processAction [ |
|
8245 | 497 |
AddIP2Bans clHost "60 seconds cooldown after kick" (addUTCTime 60 currentTime) |
498 |
, ModifyClient (\c -> c{isKickedFromServer = True}) |
|
499 |
, ByeClient "Kicked" |
|
5214 | 500 |
] |
5184 | 501 |
|
502 |
||
503 |
processAction (BanClient seconds reason banId) = do |
|
504 |
modify (\s -> s{clientIndex = Just banId}) |
|
505 |
clHost <- client's host |
|
506 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
507 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 508 |
mapM_ processAction [ |
509 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
510 |
, KickClient banId |
|
511 |
] |
|
512 |
||
8245 | 513 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
514 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
515 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
516 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
517 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
518 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
519 |
|
8245 | 520 |
|
8154 | 521 |
processAction (BanNick n seconds reason) = do |
522 |
currentTime <- io getCurrentTime |
|
523 |
let msg = |
|
524 |
if seconds > 60 * 60 * 24 * 365 then |
|
525 |
B.concat ["Permanent ban (", reason, ")"] |
|
526 |
else |
|
527 |
B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
|
528 |
processAction $ |
|
529 |
AddNick2Bans n msg (addUTCTime seconds currentTime) |
|
530 |
||
8245 | 531 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
532 |
processAction BanList = do |
8156 | 533 |
time <- io $ getCurrentTime |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
534 |
ch <- client's sendChan |
8156 | 535 |
b <- gets (B.intercalate "\n" . concatMap (ban2Str time) . bans . serverInfo) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
536 |
processAction $ |
7766 | 537 |
AnswerClients [ch] ["BANLIST", b] |
8156 | 538 |
where |
539 |
ban2Str time (BanByIP b r t) = ["I", b, r, B.pack . show $ t `diffUTCTime` time] |
|
540 |
ban2Str time (BanByNick b r t) = ["N", b, r, B.pack . show $ t `diffUTCTime` time] |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
541 |
|
8245 | 542 |
|
7748 | 543 |
processAction (Unban entry) = do |
8156 | 544 |
processAction $ ModifyServerInfo (\s -> s{bans = filter (not . f) $ bans s}) |
7748 | 545 |
where |
546 |
f (BanByIP bip _ _) = bip == entry |
|
547 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 548 |
|
8245 | 549 |
|
5184 | 550 |
processAction (KickRoomClient kickId) = do |
551 |
modify (\s -> s{clientIndex = Just kickId}) |
|
552 |
ch <- client's sendChan |
|
553 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby "kicked"] |
|
554 |
||
555 |
||
556 |
processAction (AddClient cl) = do |
|
557 |
rnc <- gets roomsClients |
|
558 |
si <- gets serverInfo |
|
559 |
newClId <- io $ do |
|
560 |
ci <- addClient rnc cl |
|
561 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
562 |
||
563 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
564 |
||
565 |
return ci |
|
566 |
||
567 |
modify (\s -> s{clientIndex = Just newClId}) |
|
568 |
mapM_ processAction |
|
569 |
[ |
|
570 |
AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
|
8239 | 571 |
, CheckBanned True |
6809 | 572 |
, AddIP2Bans (host cl) "Reconnected too fast" (addUTCTime 10 $ connectTime cl) |
5184 | 573 |
] |
574 |
||
575 |
||
576 |
processAction (AddNick2Bans n reason expiring) = do |
|
577 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
578 |
||
579 |
processAction (AddIP2Bans ip reason expiring) = do |
|
580 |
(Just ci) <- gets clientIndex |
|
581 |
rc <- gets removedClients |
|
582 |
when (not $ ci `Set.member` rc) |
|
583 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
584 |
||
8239 | 585 |
processAction (CheckBanned byIP) = do |
5184 | 586 |
clTime <- client's connectTime |
587 |
clNick <- client's nick |
|
588 |
clHost <- client's host |
|
589 |
si <- gets serverInfo |
|
590 |
let validBans = filter (checkNotExpired clTime) $ bans si |
|
8239 | 591 |
let ban = L.find (checkBan byIP clHost clNick) $ validBans |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
592 |
mapM_ processAction $ |
5184 | 593 |
ModifyServerInfo (\s -> s{bans = validBans}) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
594 |
: [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
5184 | 595 |
where |
596 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
597 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
8239 | 598 |
checkBan True ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
599 |
checkBan False _ n (BanByNick bn _ _) = caseInsensitiveCompare bn n |
|
600 |
checkBan _ _ _ _ = False |
|
5184 | 601 |
getBanReason (BanByIP _ msg _) = msg |
602 |
getBanReason (BanByNick _ msg _) = msg |
|
603 |
||
604 |
processAction PingAll = do |
|
605 |
rnc <- gets roomsClients |
|
606 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
607 |
cis <- io $ allClientsM rnc |
|
608 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
609 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
610 |
processAction $ AnswerClients chans ["PING"] |
|
611 |
where |
|
612 |
kickTimeouted rnc ci = do |
|
613 |
pq <- io $ client'sM rnc pingsQueue ci |
|
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
614 |
when (pq > 0) $ do |
5184 | 615 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
616 |
processAction (ByeClient "Ping timeout") |
|
7600
31a177d2856c
Disable workaround, as it still makes server crash and hung clients are hidden from players anyway
unc0rr
parents:
7537
diff
changeset
|
617 |
-- when (pq > 1) $ |
31a177d2856c
Disable workaround, as it still makes server crash and hung clients are hidden from players anyway
unc0rr
parents:
7537
diff
changeset
|
618 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 619 |
|
620 |
||
621 |
processAction StatsAction = do |
|
5211 | 622 |
si <- gets serverInfo |
623 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
624 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
625 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
626 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 627 |
where |
628 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
629 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
630 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
631 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
632 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
633 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
634 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
635 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
636 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
637 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
638 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
639 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
640 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
641 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 642 |
|
6012 | 643 |
#if defined(OFFICIAL_SERVER) |
5184 | 644 |
processAction SaveReplay = do |
645 |
ri <- clientRoomA |
|
646 |
rnc <- gets roomsClients |
|
8371 | 647 |
|
5184 | 648 |
io $ do |
649 |
r <- room'sM rnc id ri |
|
650 |
saveReplay r |
|
6012 | 651 |
#else |
652 |
processAction SaveReplay = return () |
|
653 |
#endif |