author | Ondrej Skopek <skopekondrej@gmail.com> |
Fri, 14 Dec 2012 21:09:07 +0100 | |
changeset 8299 | ef2e284255cd |
parent 8247 | d7cf4a9ce685 |
child 8330 | aaefa587e277 |
child 8369 | 31033e521653 |
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.Sequence as Seq |
|
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) |
5184 | 59 |
| RemoveClientTeams ClientIndex |
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 |
79 |
||
80 |
||
81 |
type CmdHandler = [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
|
82 |
||
83 |
instance NFData Action where |
|
84 |
rnf (AnswerClients chans msg) = chans `deepseq` msg `deepseq` () |
|
85 |
rnf a = a `seq` () |
|
86 |
||
87 |
instance NFData B.ByteString |
|
88 |
instance NFData (Chan a) |
|
89 |
||
90 |
||
91 |
othersChans :: StateT ServerState IO [ClientChan] |
|
92 |
othersChans = do |
|
93 |
cl <- client's id |
|
94 |
ri <- clientRoomA |
|
95 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
96 |
||
97 |
processAction :: Action -> StateT ServerState IO () |
|
98 |
||
99 |
||
100 |
processAction (AnswerClients chans msg) = |
|
101 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
102 |
||
103 |
||
104 |
processAction SendServerMessage = do |
|
105 |
chan <- client's sendChan |
|
106 |
protonum <- client's clientProto |
|
107 |
si <- liftM serverInfo get |
|
108 |
let message = if protonum < latestReleaseVersion si then |
|
109 |
serverMessageForOldVersions si |
|
110 |
else |
|
111 |
serverMessage si |
|
112 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
113 |
||
114 |
||
115 |
processAction SendServerVars = do |
|
116 |
chan <- client's sendChan |
|
117 |
si <- gets serverInfo |
|
118 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
119 |
where |
|
120 |
vars si = [ |
|
121 |
"MOTD_NEW", serverMessage si, |
|
122 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
123 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
124 |
] |
|
125 |
||
126 |
||
127 |
processAction (ProtocolError msg) = do |
|
128 |
chan <- client's sendChan |
|
129 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
130 |
||
131 |
||
132 |
processAction (Warning msg) = do |
|
133 |
chan <- client's sendChan |
|
134 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
135 |
||
136 |
processAction (NoticeMessage n) = do |
|
137 |
chan <- client's sendChan |
|
138 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
139 |
||
140 |
processAction (ByeClient msg) = do |
|
141 |
(Just ci) <- gets clientIndex |
|
142 |
ri <- clientRoomA |
|
143 |
||
144 |
chan <- client's sendChan |
|
145 |
clNick <- client's nick |
|
146 |
loggedIn <- client's logonPassed |
|
147 |
||
148 |
when (ri /= lobbyId) $ do |
|
149 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
150 |
return () |
|
151 |
||
152 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter logonPassed) $! allClientsS |
|
153 |
io $ |
|
154 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
155 |
||
156 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
157 |
||
8158 | 158 |
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
|
159 |
[ |
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
|
160 |
AnswerClients [chan] ["BYE", msg] |
7735
4c7e282b5732
Reset nickname so it may be reused while old connection is still hanging
unc0rr
parents:
7710
diff
changeset
|
161 |
, ModifyClient (\c -> c{nick = "", logonPassed = 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
|
162 |
] |
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
|
163 |
|
5184 | 164 |
s <- get |
165 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
166 |
||
167 |
processAction (DeleteClient ci) = do |
|
168 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
169 |
||
170 |
rnc <- gets roomsClients |
|
171 |
io $ removeClient rnc ci |
|
172 |
||
173 |
s <- get |
|
174 |
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
|
175 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
176 |
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
|
177 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
178 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 179 |
|
180 |
processAction (ModifyClient f) = do |
|
181 |
(Just ci) <- gets clientIndex |
|
182 |
rnc <- gets roomsClients |
|
183 |
io $ modifyClient rnc f ci |
|
184 |
return () |
|
185 |
||
186 |
processAction (ModifyClient2 ci f) = do |
|
187 |
rnc <- gets roomsClients |
|
188 |
io $ modifyClient rnc f ci |
|
189 |
return () |
|
190 |
||
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
191 |
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
|
192 |
rnc <- gets roomsClients |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
193 |
ri <- clientRoomA |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
194 |
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
|
195 |
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
|
196 |
|
5184 | 197 |
|
198 |
processAction (ModifyRoom f) = do |
|
199 |
rnc <- gets roomsClients |
|
200 |
ri <- clientRoomA |
|
201 |
io $ modifyRoom rnc f ri |
|
202 |
return () |
|
203 |
||
204 |
||
205 |
processAction (ModifyServerInfo f) = do |
|
206 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
207 |
si <- gets serverInfo |
|
208 |
io $ writeServerConfig si |
|
209 |
||
210 |
||
211 |
processAction (MoveToRoom ri) = do |
|
212 |
(Just ci) <- gets clientIndex |
|
213 |
rnc <- gets roomsClients |
|
214 |
||
215 |
io $ do |
|
7898 | 216 |
modifyClient rnc (\cl -> cl{teamsInGame = 0, isReady = False, isMaster = False, isInGame = False}) ci |
5184 | 217 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
218 |
moveClientToRoom rnc ri ci |
|
219 |
||
220 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
221 |
clNick <- client's nick |
|
222 |
||
223 |
processAction $ AnswerClients chans ["JOINED", clNick] |
|
224 |
||
225 |
||
226 |
processAction (MoveToLobby msg) = do |
|
227 |
(Just ci) <- gets clientIndex |
|
228 |
ri <- clientRoomA |
|
229 |
rnc <- gets roomsClients |
|
7766 | 230 |
playersNum <- io $ room'sM rnc playersIn ri |
5184 | 231 |
master <- client's isMaster |
232 |
-- client <- client's id |
|
233 |
clNick <- client's nick |
|
234 |
chans <- othersChans |
|
235 |
||
236 |
if master then |
|
7521 | 237 |
if playersNum > 1 then |
8247 | 238 |
mapM_ processAction [ChangeMaster Nothing, NoticeMessage AdminLeft, RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 239 |
else |
240 |
processAction RemoveRoom |
|
241 |
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
|
242 |
mapM_ processAction [RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 243 |
|
244 |
-- 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
|
245 |
ready <- client's isReady |
7521 | 246 |
when (not master || playersNum > 1) . io $ do |
5184 | 247 |
modifyRoom rnc (\r -> r{ |
248 |
playersIn = playersIn r - 1, |
|
249 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
250 |
}) ri |
|
251 |
moveClientToLobby rnc ci |
|
252 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
253 |
|
8247 | 254 |
processAction (ChangeMaster delegateId)= do |
5184 | 255 |
(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
|
256 |
proto <- client's clientProto |
5184 | 257 |
ri <- clientRoomA |
258 |
rnc <- gets roomsClients |
|
8247 | 259 |
newMasterId <- liftM (\ids -> fromMaybe (last . filter (/= ci) $ ids) delegateId) . io $ roomClientsIndicesM rnc ri |
5184 | 260 |
newMaster <- io $ client'sM rnc id newMasterId |
6733 | 261 |
oldRoomName <- io $ room'sM rnc name ri |
7682 | 262 |
oldMaster <- client's nick |
8245 | 263 |
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
|
264 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
8245 | 265 |
let newRoomName = if (proto < 42) || kicked then nick newMaster else oldRoomName |
5184 | 266 |
mapM_ processAction [ |
7775 | 267 |
ModifyRoom (\r -> r{masterID = newMasterId |
268 |
, name = newRoomName |
|
269 |
, isRestrictedJoins = False |
|
270 |
, isRestrictedTeams = False |
|
8232 | 271 |
, isRegisteredOnly = False |
7775 | 272 |
, readyPlayers = if isReady newMaster then readyPlayers r else readyPlayers r + 1}) |
273 |
, ModifyClient2 newMasterId (\c -> c{isMaster = True, isReady = True}) |
|
7682 | 274 |
, AnswerClients [sendChan newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
275 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "-h", oldMaster] |
|
7775 | 276 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+hr", nick newMaster] |
5184 | 277 |
] |
278 |
||
7766 | 279 |
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
|
280 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
7972 | 281 |
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
|
282 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
283 |
|
5184 | 284 |
processAction (AddRoom roomName roomPassword) = do |
285 |
Just clId <- gets clientIndex |
|
286 |
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
|
287 |
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
|
288 |
n <- client's nick |
5184 | 289 |
|
290 |
let rm = newRoom{ |
|
291 |
masterID = clId, |
|
292 |
name = roomName, |
|
293 |
password = roomPassword, |
|
294 |
roomProto = proto |
|
295 |
} |
|
296 |
||
297 |
rId <- io $ addRoom rnc rm |
|
298 |
||
299 |
processAction $ MoveToRoom rId |
|
300 |
||
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
|
301 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 302 |
|
303 |
mapM_ processAction [ |
|
7945
4006d77e1a28
Send notification about 1 player in room on room creation
unc0rr
parents:
7926
diff
changeset
|
304 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo n rm{playersIn = 1}) |
5184 | 305 |
] |
306 |
||
307 |
||
308 |
processAction RemoveRoom = do |
|
309 |
Just clId <- gets clientIndex |
|
310 |
rnc <- gets roomsClients |
|
311 |
ri <- io $ clientRoomM rnc clId |
|
312 |
roomName <- io $ room'sM rnc name ri |
|
313 |
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
|
314 |
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
|
315 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 316 |
|
317 |
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
|
318 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 319 |
AnswerClients others ["ROOMABANDONED", roomName] |
320 |
] |
|
321 |
||
322 |
io $ removeRoom rnc ri |
|
323 |
||
324 |
||
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
325 |
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
|
326 |
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
|
327 |
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
|
328 |
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
|
329 |
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
|
330 |
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
|
331 |
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
|
332 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
7924
351f970c60e1
oops, fix incorrect room owner name in ROOM UPD command
unc0rr
parents:
7921
diff
changeset
|
333 |
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
|
334 |
|
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
335 |
|
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
|
336 |
processAction UnreadyRoomClients = do |
5184 | 337 |
ri <- clientRoomA |
338 |
roomPlayers <- roomClientsS ri |
|
339 |
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
|
340 |
mapM_ processAction [ |
7775 | 341 |
AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr . map nick . filter (not . isMaster) $ roomPlayers |
342 |
, ModifyRoomClients (\cl -> cl{isReady = isMaster cl}) |
|
343 |
, 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
|
344 |
] |
5184 | 345 |
where |
346 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
347 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
348 |
|
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
|
349 |
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
|
350 |
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
|
351 |
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
|
352 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
353 |
answerRemovedTeams <- io $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
354 |
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
|
355 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
356 |
mapM_ processAction $ |
7124 | 357 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
358 |
: 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
|
359 |
(\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
|
360 |
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
|
361 |
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
|
362 |
} |
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
|
363 |
) |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
364 |
: 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
|
365 |
: SendUpdateOnThisRoom |
8241
b15f165c080c
Send "ROUND_FINISHED" to room clients when server thinks so
unc0rr
parents:
8239
diff
changeset
|
366 |
: AnswerClients thisRoomChans ["ROUND_FINISHED"] |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
367 |
: answerRemovedTeams |
5184 | 368 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
369 |
|
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
|
370 |
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
|
371 |
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
|
372 |
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
|
373 |
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
|
374 |
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
|
375 |
gameInfo = liftM (\g -> g{ |
7124 | 376 |
teamsInGameNumber = teamsInGameNumber g - 1 |
377 |
, roundMsgs = roundMsgs g Seq.|> rmTeamMsg |
|
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
|
378 |
}) $ 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
|
379 |
}) |
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 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
381 |
|
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
|
382 |
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
|
383 |
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
|
384 |
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
|
385 |
when (isJust gi && 0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
386 |
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
|
387 |
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
|
388 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
389 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
390 |
|
5184 | 391 |
processAction (RemoveTeam teamName) = do |
392 |
rnc <- gets roomsClients |
|
393 |
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
|
394 |
inGame <- io $ room'sM rnc (isJust . gameInfo) ri |
5184 | 395 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
396 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
397 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
398 |
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
|
399 |
, 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
|
400 |
}) |
7947 | 401 |
: SendUpdateOnThisRoom |
7124 | 402 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
403 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 404 |
|
405 |
||
406 |
processAction (RemoveClientTeams clId) = do |
|
407 |
rnc <- gets roomsClients |
|
408 |
||
409 |
removeTeamActions <- io $ do |
|
410 |
clNick <- client'sM rnc nick clId |
|
411 |
rId <- clientRoomM rnc clId |
|
412 |
roomTeams <- room'sM rnc teams rId |
|
413 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == clNick) $ roomTeams |
|
414 |
||
415 |
mapM_ processAction removeTeamActions |
|
416 |
||
417 |
||
418 |
||
419 |
processAction CheckRegistered = do |
|
420 |
(Just ci) <- gets clientIndex |
|
421 |
n <- client's nick |
|
422 |
h <- client's host |
|
423 |
p <- client's clientProto |
|
424 |
uid <- client's clUID |
|
6191 | 425 |
haveSameNick <- liftM (not . null . tail . filter (\c -> caseInsensitiveCompare (nick c) n)) allClientsS |
5184 | 426 |
if haveSameNick then |
427 |
if p < 38 then |
|
8239 | 428 |
processAction $ ByeClient "Nickname is already in use" |
5184 | 429 |
else |
8239 | 430 |
processAction $ NoticeMessage NickAlreadyInUse |
5184 | 431 |
else |
432 |
do |
|
433 |
db <- gets (dbQueries . serverInfo) |
|
434 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
435 |
return () |
|
436 |
||
437 |
processAction ClearAccountsCache = do |
|
438 |
dbq <- gets (dbQueries . serverInfo) |
|
439 |
io $ writeChan dbq ClearCache |
|
440 |
return () |
|
441 |
||
442 |
||
8189 | 443 |
processAction (ProcessAccountInfo info) = do |
5184 | 444 |
case info of |
445 |
HasAccount passwd isAdmin -> do |
|
8189 | 446 |
b <- isBanned |
447 |
when (not b) $ do |
|
448 |
chan <- client's sendChan |
|
449 |
mapM_ processAction [AnswerClients [chan] ["ASKPASSWORD"], ModifyClient (\c -> c{webPassword = passwd, isAdministrator = isAdmin})] |
|
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 |
5184 | 462 |
|
463 |
||
464 |
processAction JoinLobby = do |
|
465 |
chan <- client's sendChan |
|
466 |
clientNick <- client's nick |
|
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
467 |
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
|
468 |
isAdmin <- client's isAdministrator |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
469 |
loggedInClients <- liftM (Prelude.filter logonPassed) $! allClientsS |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
470 |
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
|
471 |
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
|
472 |
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
|
473 |
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
|
474 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
475 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
476 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
477 |
, [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
|
478 |
, [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
|
479 |
, [AnswerClients (chan : clientsChans) ["CLIENT_FLAGS", B.concat["+" , clFlags], clientNick] | not $ B.null clFlags] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
480 |
, [ModifyClient (\cl -> cl{logonPassed = True})] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
481 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
482 |
] |
5184 | 483 |
|
484 |
||
485 |
processAction (KickClient kickId) = do |
|
486 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 487 |
clHost <- client's host |
488 |
currentTime <- io getCurrentTime |
|
489 |
mapM_ processAction [ |
|
8245 | 490 |
AddIP2Bans clHost "60 seconds cooldown after kick" (addUTCTime 60 currentTime) |
491 |
, ModifyClient (\c -> c{isKickedFromServer = True}) |
|
492 |
, ByeClient "Kicked" |
|
5214 | 493 |
] |
5184 | 494 |
|
495 |
||
496 |
processAction (BanClient seconds reason banId) = do |
|
497 |
modify (\s -> s{clientIndex = Just banId}) |
|
498 |
clHost <- client's host |
|
499 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
500 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 501 |
mapM_ processAction [ |
502 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
503 |
, KickClient banId |
|
504 |
] |
|
505 |
||
8245 | 506 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
507 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
508 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
509 |
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
|
510 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
511 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
512 |
|
8245 | 513 |
|
8154 | 514 |
processAction (BanNick n seconds reason) = do |
515 |
currentTime <- io getCurrentTime |
|
516 |
let msg = |
|
517 |
if seconds > 60 * 60 * 24 * 365 then |
|
518 |
B.concat ["Permanent ban (", reason, ")"] |
|
519 |
else |
|
520 |
B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
|
521 |
processAction $ |
|
522 |
AddNick2Bans n msg (addUTCTime seconds currentTime) |
|
523 |
||
8245 | 524 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
525 |
processAction BanList = do |
8156 | 526 |
time <- io $ getCurrentTime |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
527 |
ch <- client's sendChan |
8156 | 528 |
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
|
529 |
processAction $ |
7766 | 530 |
AnswerClients [ch] ["BANLIST", b] |
8156 | 531 |
where |
532 |
ban2Str time (BanByIP b r t) = ["I", b, r, B.pack . show $ t `diffUTCTime` time] |
|
533 |
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
|
534 |
|
8245 | 535 |
|
7748 | 536 |
processAction (Unban entry) = do |
8156 | 537 |
processAction $ ModifyServerInfo (\s -> s{bans = filter (not . f) $ bans s}) |
7748 | 538 |
where |
539 |
f (BanByIP bip _ _) = bip == entry |
|
540 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 541 |
|
8245 | 542 |
|
5184 | 543 |
processAction (KickRoomClient kickId) = do |
544 |
modify (\s -> s{clientIndex = Just kickId}) |
|
545 |
ch <- client's sendChan |
|
546 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby "kicked"] |
|
547 |
||
548 |
||
549 |
processAction (AddClient cl) = do |
|
550 |
rnc <- gets roomsClients |
|
551 |
si <- gets serverInfo |
|
552 |
newClId <- io $ do |
|
553 |
ci <- addClient rnc cl |
|
554 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
555 |
||
556 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
557 |
||
558 |
return ci |
|
559 |
||
560 |
modify (\s -> s{clientIndex = Just newClId}) |
|
561 |
mapM_ processAction |
|
562 |
[ |
|
563 |
AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
|
8239 | 564 |
, CheckBanned True |
6809 | 565 |
, AddIP2Bans (host cl) "Reconnected too fast" (addUTCTime 10 $ connectTime cl) |
5184 | 566 |
] |
567 |
||
568 |
||
569 |
processAction (AddNick2Bans n reason expiring) = do |
|
570 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
571 |
||
572 |
processAction (AddIP2Bans ip reason expiring) = do |
|
573 |
(Just ci) <- gets clientIndex |
|
574 |
rc <- gets removedClients |
|
575 |
when (not $ ci `Set.member` rc) |
|
576 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
577 |
||
8239 | 578 |
processAction (CheckBanned byIP) = do |
5184 | 579 |
clTime <- client's connectTime |
580 |
clNick <- client's nick |
|
581 |
clHost <- client's host |
|
582 |
si <- gets serverInfo |
|
583 |
let validBans = filter (checkNotExpired clTime) $ bans si |
|
8239 | 584 |
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
|
585 |
mapM_ processAction $ |
5184 | 586 |
ModifyServerInfo (\s -> s{bans = validBans}) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
587 |
: [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
5184 | 588 |
where |
589 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
590 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
8239 | 591 |
checkBan True ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
592 |
checkBan False _ n (BanByNick bn _ _) = caseInsensitiveCompare bn n |
|
593 |
checkBan _ _ _ _ = False |
|
5184 | 594 |
getBanReason (BanByIP _ msg _) = msg |
595 |
getBanReason (BanByNick _ msg _) = msg |
|
596 |
||
597 |
processAction PingAll = do |
|
598 |
rnc <- gets roomsClients |
|
599 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
600 |
cis <- io $ allClientsM rnc |
|
601 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
602 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
603 |
processAction $ AnswerClients chans ["PING"] |
|
604 |
where |
|
605 |
kickTimeouted rnc ci = do |
|
606 |
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
|
607 |
when (pq > 0) $ do |
5184 | 608 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
609 |
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
|
610 |
-- 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
|
611 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 612 |
|
613 |
||
614 |
processAction StatsAction = do |
|
5211 | 615 |
si <- gets serverInfo |
616 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
617 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
618 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
619 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 620 |
where |
621 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
622 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
623 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
624 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
625 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
626 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
627 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
628 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
629 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
630 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
631 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
632 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
633 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
634 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 635 |
|
6012 | 636 |
#if defined(OFFICIAL_SERVER) |
5184 | 637 |
processAction SaveReplay = do |
638 |
ri <- clientRoomA |
|
639 |
rnc <- gets roomsClients |
|
640 |
io $ do |
|
641 |
r <- room'sM rnc id ri |
|
642 |
saveReplay r |
|
6012 | 643 |
#else |
644 |
processAction SaveReplay = return () |
|
645 |
#endif |