author | unc0rr |
Sun, 05 Aug 2012 23:03:49 +0400 | |
changeset 7498 | 86984f6fa1b9 |
parent 7465 | c2dcf97ca664 |
child 7521 | 093ea41051c5 |
permissions | -rw-r--r-- |
6012 | 1 |
{-# LANGUAGE CPP, OverloadedStrings #-} |
5184 | 2 |
module Actions where |
3 |
||
4 |
import Control.Concurrent |
|
5 |
import qualified Data.Set as Set |
|
6 |
import qualified Data.Sequence as Seq |
|
7 |
import qualified Data.List as L |
|
8 |
import qualified Control.Exception as Exception |
|
9 |
import System.Log.Logger |
|
10 |
import Control.Monad |
|
11 |
import Data.Time |
|
12 |
import Data.Maybe |
|
13 |
import Control.Monad.Reader |
|
14 |
import Control.Monad.State.Strict |
|
15 |
import qualified Data.ByteString.Char8 as B |
|
16 |
import Control.DeepSeq |
|
17 |
import Data.Unique |
|
18 |
import Control.Arrow |
|
19 |
import Control.Exception |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
20 |
import System.Process |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
21 |
import Network.Socket |
5184 | 22 |
----------------------------- |
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
|
23 |
import OfficialServer.GameReplayStore |
5184 | 24 |
import CoreTypes |
25 |
import Utils |
|
26 |
import ClientIO |
|
27 |
import ServerState |
|
28 |
import Consts |
|
29 |
import ConfigFile |
|
6068 | 30 |
import EngineInteraction |
5184 | 31 |
|
32 |
data Action = |
|
33 |
AnswerClients ![ClientChan] ![B.ByteString] |
|
34 |
| SendServerMessage |
|
35 |
| SendServerVars |
|
36 |
| MoveToRoom RoomIndex |
|
37 |
| MoveToLobby B.ByteString |
|
38 |
| 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
|
39 |
| SendTeamRemovalMessage B.ByteString |
5184 | 40 |
| 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
|
41 |
| FinishGame |
5184 | 42 |
| UnreadyRoomClients |
43 |
| JoinLobby |
|
44 |
| ProtocolError B.ByteString |
|
45 |
| Warning B.ByteString |
|
46 |
| NoticeMessage Notice |
|
47 |
| ByeClient B.ByteString |
|
48 |
| KickClient ClientIndex |
|
49 |
| KickRoomClient ClientIndex |
|
50 |
| BanClient NominalDiffTime B.ByteString ClientIndex |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
51 |
| BanIP B.ByteString NominalDiffTime B.ByteString |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
52 |
| BanList |
5184 | 53 |
| ChangeMaster |
54 |
| RemoveClientTeams ClientIndex |
|
55 |
| ModifyClient (ClientInfo -> ClientInfo) |
|
56 |
| ModifyClient2 ClientIndex (ClientInfo -> ClientInfo) |
|
57 |
| ModifyRoom (RoomInfo -> RoomInfo) |
|
58 |
| ModifyServerInfo (ServerInfo -> ServerInfo) |
|
59 |
| AddRoom B.ByteString B.ByteString |
|
60 |
| CheckRegistered |
|
61 |
| ClearAccountsCache |
|
62 |
| ProcessAccountInfo AccountInfo |
|
63 |
| AddClient ClientInfo |
|
64 |
| DeleteClient ClientIndex |
|
65 |
| PingAll |
|
66 |
| StatsAction |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
67 |
| RestartServer |
5184 | 68 |
| AddNick2Bans B.ByteString B.ByteString UTCTime |
69 |
| AddIP2Bans B.ByteString B.ByteString UTCTime |
|
70 |
| CheckBanned |
|
71 |
| SaveReplay |
|
72 |
||
73 |
||
74 |
type CmdHandler = [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
|
75 |
||
76 |
instance NFData Action where |
|
77 |
rnf (AnswerClients chans msg) = chans `deepseq` msg `deepseq` () |
|
78 |
rnf a = a `seq` () |
|
79 |
||
80 |
instance NFData B.ByteString |
|
81 |
instance NFData (Chan a) |
|
82 |
||
83 |
||
84 |
othersChans :: StateT ServerState IO [ClientChan] |
|
85 |
othersChans = do |
|
86 |
cl <- client's id |
|
87 |
ri <- clientRoomA |
|
88 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
89 |
||
90 |
processAction :: Action -> StateT ServerState IO () |
|
91 |
||
92 |
||
93 |
processAction (AnswerClients chans msg) = |
|
94 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
95 |
||
96 |
||
97 |
processAction SendServerMessage = do |
|
98 |
chan <- client's sendChan |
|
99 |
protonum <- client's clientProto |
|
100 |
si <- liftM serverInfo get |
|
101 |
let message = if protonum < latestReleaseVersion si then |
|
102 |
serverMessageForOldVersions si |
|
103 |
else |
|
104 |
serverMessage si |
|
105 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
106 |
||
107 |
||
108 |
processAction SendServerVars = do |
|
109 |
chan <- client's sendChan |
|
110 |
si <- gets serverInfo |
|
111 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
112 |
where |
|
113 |
vars si = [ |
|
114 |
"MOTD_NEW", serverMessage si, |
|
115 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
116 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
117 |
] |
|
118 |
||
119 |
||
120 |
processAction (ProtocolError msg) = do |
|
121 |
chan <- client's sendChan |
|
122 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
123 |
||
124 |
||
125 |
processAction (Warning msg) = do |
|
126 |
chan <- client's sendChan |
|
127 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
128 |
||
129 |
processAction (NoticeMessage n) = do |
|
130 |
chan <- client's sendChan |
|
131 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
132 |
||
133 |
processAction (ByeClient msg) = do |
|
134 |
(Just ci) <- gets clientIndex |
|
135 |
ri <- clientRoomA |
|
136 |
||
137 |
chan <- client's sendChan |
|
138 |
clNick <- client's nick |
|
139 |
loggedIn <- client's logonPassed |
|
140 |
||
141 |
when (ri /= lobbyId) $ do |
|
142 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
143 |
return () |
|
144 |
||
145 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter logonPassed) $! allClientsS |
|
146 |
io $ |
|
147 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
148 |
||
149 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
150 |
||
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
|
151 |
mapM processAction |
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
|
152 |
[ |
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
|
153 |
AnswerClients [chan] ["BYE", msg] |
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
|
154 |
, ModifyClient (\c -> c{logonPassed = False}) -- this will effectively hide client from others while he isn't deleted from list |
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
|
155 |
] |
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
|
156 |
|
5184 | 157 |
s <- get |
158 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
159 |
||
160 |
processAction (DeleteClient ci) = do |
|
161 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
162 |
||
163 |
rnc <- gets roomsClients |
|
164 |
io $ removeClient rnc ci |
|
165 |
||
166 |
s <- get |
|
167 |
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
|
168 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
169 |
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
|
170 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
171 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 172 |
|
173 |
processAction (ModifyClient f) = do |
|
174 |
(Just ci) <- gets clientIndex |
|
175 |
rnc <- gets roomsClients |
|
176 |
io $ modifyClient rnc f ci |
|
177 |
return () |
|
178 |
||
179 |
processAction (ModifyClient2 ci f) = do |
|
180 |
rnc <- gets roomsClients |
|
181 |
io $ modifyClient rnc f ci |
|
182 |
return () |
|
183 |
||
184 |
||
185 |
processAction (ModifyRoom f) = do |
|
186 |
rnc <- gets roomsClients |
|
187 |
ri <- clientRoomA |
|
188 |
io $ modifyRoom rnc f ri |
|
189 |
return () |
|
190 |
||
191 |
||
192 |
processAction (ModifyServerInfo f) = do |
|
193 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
194 |
si <- gets serverInfo |
|
195 |
io $ writeServerConfig si |
|
196 |
||
197 |
||
198 |
processAction (MoveToRoom ri) = do |
|
199 |
(Just ci) <- gets clientIndex |
|
200 |
rnc <- gets roomsClients |
|
201 |
||
202 |
io $ do |
|
203 |
modifyClient rnc (\cl -> cl{teamsInGame = 0, isReady = False, isMaster = False}) ci |
|
204 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
|
205 |
moveClientToRoom rnc ri ci |
|
206 |
||
207 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
208 |
clNick <- client's nick |
|
209 |
||
210 |
processAction $ AnswerClients chans ["JOINED", clNick] |
|
211 |
||
212 |
||
213 |
processAction (MoveToLobby msg) = do |
|
214 |
(Just ci) <- gets clientIndex |
|
215 |
ri <- clientRoomA |
|
216 |
rnc <- gets roomsClients |
|
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
|
217 |
(gameProgress, playersNum) <- io $ room'sM rnc ((isJust . gameInfo) &&& playersIn) ri |
5184 | 218 |
master <- client's isMaster |
219 |
-- client <- client's id |
|
220 |
clNick <- client's nick |
|
221 |
chans <- othersChans |
|
222 |
||
223 |
if master then |
|
224 |
if gameProgress && playersNum > 1 then |
|
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
|
225 |
mapM_ processAction [ChangeMaster, NoticeMessage AdminLeft, RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 226 |
else |
227 |
processAction RemoveRoom |
|
228 |
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
|
229 |
mapM_ processAction [RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 230 |
|
231 |
-- 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
|
232 |
ready <- client's isReady |
5184 | 233 |
when (not master || (gameProgress && playersNum > 1)) . io $ do |
234 |
modifyRoom rnc (\r -> r{ |
|
235 |
playersIn = playersIn r - 1, |
|
236 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
237 |
}) ri |
|
238 |
moveClientToLobby rnc ci |
|
239 |
||
240 |
processAction ChangeMaster = do |
|
241 |
(Just ci) <- gets clientIndex |
|
242 |
ri <- clientRoomA |
|
243 |
rnc <- gets roomsClients |
|
244 |
newMasterId <- liftM (head . filter (/= ci)) . io $ roomClientsIndicesM rnc ri |
|
245 |
newMaster <- io $ client'sM rnc id newMasterId |
|
6733 | 246 |
oldRoomName <- io $ room'sM rnc name ri |
5184 | 247 |
let newRoomName = nick newMaster |
248 |
mapM_ processAction [ |
|
249 |
ModifyRoom (\r -> r{masterID = newMasterId, name = newRoomName}), |
|
250 |
ModifyClient2 newMasterId (\c -> c{isMaster = True}), |
|
251 |
AnswerClients [sendChan newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
|
252 |
] |
|
253 |
||
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
|
254 |
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
|
255 |
newRoom <- io $ room'sM rnc id ri |
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
|
256 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
6733 | 257 |
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
|
258 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
259 |
|
5184 | 260 |
processAction (AddRoom roomName roomPassword) = do |
261 |
Just clId <- gets clientIndex |
|
262 |
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
|
263 |
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
|
264 |
n <- client's nick |
5184 | 265 |
|
266 |
let rm = newRoom{ |
|
267 |
masterID = clId, |
|
268 |
name = roomName, |
|
269 |
password = roomPassword, |
|
270 |
roomProto = proto |
|
271 |
} |
|
272 |
||
273 |
rId <- io $ addRoom rnc rm |
|
274 |
||
275 |
processAction $ MoveToRoom rId |
|
276 |
||
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
|
277 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 278 |
|
279 |
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
|
280 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo n rm) |
5184 | 281 |
, ModifyClient (\cl -> cl{isMaster = True}) |
282 |
] |
|
283 |
||
284 |
||
285 |
processAction RemoveRoom = do |
|
286 |
Just clId <- gets clientIndex |
|
287 |
rnc <- gets roomsClients |
|
288 |
ri <- io $ clientRoomM rnc clId |
|
289 |
roomName <- io $ room'sM rnc name ri |
|
290 |
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
|
291 |
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
|
292 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 293 |
|
294 |
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
|
295 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 296 |
AnswerClients others ["ROOMABANDONED", roomName] |
297 |
] |
|
298 |
||
299 |
io $ removeRoom rnc ri |
|
300 |
||
301 |
||
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
|
302 |
processAction UnreadyRoomClients = do |
5184 | 303 |
rnc <- gets roomsClients |
304 |
ri <- clientRoomA |
|
305 |
roomPlayers <- roomClientsS ri |
|
306 |
roomClIDs <- io $ roomClientsIndicesM rnc ri |
|
307 |
pr <- client's clientProto |
|
308 |
processAction $ AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr (map nick roomPlayers) |
|
309 |
io $ mapM_ (modifyClient rnc (\cl -> cl{isReady = False})) roomClIDs |
|
310 |
processAction $ ModifyRoom (\r -> r{readyPlayers = 0}) |
|
311 |
where |
|
312 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
313 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
314 |
|
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
|
315 |
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
|
316 |
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
|
317 |
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
|
318 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
319 |
clNick <- client's nick |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
320 |
answerRemovedTeams <- io $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
321 |
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
|
322 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
323 |
mapM_ processAction $ |
7124 | 324 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
325 |
: 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
|
326 |
(\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
|
327 |
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
|
328 |
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
|
329 |
} |
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 |
) |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
331 |
: UnreadyRoomClients |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
332 |
: answerRemovedTeams |
5184 | 333 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
334 |
|
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 |
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
|
336 |
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
|
337 |
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
|
338 |
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
|
339 |
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
|
340 |
gameInfo = liftM (\g -> g{ |
7124 | 341 |
teamsInGameNumber = teamsInGameNumber g - 1 |
342 |
, roundMsgs = roundMsgs g Seq.|> rmTeamMsg |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
343 |
}) $ 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
|
344 |
}) |
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
|
345 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
346 |
|
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
|
347 |
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
|
348 |
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
|
349 |
gi <- io $ room'sM rnc gameInfo ri |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
350 |
when (isJust gi && 0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
351 |
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
|
352 |
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
|
353 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
354 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
355 |
|
5184 | 356 |
processAction (RemoveTeam teamName) = do |
357 |
rnc <- gets roomsClients |
|
358 |
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
|
359 |
inGame <- io $ room'sM rnc (isJust . gameInfo) ri |
5184 | 360 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
361 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
362 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
363 |
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
|
364 |
, 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
|
365 |
}) |
7124 | 366 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
367 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 368 |
|
369 |
||
370 |
processAction (RemoveClientTeams clId) = do |
|
371 |
rnc <- gets roomsClients |
|
372 |
||
373 |
removeTeamActions <- io $ do |
|
374 |
clNick <- client'sM rnc nick clId |
|
375 |
rId <- clientRoomM rnc clId |
|
376 |
roomTeams <- room'sM rnc teams rId |
|
377 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == clNick) $ roomTeams |
|
378 |
||
379 |
mapM_ processAction removeTeamActions |
|
380 |
||
381 |
||
382 |
||
383 |
processAction CheckRegistered = do |
|
384 |
(Just ci) <- gets clientIndex |
|
385 |
n <- client's nick |
|
386 |
h <- client's host |
|
387 |
p <- client's clientProto |
|
388 |
uid <- client's clUID |
|
6191 | 389 |
haveSameNick <- liftM (not . null . tail . filter (\c -> caseInsensitiveCompare (nick c) n)) allClientsS |
5184 | 390 |
if haveSameNick then |
391 |
if p < 38 then |
|
392 |
mapM_ processAction [ByeClient "Nickname is already in use", removeNick] |
|
393 |
else |
|
394 |
mapM_ processAction [NoticeMessage NickAlreadyInUse, removeNick] |
|
395 |
else |
|
396 |
do |
|
397 |
db <- gets (dbQueries . serverInfo) |
|
398 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
399 |
return () |
|
400 |
where |
|
401 |
removeNick = ModifyClient (\c -> c{nick = ""}) |
|
402 |
||
403 |
||
404 |
processAction ClearAccountsCache = do |
|
405 |
dbq <- gets (dbQueries . serverInfo) |
|
406 |
io $ writeChan dbq ClearCache |
|
407 |
return () |
|
408 |
||
409 |
||
410 |
processAction (ProcessAccountInfo info) = |
|
411 |
case info of |
|
412 |
HasAccount passwd isAdmin -> do |
|
413 |
chan <- client's sendChan |
|
414 |
mapM_ processAction [AnswerClients [chan] ["ASKPASSWORD"], ModifyClient (\c -> c{webPassword = passwd, isAdministrator = isAdmin})] |
|
415 |
Guest -> |
|
416 |
processAction JoinLobby |
|
417 |
Admin -> do |
|
418 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
|
419 |
chan <- client's sendChan |
|
420 |
processAction $ AnswerClients [chan] ["ADMIN_ACCESS"] |
|
421 |
||
422 |
||
423 |
processAction JoinLobby = do |
|
424 |
chan <- client's sendChan |
|
425 |
clientNick <- client's nick |
|
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
426 |
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
|
427 |
isAdmin <- client's isAdministrator |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
428 |
loggedInClients <- liftM (Prelude.filter logonPassed) $! allClientsS |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
429 |
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
|
430 |
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
|
431 |
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
|
432 |
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
|
433 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
434 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
435 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
436 |
, [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
|
437 |
, [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
|
438 |
, [AnswerClients (chan : clientsChans) ["CLIENT_FLAGS", B.concat["+" , clFlags], clientNick] | not $ B.null clFlags] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
439 |
, [ModifyClient (\cl -> cl{logonPassed = True})] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
440 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
441 |
] |
5184 | 442 |
|
443 |
||
444 |
processAction (KickClient kickId) = do |
|
445 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 446 |
clHost <- client's host |
447 |
currentTime <- io getCurrentTime |
|
448 |
mapM_ processAction [ |
|
449 |
AddIP2Bans clHost "60 seconds cooldown after kick" (addUTCTime 60 currentTime), |
|
450 |
ByeClient "Kicked" |
|
451 |
] |
|
5184 | 452 |
|
453 |
||
454 |
processAction (BanClient seconds reason banId) = do |
|
455 |
modify (\s -> s{clientIndex = Just banId}) |
|
456 |
clHost <- client's host |
|
457 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
458 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 459 |
mapM_ processAction [ |
460 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
461 |
, KickClient banId |
|
462 |
] |
|
463 |
||
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
464 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
465 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
466 |
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
|
467 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
468 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
469 |
|
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
470 |
processAction BanList = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
471 |
ch <- client's sendChan |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
472 |
bans <- gets (bans . serverInfo) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
473 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
474 |
AnswerClients [ch] ["BANLIST", B.pack $ show bans] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
475 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
476 |
|
5184 | 477 |
|
478 |
processAction (KickRoomClient kickId) = do |
|
479 |
modify (\s -> s{clientIndex = Just kickId}) |
|
480 |
ch <- client's sendChan |
|
481 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby "kicked"] |
|
482 |
||
483 |
||
484 |
processAction (AddClient cl) = do |
|
485 |
rnc <- gets roomsClients |
|
486 |
si <- gets serverInfo |
|
487 |
newClId <- io $ do |
|
488 |
ci <- addClient rnc cl |
|
489 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
490 |
||
491 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
492 |
||
493 |
return ci |
|
494 |
||
495 |
modify (\s -> s{clientIndex = Just newClId}) |
|
496 |
mapM_ processAction |
|
497 |
[ |
|
498 |
AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
|
499 |
, CheckBanned |
|
6809 | 500 |
, AddIP2Bans (host cl) "Reconnected too fast" (addUTCTime 10 $ connectTime cl) |
5184 | 501 |
] |
502 |
||
503 |
||
504 |
processAction (AddNick2Bans n reason expiring) = do |
|
505 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
506 |
||
507 |
processAction (AddIP2Bans ip reason expiring) = do |
|
508 |
(Just ci) <- gets clientIndex |
|
509 |
rc <- gets removedClients |
|
510 |
when (not $ ci `Set.member` rc) |
|
511 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
512 |
||
513 |
processAction CheckBanned = do |
|
514 |
clTime <- client's connectTime |
|
515 |
clNick <- client's nick |
|
516 |
clHost <- client's host |
|
517 |
si <- gets serverInfo |
|
518 |
let validBans = filter (checkNotExpired clTime) $ bans si |
|
519 |
let ban = L.find (checkBan clHost clNick) $ validBans |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
520 |
mapM_ processAction $ |
5184 | 521 |
ModifyServerInfo (\s -> s{bans = validBans}) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
522 |
: [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
5184 | 523 |
where |
524 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
525 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
526 |
checkBan ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
5184 | 527 |
checkBan _ n (BanByNick bn _ _) = bn == n |
528 |
getBanReason (BanByIP _ msg _) = msg |
|
529 |
getBanReason (BanByNick _ msg _) = msg |
|
530 |
||
531 |
processAction PingAll = do |
|
532 |
rnc <- gets roomsClients |
|
533 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
534 |
cis <- io $ allClientsM rnc |
|
535 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
536 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
537 |
processAction $ AnswerClients chans ["PING"] |
|
538 |
where |
|
539 |
kickTimeouted rnc ci = do |
|
540 |
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
|
541 |
when (pq > 0) $ do |
5184 | 542 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
543 |
processAction (ByeClient "Ping timeout") |
|
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
|
544 |
when (pq > 1) $ |
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
|
545 |
processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 546 |
|
547 |
||
548 |
processAction StatsAction = do |
|
5211 | 549 |
si <- gets serverInfo |
550 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
551 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
552 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
553 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 554 |
where |
555 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
556 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
557 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
558 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
559 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
560 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
561 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
562 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
563 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
564 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
565 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
566 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
567 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
568 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 569 |
|
6012 | 570 |
#if defined(OFFICIAL_SERVER) |
5184 | 571 |
processAction SaveReplay = do |
572 |
ri <- clientRoomA |
|
573 |
rnc <- gets roomsClients |
|
574 |
io $ do |
|
575 |
r <- room'sM rnc id ri |
|
576 |
saveReplay r |
|
6012 | 577 |
#else |
578 |
processAction SaveReplay = return () |
|
579 |
#endif |