author | unc0rr |
Mon, 28 Apr 2014 19:01:08 +0400 | |
changeset 10231 | b2a68e75e55c |
parent 10216 | 6928a323097f |
child 10259 | c85d241d9cc9 |
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 |
|
9448 | 20 |
import Control.Exception as E |
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 |
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
23 |
import System.Random |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
24 |
import qualified Data.Traversable as DT |
5184 | 25 |
----------------------------- |
7766 | 26 |
#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
|
27 |
import OfficialServer.GameReplayStore |
7766 | 28 |
#endif |
5184 | 29 |
import CoreTypes |
30 |
import Utils |
|
31 |
import ClientIO |
|
32 |
import ServerState |
|
33 |
import Consts |
|
34 |
import ConfigFile |
|
6068 | 35 |
import EngineInteraction |
10092 | 36 |
import FloodDetection |
10212 | 37 |
import HWProtoCore |
10216 | 38 |
import Votes |
5184 | 39 |
|
40 |
othersChans :: StateT ServerState IO [ClientChan] |
|
41 |
othersChans = do |
|
42 |
cl <- client's id |
|
43 |
ri <- clientRoomA |
|
44 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
45 |
||
46 |
processAction :: Action -> StateT ServerState IO () |
|
47 |
||
48 |
||
49 |
processAction (AnswerClients chans msg) = |
|
50 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
51 |
||
52 |
||
53 |
processAction SendServerMessage = do |
|
54 |
chan <- client's sendChan |
|
55 |
protonum <- client's clientProto |
|
56 |
si <- liftM serverInfo get |
|
57 |
let message = if protonum < latestReleaseVersion si then |
|
58 |
serverMessageForOldVersions si |
|
59 |
else |
|
60 |
serverMessage si |
|
61 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
62 |
||
63 |
||
64 |
processAction SendServerVars = do |
|
65 |
chan <- client's sendChan |
|
66 |
si <- gets serverInfo |
|
67 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
68 |
where |
|
69 |
vars si = [ |
|
70 |
"MOTD_NEW", serverMessage si, |
|
71 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
72 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
73 |
] |
|
74 |
||
75 |
||
76 |
processAction (ProtocolError msg) = do |
|
77 |
chan <- client's sendChan |
|
78 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
79 |
||
80 |
||
81 |
processAction (Warning msg) = do |
|
82 |
chan <- client's sendChan |
|
83 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
84 |
||
85 |
processAction (NoticeMessage n) = do |
|
86 |
chan <- client's sendChan |
|
87 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
88 |
||
89 |
processAction (ByeClient msg) = do |
|
90 |
(Just ci) <- gets clientIndex |
|
91 |
ri <- clientRoomA |
|
92 |
||
93 |
chan <- client's sendChan |
|
94 |
clNick <- client's nick |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
95 |
loggedIn <- client's isVisible |
5184 | 96 |
|
97 |
when (ri /= lobbyId) $ do |
|
98 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
99 |
return () |
|
100 |
||
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
101 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 102 |
io $ |
103 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
104 |
||
105 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
106 |
||
8158 | 107 |
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
|
108 |
[ |
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
|
109 |
AnswerClients [chan] ["BYE", msg] |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
110 |
, 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
|
111 |
] |
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
|
112 |
|
5184 | 113 |
s <- get |
114 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
115 |
||
116 |
processAction (DeleteClient ci) = do |
|
117 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
118 |
||
119 |
rnc <- gets roomsClients |
|
120 |
io $ removeClient rnc ci |
|
121 |
||
122 |
s <- get |
|
123 |
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
|
124 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
125 |
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
|
126 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
127 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 128 |
|
129 |
processAction (ModifyClient f) = do |
|
130 |
(Just ci) <- gets clientIndex |
|
131 |
rnc <- gets roomsClients |
|
132 |
io $ modifyClient rnc f ci |
|
133 |
return () |
|
134 |
||
135 |
processAction (ModifyClient2 ci f) = do |
|
136 |
rnc <- gets roomsClients |
|
137 |
io $ modifyClient rnc f ci |
|
138 |
return () |
|
139 |
||
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
140 |
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
|
141 |
rnc <- gets roomsClients |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
142 |
ri <- clientRoomA |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
143 |
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
|
144 |
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
|
145 |
|
5184 | 146 |
|
147 |
processAction (ModifyRoom f) = do |
|
148 |
rnc <- gets roomsClients |
|
149 |
ri <- clientRoomA |
|
150 |
io $ modifyRoom rnc f ri |
|
151 |
return () |
|
152 |
||
153 |
||
154 |
processAction (ModifyServerInfo f) = do |
|
155 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
156 |
si <- gets serverInfo |
|
157 |
io $ writeServerConfig si |
|
158 |
||
159 |
||
160 |
processAction (MoveToRoom ri) = do |
|
161 |
(Just ci) <- gets clientIndex |
|
162 |
rnc <- gets roomsClients |
|
163 |
||
164 |
io $ do |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
165 |
modifyClient rnc ( |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
166 |
\cl -> cl{teamsInGame = 0 |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
167 |
, isReady = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
168 |
, isMaster = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
169 |
, isInGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
170 |
, isJoinedMidGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
171 |
, clientClan = Nothing}) ci |
5184 | 172 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
173 |
moveClientToRoom rnc ri ci |
|
174 |
||
175 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
176 |
clNick <- client's nick |
|
9193 | 177 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 178 |
|
9193 | 179 |
mapM_ processAction [ |
180 |
AnswerClients chans ["JOINED", clNick] |
|
181 |
, AnswerClients allClientsChans ["CLIENT_FLAGS", "+i", clNick] |
|
10095 | 182 |
, RegisterEvent RoomJoin |
9193 | 183 |
] |
5184 | 184 |
|
185 |
||
186 |
processAction (MoveToLobby msg) = do |
|
187 |
(Just ci) <- gets clientIndex |
|
188 |
ri <- clientRoomA |
|
189 |
rnc <- gets roomsClients |
|
7766 | 190 |
playersNum <- io $ room'sM rnc playersIn ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
191 |
specialRoom <- io $ room'sM rnc isSpecial ri |
5184 | 192 |
master <- client's isMaster |
193 |
-- client <- client's id |
|
194 |
clNick <- client's nick |
|
195 |
chans <- othersChans |
|
196 |
||
197 |
if master then |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
198 |
if (playersNum > 1) || specialRoom then |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
199 |
mapM_ processAction [ChangeMaster Nothing, NoticeMessage AdminLeft, RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 200 |
else |
201 |
processAction RemoveRoom |
|
202 |
else |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
203 |
mapM_ processAction [RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 204 |
|
9193 | 205 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
206 |
processAction $ AnswerClients allClientsChans ["CLIENT_FLAGS", "-i", clNick] |
|
207 |
||
5184 | 208 |
-- 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
|
209 |
ready <- client's isReady |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
210 |
when (not master || playersNum > 1 || specialRoom) . io $ do |
5184 | 211 |
modifyRoom rnc (\r -> r{ |
212 |
playersIn = playersIn r - 1, |
|
213 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
214 |
}) ri |
|
215 |
moveClientToLobby rnc ci |
|
216 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
217 |
|
8247 | 218 |
processAction (ChangeMaster delegateId)= do |
5184 | 219 |
(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
|
220 |
proto <- client's clientProto |
5184 | 221 |
ri <- clientRoomA |
222 |
rnc <- gets roomsClients |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
223 |
specialRoom <- io $ room'sM rnc isSpecial ri |
10056
cb9e07753802
Don't delegate special room to another player when owner quits
unc0rr
parents:
10017
diff
changeset
|
224 |
newMasterId <- if specialRoom then |
10058 | 225 |
return delegateId |
10056
cb9e07753802
Don't delegate special room to another player when owner quits
unc0rr
parents:
10017
diff
changeset
|
226 |
else |
cb9e07753802
Don't delegate special room to another player when owner quits
unc0rr
parents:
10017
diff
changeset
|
227 |
liftM (\ids -> fromMaybe (listToMaybe . reverse . filter (/= ci) $ ids) $ liftM Just delegateId) . io $ roomClientsIndicesM rnc ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
228 |
newMaster <- io $ client'sM rnc id `DT.mapM` newMasterId |
9062
a65492ca1587
Fix room admin rights delegation by server admin when he isn't room admin
unc0rr
parents:
9060
diff
changeset
|
229 |
oldMasterId <- io $ room'sM rnc masterID ri |
6733 | 230 |
oldRoomName <- io $ room'sM rnc name ri |
8245 | 231 |
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
|
232 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
233 |
let newRoomName = if ((proto < 42) || kicked) && (not specialRoom) then maybeNick newMaster else oldRoomName |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
234 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
235 |
when (isJust oldMasterId) $ do |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
236 |
oldMasterNick <- io $ client'sM rnc nick (fromJust oldMasterId) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
237 |
mapM_ processAction [ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
238 |
ModifyClient2 (fromJust oldMasterId) (\c -> c{isMaster = False}) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
239 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "-h", oldMasterNick] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
240 |
] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
241 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
242 |
when (isJust newMasterId) $ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
243 |
mapM_ processAction [ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
244 |
ModifyClient2 (fromJust newMasterId) (\c -> c{isMaster = True}) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
245 |
, AnswerClients [sendChan $ fromJust newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
246 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+h", nick $ fromJust newMaster] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
247 |
] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
248 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
249 |
processAction $ |
7775 | 250 |
ModifyRoom (\r -> r{masterID = newMasterId |
251 |
, name = newRoomName |
|
252 |
, isRestrictedJoins = False |
|
253 |
, isRestrictedTeams = False |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
254 |
, isRegisteredOnly = isSpecial r} |
8983 | 255 |
) |
5184 | 256 |
|
7766 | 257 |
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
|
258 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
259 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : oldRoomName : roomInfo proto (maybeNick 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
|
260 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
261 |
|
5184 | 262 |
processAction (AddRoom roomName roomPassword) = do |
263 |
Just clId <- gets clientIndex |
|
264 |
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
|
265 |
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
|
266 |
n <- client's nick |
5184 | 267 |
|
268 |
let rm = newRoom{ |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
269 |
masterID = Just clId, |
5184 | 270 |
name = roomName, |
271 |
password = roomPassword, |
|
272 |
roomProto = proto |
|
273 |
} |
|
274 |
||
275 |
rId <- io $ addRoom rnc rm |
|
276 |
||
277 |
processAction $ MoveToRoom rId |
|
278 |
||
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
|
279 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 280 |
|
281 |
mapM_ processAction [ |
|
9702 | 282 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo proto n rm{playersIn = 1}) |
5184 | 283 |
] |
284 |
||
285 |
||
286 |
processAction RemoveRoom = do |
|
287 |
Just clId <- gets clientIndex |
|
288 |
rnc <- gets roomsClients |
|
289 |
ri <- io $ clientRoomM rnc clId |
|
290 |
roomName <- io $ room'sM rnc name ri |
|
291 |
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
|
292 |
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
|
293 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 294 |
|
295 |
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
|
296 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 297 |
AnswerClients others ["ROOMABANDONED", roomName] |
298 |
] |
|
299 |
||
300 |
io $ removeRoom rnc ri |
|
301 |
||
302 |
||
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
303 |
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
|
304 |
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
|
305 |
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
|
306 |
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
|
307 |
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
|
308 |
rm <- io $ room'sM rnc id ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
309 |
masterCl <- io $ client'sM rnc id `DT.mapM` (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
|
310 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
311 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : name rm : roomInfo proto (maybeNick masterCl) 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
|
312 |
|
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
313 |
|
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
|
314 |
processAction UnreadyRoomClients = do |
5184 | 315 |
ri <- clientRoomA |
316 |
roomPlayers <- roomClientsS ri |
|
317 |
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
|
318 |
mapM_ processAction [ |
7775 | 319 |
AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr . map nick . filter (not . isMaster) $ roomPlayers |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
320 |
, ModifyRoomClients (\cl -> cl{isReady = isMaster cl, isJoinedMidGame = False}) |
7775 | 321 |
, 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
|
322 |
] |
5184 | 323 |
where |
324 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
325 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
326 |
|
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
|
327 |
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
|
328 |
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
|
329 |
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
|
330 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
331 |
joinedMidGame <- liftM (filter isJoinedMidGame) $ roomClientsS ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
332 |
answerRemovedTeams <- io $ |
10017 | 333 |
room'sM rnc (\r -> let gi = fromJust $ gameInfo r in |
334 |
concatMap (\c -> |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
335 |
(answerFullConfigParams c (mapParams r) (params r)) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
336 |
++ |
10017 | 337 |
(map (\t -> AnswerClients [sendChan c] ["REMOVE_TEAM", t]) $ leftTeams gi) |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
338 |
) joinedMidGame |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
339 |
) ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
340 |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
341 |
mapM_ processAction $ ( |
7124 | 342 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
343 |
: 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
|
344 |
(\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
|
345 |
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
|
346 |
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
|
347 |
} |
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 |
) |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
349 |
: SendUpdateOnThisRoom |
8241
b15f165c080c
Send "ROUND_FINISHED" to room clients when server thinks so
unc0rr
parents:
8239
diff
changeset
|
350 |
: AnswerClients thisRoomChans ["ROUND_FINISHED"] |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
351 |
: answerRemovedTeams |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
352 |
) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
353 |
++ [UnreadyRoomClients] |
5184 | 354 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
355 |
|
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
|
356 |
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
|
357 |
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
|
358 |
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
|
359 |
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
|
360 |
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
|
361 |
gameInfo = liftM (\g -> g{ |
7124 | 362 |
teamsInGameNumber = teamsInGameNumber g - 1 |
10017 | 363 |
, roundMsgs = (if isJust $ lastFilteredTimedMsg g then (:) (fromJust $ lastFilteredTimedMsg g) else id) |
9381 | 364 |
$ 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
|
365 |
}) $ 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
|
366 |
}) |
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
|
367 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
368 |
|
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
|
369 |
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
|
370 |
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
|
371 |
gi <- io $ room'sM rnc gameInfo ri |
8422 | 372 |
when (0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
373 |
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
|
374 |
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
|
375 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
376 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
377 |
|
5184 | 378 |
processAction (RemoveTeam teamName) = do |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
379 |
(Just ci) <- gets clientIndex |
5184 | 380 |
rnc <- gets roomsClients |
381 |
ri <- clientRoomA |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
382 |
inGame <- io $ do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
383 |
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
|
384 |
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
|
385 |
return $ r && c |
5184 | 386 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
387 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
388 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
389 |
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
|
390 |
, 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
|
391 |
}) |
7947 | 392 |
: SendUpdateOnThisRoom |
7124 | 393 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
394 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 395 |
|
396 |
||
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
397 |
processAction RemoveClientTeams = do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
398 |
(Just ci) <- gets clientIndex |
5184 | 399 |
rnc <- gets roomsClients |
400 |
||
401 |
removeTeamActions <- io $ do |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
402 |
rId <- clientRoomM rnc ci |
5184 | 403 |
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
|
404 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamownerId t == ci) $ roomTeams |
5184 | 405 |
|
406 |
mapM_ processAction removeTeamActions |
|
407 |
||
408 |
||
409 |
||
410 |
processAction CheckRegistered = do |
|
411 |
(Just ci) <- gets clientIndex |
|
412 |
n <- client's nick |
|
413 |
h <- client's host |
|
414 |
p <- client's clientProto |
|
8371 | 415 |
checker <- client's isChecker |
5184 | 416 |
uid <- client's clUID |
8371 | 417 |
-- allow multiple checker logins |
418 |
haveSameNick <- liftM (not . null . tail . filter (\c -> (not $ isChecker c) && caseInsensitiveCompare (nick c) n)) allClientsS |
|
8476 | 419 |
if (not checker) && haveSameNick then |
5184 | 420 |
if p < 38 then |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
421 |
processAction $ ByeClient $ loc "Nickname is already in use" |
5184 | 422 |
else |
9032
2345f5f96a29
Clear nickname in case of collision so client could try again. Should help with issue 550 if not fix it.
unc0rr
parents:
8983
diff
changeset
|
423 |
mapM_ processAction [NoticeMessage NickAlreadyInUse, ModifyClient $ \c -> c{nick = B.empty}] |
5184 | 424 |
else |
425 |
do |
|
426 |
db <- gets (dbQueries . serverInfo) |
|
427 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
428 |
return () |
|
429 |
||
430 |
processAction ClearAccountsCache = do |
|
431 |
dbq <- gets (dbQueries . serverInfo) |
|
432 |
io $ writeChan dbq ClearCache |
|
433 |
return () |
|
434 |
||
435 |
||
8189 | 436 |
processAction (ProcessAccountInfo info) = do |
5184 | 437 |
case info of |
9435 | 438 |
HasAccount passwd isAdmin isContr -> do |
8189 | 439 |
b <- isBanned |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
440 |
c <- client's isChecker |
9435 | 441 |
when (not b) $ (if c then checkerLogin else playerLogin) passwd isAdmin isContr |
8189 | 442 |
Guest -> do |
443 |
b <- isBanned |
|
8523 | 444 |
c <- client's isChecker |
8189 | 445 |
when (not b) $ |
8523 | 446 |
if c then |
9435 | 447 |
checkerLogin "" False False |
8523 | 448 |
else |
449 |
processAction JoinLobby |
|
9786 | 450 |
Admin -> |
5184 | 451 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
9446 | 452 |
ReplayName fn -> processAction $ ShowReplay fn |
8189 | 453 |
where |
454 |
isBanned = do |
|
8239 | 455 |
processAction $ CheckBanned False |
8189 | 456 |
liftM B.null $ client's nick |
9435 | 457 |
checkerLogin _ False _ = processAction $ ByeClient $ loc "No checker rights" |
458 |
checkerLogin p True _ = do |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
459 |
wp <- client's webPassword |
10014 | 460 |
chan <- client's sendChan |
461 |
mapM_ processAction $ |
|
10017 | 462 |
if wp == p then |
10014 | 463 |
[ModifyClient $ \c -> c{logonPassed = True} |
464 |
, AnswerClients [chan] ["LOGONPASSED"] |
|
465 |
] |
|
10017 | 466 |
else |
10014 | 467 |
[ByeClient $ loc "Authentication failed"] |
9435 | 468 |
playerLogin p a contr = do |
10076 | 469 |
cl <- client's id |
9435 | 470 |
mapM_ processAction [ |
10076 | 471 |
AnswerClients [sendChan cl] $ ("ASKPASSWORD") : if clientProto cl < 48 then [] else [serverSalt cl] |
9435 | 472 |
, ModifyClient (\c -> c{webPassword = p, isAdministrator = a, isContributor = contr}) |
473 |
] |
|
5184 | 474 |
|
475 |
processAction JoinLobby = do |
|
476 |
chan <- client's sendChan |
|
9528 | 477 |
rnc <- gets roomsClients |
5184 | 478 |
clientNick <- client's nick |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
479 |
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
|
480 |
isAdmin <- client's isAdministrator |
9435 | 481 |
isContr <- client's isContributor |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
482 |
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
|
483 |
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
|
484 |
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
|
485 |
let adminsNicks = L.map nick . L.filter isAdministrator $ loggedInClients |
9435 | 486 |
let contrNicks = L.map nick . L.filter isContributor $ loggedInClients |
9528 | 487 |
inRoomNicks <- io $ |
488 |
allClientsM rnc |
|
489 |
>>= filterM (liftM ((/=) lobbyId) . clientRoomM rnc) |
|
490 |
>>= mapM (client'sM rnc nick) |
|
9435 | 491 |
let clFlags = B.concat . L.concat $ [["u" | isAuthenticated], ["a" | isAdmin], ["c" | isContr]] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
492 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
493 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
494 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
495 |
, [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
|
496 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+a" : adminsNicks) | not $ null adminsNicks] |
9435 | 497 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+c" : contrNicks) | not $ null contrNicks] |
9528 | 498 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+i" : inRoomNicks) | not $ null inRoomNicks] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
499 |
, [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
|
500 |
, [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
|
501 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
502 |
] |
5184 | 503 |
|
504 |
||
505 |
processAction (KickClient kickId) = do |
|
506 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 507 |
clHost <- client's host |
508 |
currentTime <- io getCurrentTime |
|
509 |
mapM_ processAction [ |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
510 |
AddIP2Bans clHost (loc "60 seconds cooldown after kick") (addUTCTime 60 currentTime) |
8245 | 511 |
, ModifyClient (\c -> c{isKickedFromServer = True}) |
512 |
, ByeClient "Kicked" |
|
5214 | 513 |
] |
5184 | 514 |
|
515 |
||
516 |
processAction (BanClient seconds reason banId) = do |
|
517 |
modify (\s -> s{clientIndex = Just banId}) |
|
518 |
clHost <- client's host |
|
519 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
520 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 521 |
mapM_ processAction [ |
522 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
523 |
, KickClient banId |
|
524 |
] |
|
525 |
||
8245 | 526 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
527 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
528 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
529 |
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
|
530 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
531 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
532 |
|
8245 | 533 |
|
8154 | 534 |
processAction (BanNick n seconds reason) = do |
535 |
currentTime <- io getCurrentTime |
|
10017 | 536 |
let msg = |
8154 | 537 |
if seconds > 60 * 60 * 24 * 365 then |
538 |
B.concat ["Permanent ban (", reason, ")"] |
|
539 |
else |
|
540 |
B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
|
541 |
processAction $ |
|
542 |
AddNick2Bans n msg (addUTCTime seconds currentTime) |
|
543 |
||
8245 | 544 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
545 |
processAction BanList = do |
8156 | 546 |
time <- io $ getCurrentTime |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
547 |
ch <- client's sendChan |
8156 | 548 |
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
|
549 |
processAction $ |
7766 | 550 |
AnswerClients [ch] ["BANLIST", b] |
8156 | 551 |
where |
552 |
ban2Str time (BanByIP b r t) = ["I", b, r, B.pack . show $ t `diffUTCTime` time] |
|
553 |
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
|
554 |
|
8245 | 555 |
|
7748 | 556 |
processAction (Unban entry) = do |
8156 | 557 |
processAction $ ModifyServerInfo (\s -> s{bans = filter (not . f) $ bans s}) |
7748 | 558 |
where |
559 |
f (BanByIP bip _ _) = bip == entry |
|
560 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 561 |
|
8245 | 562 |
|
5184 | 563 |
processAction (KickRoomClient kickId) = do |
564 |
modify (\s -> s{clientIndex = Just kickId}) |
|
565 |
ch <- client's sendChan |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
566 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby $ loc "kicked"] |
5184 | 567 |
|
568 |
||
569 |
processAction (AddClient cl) = do |
|
570 |
rnc <- gets roomsClients |
|
571 |
si <- gets serverInfo |
|
572 |
newClId <- io $ do |
|
573 |
ci <- addClient rnc cl |
|
574 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
575 |
||
576 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
577 |
||
578 |
return ci |
|
579 |
||
580 |
modify (\s -> s{clientIndex = Just newClId}) |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
581 |
|
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
582 |
jm <- gets joinsMonitor |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
583 |
pass <- io $ joinsSentry jm (host cl) (connectTime cl) |
5184 | 584 |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
585 |
if pass then |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
586 |
mapM_ processAction |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
587 |
[ |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
588 |
CheckBanned True |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
589 |
, AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
590 |
] |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
591 |
else |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
592 |
processAction $ ByeClient $ loc "Reconnected too fast" |
5184 | 593 |
|
594 |
processAction (AddNick2Bans n reason expiring) = do |
|
595 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
596 |
||
597 |
processAction (AddIP2Bans ip reason expiring) = do |
|
598 |
(Just ci) <- gets clientIndex |
|
599 |
rc <- gets removedClients |
|
600 |
when (not $ ci `Set.member` rc) |
|
601 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
602 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
603 |
|
8239 | 604 |
processAction (CheckBanned byIP) = do |
5184 | 605 |
clTime <- client's connectTime |
606 |
clNick <- client's nick |
|
607 |
clHost <- client's host |
|
608 |
si <- gets serverInfo |
|
10148 | 609 |
let (validBans, expiredBans) = L.partition (checkNotExpired clTime) $ bans si |
8239 | 610 |
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
|
611 |
mapM_ processAction $ |
10148 | 612 |
[ModifyServerInfo (\s -> s{bans = validBans}) | not $ null expiredBans] |
613 |
++ [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
|
5184 | 614 |
where |
615 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
616 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
8239 | 617 |
checkBan True ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
618 |
checkBan False _ n (BanByNick bn _ _) = caseInsensitiveCompare bn n |
|
619 |
checkBan _ _ _ _ = False |
|
5184 | 620 |
getBanReason (BanByIP _ msg _) = msg |
621 |
getBanReason (BanByNick _ msg _) = msg |
|
622 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
623 |
|
5184 | 624 |
processAction PingAll = do |
625 |
rnc <- gets roomsClients |
|
626 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
627 |
cis <- io $ allClientsM rnc |
|
628 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
629 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
630 |
processAction $ AnswerClients chans ["PING"] |
|
631 |
where |
|
632 |
kickTimeouted rnc ci = do |
|
633 |
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
|
634 |
when (pq > 0) $ do |
5184 | 635 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
636 |
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
|
637 |
-- 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
|
638 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 639 |
|
640 |
||
641 |
processAction StatsAction = do |
|
5211 | 642 |
si <- gets serverInfo |
643 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
644 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
645 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
646 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 647 |
where |
648 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
649 |
||
9435 | 650 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
651 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
652 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
653 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
654 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
655 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
656 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
657 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
658 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
659 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
660 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
661 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
662 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 663 |
|
9435 | 664 |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
665 |
processAction Stats = do |
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
666 |
cls <- allClientsS |
8452 | 667 |
rms <- allRoomsS |
668 |
let clientsMap = Map.fromListWith (+) . map (\c -> (clientProto c, 1 :: Int)) $ cls |
|
669 |
let roomsMap = Map.fromListWith (+) . map (\c -> (roomProto c, 1 :: Int)) . filter ((/=) 0 . roomProto) $ rms |
|
670 |
let keys = Map.keysSet clientsMap `Set.union` Map.keysSet roomsMap |
|
671 |
let versionsStats = B.concat . ((:) "<table border=1>") . (flip (++) ["</table>"]) |
|
672 |
. concatMap (\p -> [ |
|
673 |
"<tr><td>", protoNumber2ver p |
|
674 |
, "</td><td>", showB $ Map.findWithDefault 0 p clientsMap |
|
675 |
, "</td><td>", showB $ Map.findWithDefault 0 p roomsMap |
|
676 |
, "</td></tr>"]) |
|
677 |
. Set.toList $ keys |
|
678 |
processAction $ Warning versionsStats |
|
679 |
||
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
680 |
|
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
681 |
processAction (Random chans items) = do |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
682 |
let i = if null items then ["heads", "tails"] else items |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
683 |
n <- io $ randomRIO (0, length i - 1) |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
684 |
processAction $ AnswerClients chans ["CHAT", "[random]", i !! n] |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
685 |
|
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
686 |
|
6012 | 687 |
#if defined(OFFICIAL_SERVER) |
5184 | 688 |
processAction SaveReplay = do |
689 |
ri <- clientRoomA |
|
690 |
rnc <- gets roomsClients |
|
8371 | 691 |
|
9437 | 692 |
readyCheckersIds <- io $ do |
5184 | 693 |
r <- room'sM rnc id ri |
694 |
saveReplay r |
|
9437 | 695 |
allci <- allClientsM rnc |
696 |
filterM (client'sM rnc isReadyChecker) allci |
|
9433 | 697 |
|
698 |
when (not $ null readyCheckersIds) $ do |
|
9439 | 699 |
oldci <- gets clientIndex |
700 |
withStateT (\s -> s{clientIndex = Just $ head readyCheckersIds}) |
|
701 |
$ processAction CheckRecord |
|
702 |
modify (\s -> s{clientIndex = oldci}) |
|
9433 | 703 |
where |
704 |
isReadyChecker cl = isChecker cl && isReady cl |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
705 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
706 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
707 |
processAction CheckRecord = do |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
708 |
p <- client's clientProto |
8482 | 709 |
c <- client's sendChan |
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
710 |
ri <- clientRoomA |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
711 |
rnc <- gets roomsClients |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
712 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
713 |
blackList <- liftM (map (recordFileName . fromJust . checkInfo) . filter (isJust . checkInfo)) allClientsS |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
714 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
715 |
readyCheckersIds <- io $ do |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
716 |
allci <- allClientsM rnc |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
717 |
filterM (client'sM rnc (isJust . checkInfo)) allci |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
718 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
719 |
(cinfo, l) <- io $ loadReplay (fromIntegral p) blackList |
10086 | 720 |
when (isJust cinfo) $ |
8509 | 721 |
mapM_ processAction [ |
722 |
AnswerClients [c] ("REPLAY" : l) |
|
9444 | 723 |
, ModifyClient $ \c -> c{checkInfo = cinfo, isReady = False} |
8509 | 724 |
] |
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
725 |
|
9433 | 726 |
|
8509 | 727 |
processAction (CheckFailed msg) = do |
728 |
Just (CheckInfo fileName _) <- client's checkInfo |
|
729 |
io $ moveFailedRecord fileName |
|
8507 | 730 |
|
9433 | 731 |
|
8509 | 732 |
processAction (CheckSuccess info) = do |
9399 | 733 |
Just (CheckInfo fileName teams) <- client's checkInfo |
9868 | 734 |
p <- client's clientProto |
9401 | 735 |
si <- gets serverInfo |
9868 | 736 |
io $ writeChan (dbQueries si) $ StoreAchievements p (B.pack fileName) (map toPair teams) info |
8509 | 737 |
io $ moveCheckedRecord fileName |
9399 | 738 |
where |
739 |
toPair t = (teamname t, teamowner t) |
|
8507 | 740 |
|
9786 | 741 |
processAction (QueryReplay rname) = do |
9446 | 742 |
(Just ci) <- gets clientIndex |
743 |
si <- gets serverInfo |
|
744 |
uid <- client's clUID |
|
9786 | 745 |
io $ writeChan (dbQueries si) $ GetReplayName ci (hashUnique uid) rname |
9446 | 746 |
|
6012 | 747 |
#else |
748 |
processAction SaveReplay = return () |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
749 |
processAction CheckRecord = return () |
8507 | 750 |
processAction (CheckFailed _) = return () |
751 |
processAction (CheckSuccess _) = return () |
|
9446 | 752 |
processAction (QueryReplay _) = return () |
6012 | 753 |
#endif |
9446 | 754 |
|
9786 | 755 |
processAction (ShowReplay rname) = do |
9448 | 756 |
c <- client's sendChan |
757 |
cl <- client's id |
|
758 |
||
9786 | 759 |
let fileName = B.concat ["checked/", if B.isPrefixOf "replays/" rname then B.drop 8 rname else rname] |
9448 | 760 |
|
9786 | 761 |
cInfo <- liftIO $ E.handle (\(e :: SomeException) -> |
9448 | 762 |
warningM "REPLAYS" (B.unpack $ B.concat ["Problems reading ", fileName, ": ", B.pack $ show e]) >> return Nothing) $ do |
763 |
(t, p1, p2, msgs) <- liftM read $ readFile (B.unpack fileName) |
|
764 |
return $ Just (t, Map.fromList p1, Map.fromList p2, reverse msgs) |
|
9446 | 765 |
|
9786 | 766 |
let (teams', params1, params2, roundMsgs') = fromJust cInfo |
9448 | 767 |
|
9786 | 768 |
when (isJust cInfo) $ do |
9448 | 769 |
mapM_ processAction $ concat [ |
770 |
[AnswerClients [c] ["JOINED", nick cl]] |
|
771 |
, answerFullConfigParams cl params1 params2 |
|
9786 | 772 |
, answerAllTeams cl teams' |
9448 | 773 |
, [AnswerClients [c] ["RUN_GAME"]] |
9786 | 774 |
, [AnswerClients [c] $ "EM" : roundMsgs'] |
9448 | 775 |
, [AnswerClients [c] ["KICKED"]] |
776 |
] |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
777 |
|
10195 | 778 |
processAction (SaveRoom rname) = do |
779 |
rnc <- gets roomsClients |
|
780 |
ri <- clientRoomA |
|
781 |
rm <- io $ room'sM rnc id ri |
|
782 |
liftIO $ writeFile (B.unpack rname) $ show (greeting rm, roomSaves rm) |
|
783 |
||
784 |
processAction (LoadRoom rname) = do |
|
785 |
(g, rs) <- liftIO $ liftM read $ readFile (B.unpack rname) |
|
786 |
processAction $ ModifyRoom $ \r -> r{greeting = g, roomSaves = rs} |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
787 |
|
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
788 |
processAction Cleanup = do |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
789 |
jm <- gets joinsMonitor |
10017 | 790 |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
791 |
io $ do |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
792 |
t <- getCurrentTime |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
793 |
cleanup jm t |
10090 | 794 |
|
795 |
||
796 |
processAction (RegisterEvent e) = do |
|
797 |
actions <- registerEvent e |
|
798 |
mapM_ processAction actions |
|
10212 | 799 |
|
800 |
||
801 |
processAction (ReactCmd cmd) = do |
|
802 |
(Just ci) <- gets clientIndex |
|
803 |
rnc <- gets roomsClients |
|
804 |
actions <- liftIO $ withRoomsAndClients rnc (\irnc -> runReader (handleCmd cmd) (ci, irnc)) |
|
805 |
forM_ (actions `deepseq` actions) processAction |
|
10215 | 806 |
|
807 |
processAction CheckVotes = |
|
808 |
checkVotes >>= mapM_ processAction |