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