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