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