author | unc0rr |
Tue, 13 Dec 2022 21:21:55 +0100 | |
changeset 15928 | 73cdc306888f |
parent 15900 | fc3cb23fd26f |
permissions | -rw-r--r-- |
10460
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
1 |
{- |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
10460
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
4 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
8 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
12 |
* GNU General Public License for more details. |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
13 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
17 |
\-} |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10259
diff
changeset
|
18 |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
19 |
{-# LANGUAGE CPP, OverloadedStrings, ScopedTypeVariables #-} |
7766 | 20 |
{-# OPTIONS_GHC -fno-warn-orphans #-} |
5184 | 21 |
module Actions where |
22 |
||
23 |
import Control.Concurrent |
|
24 |
import qualified Data.Set as Set |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
25 |
import qualified Data.Map as Map |
5184 | 26 |
import qualified Data.List as L |
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
27 |
import Data.Word |
5184 | 28 |
import qualified Control.Exception as Exception |
29 |
import System.Log.Logger |
|
30 |
import Control.Monad |
|
31 |
import Data.Time |
|
32 |
import Data.Maybe |
|
33 |
import Control.Monad.Reader |
|
34 |
import Control.Monad.State.Strict |
|
35 |
import qualified Data.ByteString.Char8 as B |
|
36 |
import Control.DeepSeq |
|
37 |
import Data.Unique |
|
38 |
import Control.Arrow |
|
9448 | 39 |
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
|
40 |
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
|
41 |
import Network.Socket |
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
42 |
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
|
43 |
import qualified Data.Traversable as DT |
12864 | 44 |
import Text.Regex.TDFA |
11854 | 45 |
import qualified Text.Regex.TDFA as TDFA |
46 |
import qualified Text.Regex.TDFA.ByteString as TDFAB |
|
5184 | 47 |
----------------------------- |
7766 | 48 |
#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
|
49 |
import OfficialServer.GameReplayStore |
14308
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
50 |
import qualified Data.Yaml as YAML |
7766 | 51 |
#endif |
5184 | 52 |
import CoreTypes |
53 |
import Utils |
|
54 |
import ClientIO |
|
55 |
import ServerState |
|
56 |
import Consts |
|
57 |
import ConfigFile |
|
6068 | 58 |
import EngineInteraction |
10092 | 59 |
import FloodDetection |
10212 | 60 |
import HWProtoCore |
10216 | 61 |
import Votes |
5184 | 62 |
|
63 |
othersChans :: StateT ServerState IO [ClientChan] |
|
64 |
othersChans = do |
|
65 |
cl <- client's id |
|
66 |
ri <- clientRoomA |
|
67 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
68 |
||
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
69 |
othersChansProto :: StateT ServerState IO [(ClientChan, Word16)] |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
70 |
othersChansProto = do |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
71 |
cl <- client's id |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
72 |
ri <- clientRoomA |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
73 |
map (\ci -> (sendChan ci, clientProto ci)) . filter (/= cl) <$> roomClientsS ri |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
74 |
|
5184 | 75 |
processAction :: Action -> StateT ServerState IO () |
76 |
||
77 |
||
78 |
processAction (AnswerClients chans msg) = |
|
79 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
80 |
||
81 |
||
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
82 |
processAction (AnswerClientsByProto chansProto msgFunc) = |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
83 |
io $ mapM_ (\(chan, proto) -> writeChan chan (msgFunc proto)) chansProto |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
84 |
|
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
85 |
|
5184 | 86 |
processAction SendServerMessage = do |
87 |
chan <- client's sendChan |
|
88 |
protonum <- client's clientProto |
|
89 |
si <- liftM serverInfo get |
|
90 |
let message = if protonum < latestReleaseVersion si then |
|
91 |
serverMessageForOldVersions si |
|
92 |
else |
|
93 |
serverMessage si |
|
94 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
95 |
||
96 |
||
97 |
processAction SendServerVars = do |
|
98 |
chan <- client's sendChan |
|
99 |
si <- gets serverInfo |
|
100 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
101 |
where |
|
102 |
vars si = [ |
|
103 |
"MOTD_NEW", serverMessage si, |
|
104 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
105 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
106 |
] |
|
107 |
||
108 |
||
109 |
processAction (ProtocolError msg) = do |
|
110 |
chan <- client's sendChan |
|
111 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
112 |
||
113 |
||
114 |
processAction (Warning msg) = do |
|
115 |
chan <- client's sendChan |
|
116 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
117 |
||
118 |
processAction (NoticeMessage n) = do |
|
119 |
chan <- client's sendChan |
|
120 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
121 |
||
122 |
processAction (ByeClient msg) = do |
|
123 |
(Just ci) <- gets clientIndex |
|
124 |
ri <- clientRoomA |
|
125 |
||
126 |
chan <- client's sendChan |
|
127 |
clNick <- client's nick |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
128 |
loggedIn <- client's isVisible |
5184 | 129 |
|
130 |
when (ri /= lobbyId) $ do |
|
13673
1aa5e884326a
Fix some string/translation inconsistencies in strings related to leaving
Wuzzy <Wuzzy2@mail.ru>
parents:
13657
diff
changeset
|
131 |
processAction $ (MoveToLobby msg) |
5184 | 132 |
return () |
133 |
||
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
134 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 135 |
io $ |
136 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
137 |
||
138 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
139 |
||
8158 | 140 |
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
|
141 |
[ |
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
|
142 |
AnswerClients [chan] ["BYE", msg] |
15810
acf70c44065b
Use the singular 'they' in code comments, where it makes sense
Wuzzy <Wuzzy2@mail.ru>
parents:
15721
diff
changeset
|
143 |
, ModifyClient (\c -> c{nick = "", isVisible = False}) -- this will effectively hide client from others while it 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
|
144 |
] |
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
|
145 |
|
5184 | 146 |
s <- get |
147 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
148 |
||
149 |
processAction (DeleteClient ci) = do |
|
150 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
151 |
||
152 |
rnc <- gets roomsClients |
|
153 |
io $ removeClient rnc ci |
|
154 |
||
155 |
s <- get |
|
156 |
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
|
157 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
158 |
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
|
159 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
160 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 161 |
|
162 |
processAction (ModifyClient f) = do |
|
163 |
(Just ci) <- gets clientIndex |
|
164 |
rnc <- gets roomsClients |
|
165 |
io $ modifyClient rnc f ci |
|
166 |
return () |
|
167 |
||
168 |
processAction (ModifyClient2 ci f) = do |
|
169 |
rnc <- gets roomsClients |
|
170 |
io $ modifyClient rnc f ci |
|
171 |
return () |
|
172 |
||
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
173 |
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
|
174 |
rnc <- gets roomsClients |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
175 |
ri <- clientRoomA |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
176 |
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
|
177 |
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
|
178 |
|
5184 | 179 |
|
180 |
processAction (ModifyRoom f) = do |
|
181 |
rnc <- gets roomsClients |
|
182 |
ri <- clientRoomA |
|
183 |
io $ modifyRoom rnc f ri |
|
184 |
return () |
|
185 |
||
186 |
||
187 |
processAction (ModifyServerInfo f) = do |
|
188 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
189 |
si <- gets serverInfo |
|
190 |
io $ writeServerConfig si |
|
191 |
||
192 |
||
193 |
processAction (MoveToRoom ri) = do |
|
194 |
(Just ci) <- gets clientIndex |
|
195 |
rnc <- gets roomsClients |
|
196 |
||
197 |
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
|
198 |
modifyClient rnc ( |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
199 |
\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
|
200 |
, isReady = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
201 |
, isMaster = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
202 |
, isInGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
203 |
, isJoinedMidGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
204 |
, clientClan = Nothing}) ci |
5184 | 205 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
206 |
moveClientToRoom rnc ri ci |
|
207 |
||
208 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
209 |
clNick <- client's nick |
|
9193 | 210 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 211 |
|
9193 | 212 |
mapM_ processAction [ |
213 |
AnswerClients chans ["JOINED", clNick] |
|
214 |
, AnswerClients allClientsChans ["CLIENT_FLAGS", "+i", clNick] |
|
10095 | 215 |
, RegisterEvent RoomJoin |
9193 | 216 |
] |
5184 | 217 |
|
218 |
||
219 |
processAction (MoveToLobby msg) = do |
|
220 |
(Just ci) <- gets clientIndex |
|
221 |
ri <- clientRoomA |
|
222 |
rnc <- gets roomsClients |
|
7766 | 223 |
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
|
224 |
specialRoom <- io $ room'sM rnc isSpecial ri |
5184 | 225 |
master <- client's isMaster |
226 |
-- client <- client's id |
|
227 |
clNick <- client's nick |
|
228 |
chans <- othersChans |
|
229 |
||
230 |
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
|
231 |
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
|
232 |
mapM_ processAction [ChangeMaster Nothing, NoticeMessage AdminLeft, RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 233 |
else |
234 |
processAction RemoveRoom |
|
235 |
else |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
236 |
mapM_ processAction [RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 237 |
|
9193 | 238 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
239 |
processAction $ AnswerClients allClientsChans ["CLIENT_FLAGS", "-i", clNick] |
|
240 |
||
5184 | 241 |
-- 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
|
242 |
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
|
243 |
when (not master || playersNum > 1 || specialRoom) . io $ do |
5184 | 244 |
modifyRoom rnc (\r -> r{ |
245 |
playersIn = playersIn r - 1, |
|
246 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
247 |
}) ri |
|
248 |
moveClientToLobby rnc ci |
|
249 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
250 |
|
8247 | 251 |
processAction (ChangeMaster delegateId)= do |
5184 | 252 |
(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
|
253 |
proto <- client's clientProto |
5184 | 254 |
ri <- clientRoomA |
255 |
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
|
256 |
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
|
257 |
newMasterId <- if specialRoom then |
10058 | 258 |
return delegateId |
10056
cb9e07753802
Don't delegate special room to another player when owner quits
unc0rr
parents:
10017
diff
changeset
|
259 |
else |
cb9e07753802
Don't delegate special room to another player when owner quits
unc0rr
parents:
10017
diff
changeset
|
260 |
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
|
261 |
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
|
262 |
oldMasterId <- io $ room'sM rnc masterID ri |
6733 | 263 |
oldRoomName <- io $ room'sM rnc name ri |
8245 | 264 |
kicked <- client's isKickedFromServer |
7668
4cb423f42105
Show who is the room admin on join (no tested, also I don't like how it is done via server warnings, but it seems there's no other solution compatible with .17)
unc0rr
parents:
7664
diff
changeset
|
265 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
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
|
266 |
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
|
267 |
|
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
|
268 |
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
|
269 |
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
|
270 |
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
|
271 |
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
|
272 |
, 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
|
273 |
] |
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
|
274 |
|
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
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
, 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
|
279 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+h", nick $ fromJust newMaster] |
13703
2df519242d41
Add a couple of more useful server messages
Wuzzy <Wuzzy2@mail.ru>
parents:
13696
diff
changeset
|
280 |
-- TODO: Send message to other clients, too (requires proper localization, however) |
2df519242d41
Add a couple of more useful server messages
Wuzzy <Wuzzy2@mail.ru>
parents:
13696
diff
changeset
|
281 |
, AnswerClients [sendChan $ fromJust newMaster] ["CHAT", nickServer, loc "You're the new room master!"] |
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
|
282 |
] |
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
|
283 |
|
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
|
284 |
processAction $ |
7775 | 285 |
ModifyRoom (\r -> r{masterID = newMasterId |
286 |
, name = newRoomName |
|
287 |
, isRestrictedJoins = False |
|
288 |
, 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
|
289 |
, isRegisteredOnly = isSpecial r} |
8983 | 290 |
) |
5184 | 291 |
|
7766 | 292 |
newRoom' <- io $ room'sM rnc id ri |
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
293 |
chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
294 |
let oldRoomNameByProto = roomNameByProto oldRoomName (roomProto newRoom') |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
295 |
processAction $ AnswerClientsByProto chansProto (\p -> "ROOM" : "UPD" : oldRoomNameByProto p : roomInfo p (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
|
296 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
297 |
|
5184 | 298 |
processAction (AddRoom roomName roomPassword) = do |
299 |
Just clId <- gets clientIndex |
|
300 |
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
|
301 |
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
|
302 |
n <- client's nick |
5184 | 303 |
|
304 |
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
|
305 |
masterID = Just clId, |
5184 | 306 |
name = roomName, |
307 |
password = roomPassword, |
|
308 |
roomProto = proto |
|
309 |
} |
|
310 |
||
311 |
rId <- io $ addRoom rnc rm |
|
312 |
||
313 |
processAction $ MoveToRoom rId |
|
314 |
||
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
315 |
chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS |
5184 | 316 |
|
317 |
mapM_ processAction [ |
|
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
318 |
AnswerClientsByProto chansProto (\p -> "ROOM" : "ADD" : roomInfo p n rm{playersIn = 1}) |
5184 | 319 |
] |
320 |
||
321 |
||
322 |
processAction RemoveRoom = do |
|
323 |
Just clId <- gets clientIndex |
|
324 |
rnc <- gets roomsClients |
|
325 |
ri <- io $ clientRoomM rnc clId |
|
326 |
roomName <- io $ room'sM rnc name ri |
|
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
327 |
roomProto <- io $ room'sM rnc roomProto ri |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
328 |
others <- othersChansProto |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
329 |
chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS |
5184 | 330 |
|
331 |
mapM_ processAction [ |
|
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
332 |
AnswerClientsByProto chansProto (\p -> ["ROOM", "DEL", roomNameByProto roomName roomProto p]), |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
333 |
AnswerClientsByProto others (\p -> ["ROOMABANDONED", roomNameByProto roomName roomProto p]) |
5184 | 334 |
] |
335 |
||
336 |
io $ removeRoom rnc ri |
|
337 |
||
338 |
||
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
339 |
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
|
340 |
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
|
341 |
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
|
342 |
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
|
343 |
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
|
344 |
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
|
345 |
masterCl <- io $ client'sM rnc id `DT.mapM` (masterID rm) |
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
346 |
chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
347 |
let thisRoomNameByProto = roomNameByProto (name rm) (roomProto rm) |
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
348 |
processAction $ AnswerClientsByProto chansProto (\p -> "ROOM" : "UPD" : thisRoomNameByProto p : roomInfo p (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
|
349 |
|
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
350 |
|
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
|
351 |
processAction UnreadyRoomClients = do |
5184 | 352 |
ri <- clientRoomA |
353 |
roomPlayers <- roomClientsS ri |
|
354 |
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
|
355 |
mapM_ processAction [ |
7775 | 356 |
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
|
357 |
, ModifyRoomClients (\cl -> cl{isReady = isMaster cl, isJoinedMidGame = False}) |
7775 | 358 |
, 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
|
359 |
] |
5184 | 360 |
where |
361 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
362 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
363 |
|
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
|
364 |
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
|
365 |
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
|
366 |
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
|
367 |
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
|
368 |
joinedMidGame <- liftM (filter isJoinedMidGame) $ roomClientsS ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
369 |
answerRemovedTeams <- io $ |
10017 | 370 |
room'sM rnc (\r -> let gi = fromJust $ gameInfo r in |
371 |
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
|
372 |
(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
|
373 |
++ |
10017 | 374 |
(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
|
375 |
) joinedMidGame |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
376 |
) ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
377 |
|
10814
810ac1d21fd0
This should help with second rejoin bug. (reverting previous workaround over frontend bug and making a new one)
unc0rr
parents:
10786
diff
changeset
|
378 |
rteams <- io $ room'sM rnc (L.nub . rejoinedTeams . fromJust . gameInfo) ri |
810ac1d21fd0
This should help with second rejoin bug. (reverting previous workaround over frontend bug and making a new one)
unc0rr
parents:
10786
diff
changeset
|
379 |
mapM_ (processAction . RemoveTeam) rteams |
810ac1d21fd0
This should help with second rejoin bug. (reverting previous workaround over frontend bug and making a new one)
unc0rr
parents:
10786
diff
changeset
|
380 |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
381 |
mapM_ processAction $ ( |
7124 | 382 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
383 |
: 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
|
384 |
(\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
|
385 |
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
|
386 |
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
|
387 |
} |
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
|
388 |
) |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
389 |
: SendUpdateOnThisRoom |
8241
b15f165c080c
Send "ROUND_FINISHED" to room clients when server thinks so
unc0rr
parents:
8239
diff
changeset
|
390 |
: AnswerClients thisRoomChans ["ROUND_FINISHED"] |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
391 |
: answerRemovedTeams |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
392 |
) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
393 |
++ [UnreadyRoomClients] |
5184 | 394 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
395 |
|
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
|
396 |
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
|
397 |
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
|
398 |
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
|
399 |
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
|
400 |
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
|
401 |
gameInfo = liftM (\g -> g{ |
7124 | 402 |
teamsInGameNumber = teamsInGameNumber g - 1 |
10944
c4b3440eeac6
- Fix order of messages, also don't duplicate last timestamped message
unc0rr
parents:
10814
diff
changeset
|
403 |
, lastFilteredTimedMsg = Nothing |
c4b3440eeac6
- Fix order of messages, also don't duplicate last timestamped message
unc0rr
parents:
10814
diff
changeset
|
404 |
, roundMsgs = (if isJust $ lastFilteredTimedMsg g then ((:) rmTeamMsg . (:) (fromJust $ lastFilteredTimedMsg g)) else ((:) rmTeamMsg)) |
c4b3440eeac6
- Fix order of messages, also don't duplicate last timestamped message
unc0rr
parents:
10814
diff
changeset
|
405 |
$ 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
|
406 |
}) $ 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
|
407 |
}) |
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
|
408 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
409 |
|
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
|
410 |
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
|
411 |
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
|
412 |
gi <- io $ room'sM rnc gameInfo ri |
8422 | 413 |
when (0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
414 |
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
|
415 |
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
|
416 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
417 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
418 |
|
5184 | 419 |
processAction (RemoveTeam teamName) = do |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
420 |
(Just ci) <- gets clientIndex |
5184 | 421 |
rnc <- gets roomsClients |
422 |
ri <- clientRoomA |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
423 |
inGame <- io $ do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
424 |
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
|
425 |
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
|
426 |
return $ r && c |
5184 | 427 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
428 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
429 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
430 |
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
|
431 |
, 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
|
432 |
}) |
7947 | 433 |
: SendUpdateOnThisRoom |
7124 | 434 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
435 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 436 |
|
437 |
||
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
438 |
processAction RemoveClientTeams = do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
439 |
(Just ci) <- gets clientIndex |
5184 | 440 |
rnc <- gets roomsClients |
10732
7c4f9e5e447c
Get rid of teamownerId since rejoin feature makes it virtually useless, as you cannot rely on it anymore. Should fix recently experienced server crashes.
unc0rr
parents:
10460
diff
changeset
|
441 |
n <- client's nick |
5184 | 442 |
|
443 |
removeTeamActions <- io $ do |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
444 |
rId <- clientRoomM rnc ci |
5184 | 445 |
roomTeams <- room'sM rnc teams rId |
10732
7c4f9e5e447c
Get rid of teamownerId since rejoin feature makes it virtually useless, as you cannot rely on it anymore. Should fix recently experienced server crashes.
unc0rr
parents:
10460
diff
changeset
|
446 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == n) $ roomTeams |
5184 | 447 |
|
448 |
mapM_ processAction removeTeamActions |
|
449 |
||
450 |
||
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
451 |
processAction SetRandomSeed = do |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
452 |
ri <- clientRoomA |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
453 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
454 |
seed <- liftM showB $ io $ (randomRIO (0, 10^9) :: IO Int) |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
455 |
mapM_ processAction [ |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
456 |
ModifyRoom (\r -> r{mapParams = Map.insert "SEED" seed $ mapParams r}) |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
457 |
, AnswerClients thisRoomChans ["CFG", "SEED", seed] |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
458 |
] |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10732
diff
changeset
|
459 |
|
5184 | 460 |
|
461 |
processAction CheckRegistered = do |
|
462 |
(Just ci) <- gets clientIndex |
|
463 |
n <- client's nick |
|
464 |
h <- client's host |
|
465 |
p <- client's clientProto |
|
8371 | 466 |
checker <- client's isChecker |
5184 | 467 |
uid <- client's clUID |
8371 | 468 |
-- allow multiple checker logins |
469 |
haveSameNick <- liftM (not . null . tail . filter (\c -> (not $ isChecker c) && caseInsensitiveCompare (nick c) n)) allClientsS |
|
8476 | 470 |
if (not checker) && haveSameNick then |
5184 | 471 |
if p < 38 then |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
472 |
processAction $ ByeClient $ loc "Nickname is already in use" |
5184 | 473 |
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
|
474 |
mapM_ processAction [NoticeMessage NickAlreadyInUse, ModifyClient $ \c -> c{nick = B.empty}] |
5184 | 475 |
else |
476 |
do |
|
477 |
db <- gets (dbQueries . serverInfo) |
|
478 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
479 |
return () |
|
480 |
||
481 |
processAction ClearAccountsCache = do |
|
482 |
dbq <- gets (dbQueries . serverInfo) |
|
483 |
io $ writeChan dbq ClearCache |
|
484 |
return () |
|
485 |
||
486 |
||
8189 | 487 |
processAction (ProcessAccountInfo info) = do |
11465
0ae2e4c13bd1
Allow toggling registration requirement on live server
unc0rr
parents:
11463
diff
changeset
|
488 |
si <- gets serverInfo |
5184 | 489 |
case info of |
9435 | 490 |
HasAccount passwd isAdmin isContr -> do |
8189 | 491 |
b <- isBanned |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
492 |
c <- client's isChecker |
9435 | 493 |
when (not b) $ (if c then checkerLogin else playerLogin) passwd isAdmin isContr |
11465
0ae2e4c13bd1
Allow toggling registration requirement on live server
unc0rr
parents:
11463
diff
changeset
|
494 |
Guest | isRegisteredUsersOnly si -> do |
13730
3106d630d6b5
Make guest rejection error translatable
Wuzzy <Wuzzy2@mail.ru>
parents:
13703
diff
changeset
|
495 |
processAction $ ByeClient $ loc "This server only allows registered users to join." |
11465
0ae2e4c13bd1
Allow toggling registration requirement on live server
unc0rr
parents:
11463
diff
changeset
|
496 |
| otherwise -> do |
8189 | 497 |
b <- isBanned |
8523 | 498 |
c <- client's isChecker |
8189 | 499 |
when (not b) $ |
8523 | 500 |
if c then |
9435 | 501 |
checkerLogin "" False False |
8523 | 502 |
else |
503 |
processAction JoinLobby |
|
9786 | 504 |
Admin -> |
5184 | 505 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
9446 | 506 |
ReplayName fn -> processAction $ ShowReplay fn |
8189 | 507 |
where |
508 |
isBanned = do |
|
8239 | 509 |
processAction $ CheckBanned False |
8189 | 510 |
liftM B.null $ client's nick |
9435 | 511 |
checkerLogin _ False _ = processAction $ ByeClient $ loc "No checker rights" |
512 |
checkerLogin p True _ = do |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
513 |
wp <- client's webPassword |
10014 | 514 |
chan <- client's sendChan |
515 |
mapM_ processAction $ |
|
10017 | 516 |
if wp == p then |
10014 | 517 |
[ModifyClient $ \c -> c{logonPassed = True} |
518 |
, AnswerClients [chan] ["LOGONPASSED"] |
|
519 |
] |
|
10017 | 520 |
else |
10014 | 521 |
[ByeClient $ loc "Authentication failed"] |
9435 | 522 |
playerLogin p a contr = do |
10076 | 523 |
cl <- client's id |
9435 | 524 |
mapM_ processAction [ |
10076 | 525 |
AnswerClients [sendChan cl] $ ("ASKPASSWORD") : if clientProto cl < 48 then [] else [serverSalt cl] |
9435 | 526 |
, ModifyClient (\c -> c{webPassword = p, isAdministrator = a, isContributor = contr}) |
527 |
] |
|
5184 | 528 |
|
529 |
processAction JoinLobby = do |
|
530 |
chan <- client's sendChan |
|
9528 | 531 |
rnc <- gets roomsClients |
5184 | 532 |
clientNick <- client's nick |
11463 | 533 |
clProto <- client's clientProto |
12761
0167e337553b
Use maybeNick from Utils, fixes empty nickname inserted in ROOMS protocol command parameters. Not tested, but builds, and it's Haskell...
unc0rr
parents:
12114
diff
changeset
|
534 |
isAuthenticated <- client's isRegistered |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
535 |
isAdmin <- client's isAdministrator |
9435 | 536 |
isContr <- client's isContributor |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
537 |
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
|
538 |
let (lobbyNicks, clientsChans) = unzip . L.map (nick &&& sendChan) $ loggedInClients |
12114
cdadc1d487f1
Only registered players regain their teams on rejoin
unc0rr
parents:
11854
diff
changeset
|
539 |
let authenticatedNicks = L.map nick . L.filter isRegistered $ loggedInClients |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
540 |
let adminsNicks = L.map nick . L.filter isAdministrator $ loggedInClients |
9435 | 541 |
let contrNicks = L.map nick . L.filter isContributor $ loggedInClients |
9528 | 542 |
inRoomNicks <- io $ |
543 |
allClientsM rnc |
|
544 |
>>= filterM (liftM ((/=) lobbyId) . clientRoomM rnc) |
|
545 |
>>= mapM (client'sM rnc nick) |
|
9435 | 546 |
let clFlags = B.concat . L.concat $ [["u" | isAuthenticated], ["a" | isAdmin], ["c" | isContr]] |
11463 | 547 |
|
548 |
roomsInfoList <- io $ do |
|
549 |
rooms <- roomsM rnc |
|
12761
0167e337553b
Use maybeNick from Utils, fixes empty nickname inserted in ROOMS protocol command parameters. Not tested, but builds, and it's Haskell...
unc0rr
parents:
12114
diff
changeset
|
550 |
mapM (\r -> (mapM (client'sM rnc id) $ masterID r) |
0167e337553b
Use maybeNick from Utils, fixes empty nickname inserted in ROOMS protocol command parameters. Not tested, but builds, and it's Haskell...
unc0rr
parents:
12114
diff
changeset
|
551 |
>>= \cn -> return $ roomInfo clProto (maybeNick cn) r) |
15900
fc3cb23fd26f
Allow to see rooms of incompatible versions in the lobby
S.D.
parents:
15810
diff
changeset
|
552 |
$ filter ((/=) 0 . roomProto) rooms |
11463 | 553 |
|
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
554 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
555 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
556 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
557 |
, [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
|
558 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+a" : adminsNicks) | not $ null adminsNicks] |
9435 | 559 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+c" : contrNicks) | not $ null contrNicks] |
9528 | 560 |
, [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
|
561 |
, [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
|
562 |
, [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
|
563 |
, [SendServerMessage] |
11463 | 564 |
, [AnswerClients [chan] ("ROOMS" : concat roomsInfoList)] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
565 |
] |
5184 | 566 |
|
567 |
||
568 |
processAction (KickClient kickId) = do |
|
569 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 570 |
clHost <- client's host |
571 |
currentTime <- io getCurrentTime |
|
572 |
mapM_ processAction [ |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
573 |
AddIP2Bans clHost (loc "60 seconds cooldown after kick") (addUTCTime 60 currentTime) |
8245 | 574 |
, ModifyClient (\c -> c{isKickedFromServer = True}) |
13657
2d38dc2d3414
Tweak some connection failure messages
Wuzzy <Wuzzy2@mail.ru>
parents:
13512
diff
changeset
|
575 |
, ByeClient $ loc "Kicked" |
5214 | 576 |
] |
5184 | 577 |
|
578 |
||
579 |
processAction (BanClient seconds reason banId) = do |
|
580 |
modify (\s -> s{clientIndex = Just banId}) |
|
581 |
clHost <- client's host |
|
582 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
583 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 584 |
mapM_ processAction [ |
585 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
586 |
, KickClient banId |
|
587 |
] |
|
588 |
||
8245 | 589 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
590 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
591 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
592 |
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
|
593 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
594 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
595 |
|
8245 | 596 |
|
8154 | 597 |
processAction (BanNick n seconds reason) = do |
598 |
currentTime <- io getCurrentTime |
|
10017 | 599 |
let msg = |
8154 | 600 |
if seconds > 60 * 60 * 24 * 365 then |
601 |
B.concat ["Permanent ban (", reason, ")"] |
|
602 |
else |
|
603 |
B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
|
604 |
processAction $ |
|
605 |
AddNick2Bans n msg (addUTCTime seconds currentTime) |
|
606 |
||
8245 | 607 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
608 |
processAction BanList = do |
8156 | 609 |
time <- io $ getCurrentTime |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
610 |
ch <- client's sendChan |
8156 | 611 |
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
|
612 |
processAction $ |
7766 | 613 |
AnswerClients [ch] ["BANLIST", b] |
8156 | 614 |
where |
615 |
ban2Str time (BanByIP b r t) = ["I", b, r, B.pack . show $ t `diffUTCTime` time] |
|
616 |
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
|
617 |
|
8245 | 618 |
|
7748 | 619 |
processAction (Unban entry) = do |
8156 | 620 |
processAction $ ModifyServerInfo (\s -> s{bans = filter (not . f) $ bans s}) |
7748 | 621 |
where |
622 |
f (BanByIP bip _ _) = bip == entry |
|
623 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 624 |
|
8245 | 625 |
|
5184 | 626 |
processAction (KickRoomClient kickId) = do |
627 |
modify (\s -> s{clientIndex = Just kickId}) |
|
628 |
ch <- client's sendChan |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
629 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby $ loc "kicked"] |
5184 | 630 |
|
631 |
||
632 |
processAction (AddClient cl) = do |
|
633 |
rnc <- gets roomsClients |
|
634 |
si <- gets serverInfo |
|
635 |
newClId <- io $ do |
|
636 |
ci <- addClient rnc cl |
|
10259
c85d241d9cc9
committing patch from issue 798, as requested by unC0Rr
sheepluva
parents:
10216
diff
changeset
|
637 |
_ <- Exception.mask (\x -> forkIO $ clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci x) |
5184 | 638 |
|
639 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
640 |
||
641 |
return ci |
|
642 |
||
643 |
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
|
644 |
|
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
645 |
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
|
646 |
pass <- io $ joinsSentry jm (host cl) (connectTime cl) |
5184 | 647 |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
648 |
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
|
649 |
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
|
650 |
[ |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
651 |
CheckBanned True |
13512
36f3f77e9b1b
Switch from http:// to https:// URLs where possible
Wuzzy <Wuzzy2@mail.ru>
parents:
13418
diff
changeset
|
652 |
, AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server https://www.hedgewars.org/", serverVersion] |
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
653 |
] |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
654 |
else |
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
655 |
processAction $ ByeClient $ loc "Reconnected too fast" |
5184 | 656 |
|
657 |
processAction (AddNick2Bans n reason expiring) = do |
|
658 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
659 |
||
660 |
processAction (AddIP2Bans ip reason expiring) = do |
|
661 |
(Just ci) <- gets clientIndex |
|
662 |
rc <- gets removedClients |
|
663 |
when (not $ ci `Set.member` rc) |
|
664 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
665 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
666 |
|
8239 | 667 |
processAction (CheckBanned byIP) = do |
5184 | 668 |
clTime <- client's connectTime |
669 |
clNick <- client's nick |
|
670 |
clHost <- client's host |
|
671 |
si <- gets serverInfo |
|
10148 | 672 |
let (validBans, expiredBans) = L.partition (checkNotExpired clTime) $ bans si |
8239 | 673 |
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
|
674 |
mapM_ processAction $ |
10148 | 675 |
[ModifyServerInfo (\s -> s{bans = validBans}) | not $ null expiredBans] |
676 |
++ [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
|
5184 | 677 |
where |
678 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
679 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
11854 | 680 |
checkBan True ip _ (BanByIP bip _ _) = isMatch bip ip |
681 |
checkBan False _ n (BanByNick bn _ _) = isMatch bn n |
|
8239 | 682 |
checkBan _ _ _ _ = False |
11854 | 683 |
isMatch :: B.ByteString -> B.ByteString -> Bool |
14706 | 684 |
isMatch rexp src = (==) (Just True) $ mrexp rexp >>= flip matchM src |
11854 | 685 |
mrexp :: B.ByteString -> Maybe TDFAB.Regex |
686 |
mrexp = makeRegexOptsM TDFA.defaultCompOpt{TDFA.caseSensitive = False} TDFA.defaultExecOpt |
|
5184 | 687 |
getBanReason (BanByIP _ msg _) = msg |
688 |
getBanReason (BanByNick _ msg _) = msg |
|
689 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
690 |
|
5184 | 691 |
processAction PingAll = do |
692 |
rnc <- gets roomsClients |
|
693 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
694 |
cis <- io $ allClientsM rnc |
|
695 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
696 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
697 |
processAction $ AnswerClients chans ["PING"] |
|
698 |
where |
|
699 |
kickTimeouted rnc ci = do |
|
700 |
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
|
701 |
when (pq > 0) $ do |
5184 | 702 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
703 |
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
|
704 |
-- 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
|
705 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 706 |
|
707 |
||
708 |
processAction StatsAction = do |
|
5211 | 709 |
si <- gets serverInfo |
710 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
711 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
712 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
713 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 714 |
where |
715 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
716 |
||
9435 | 717 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
718 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
719 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
720 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
721 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
722 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
723 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
724 |
noticeM "Core" "Closing listening socket" |
15721 | 725 |
close sock |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
726 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
727 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
728 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
729 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 730 |
|
9435 | 731 |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
732 |
processAction Stats = do |
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
733 |
cls <- allClientsS |
8452 | 734 |
rms <- allRoomsS |
735 |
let clientsMap = Map.fromListWith (+) . map (\c -> (clientProto c, 1 :: Int)) $ cls |
|
736 |
let roomsMap = Map.fromListWith (+) . map (\c -> (roomProto c, 1 :: Int)) . filter ((/=) 0 . roomProto) $ rms |
|
737 |
let keys = Map.keysSet clientsMap `Set.union` Map.keysSet roomsMap |
|
738 |
let versionsStats = B.concat . ((:) "<table border=1>") . (flip (++) ["</table>"]) |
|
739 |
. concatMap (\p -> [ |
|
740 |
"<tr><td>", protoNumber2ver p |
|
741 |
, "</td><td>", showB $ Map.findWithDefault 0 p clientsMap |
|
742 |
, "</td><td>", showB $ Map.findWithDefault 0 p roomsMap |
|
743 |
, "</td></tr>"]) |
|
744 |
. Set.toList $ keys |
|
745 |
processAction $ Warning versionsStats |
|
746 |
||
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
747 |
|
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
748 |
processAction (Random chans items) = do |
13732
5f62417a7d84
Translate "heads" and "tails" of gameServer
Wuzzy <Wuzzy2@mail.ru>
parents:
13730
diff
changeset
|
749 |
let i = if null items then [loc "heads", loc "tails"] else items |
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
750 |
n <- io $ randomRIO (0, length i - 1) |
13732
5f62417a7d84
Translate "heads" and "tails" of gameServer
Wuzzy <Wuzzy2@mail.ru>
parents:
13730
diff
changeset
|
751 |
processAction $ AnswerClients chans ["CHAT", if null items then nickRandomCoin else nickRandomCustom, i !! n] |
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
752 |
|
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
753 |
|
11575 | 754 |
processAction (LoadGhost location) = do |
755 |
ri <- clientRoomA |
|
756 |
rnc <- gets roomsClients |
|
757 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
|
11581 | 758 |
#if defined(OFFICIAL_SERVER) |
11577
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
759 |
rm <- io $ room'sM rnc id ri |
11580 | 760 |
points <- io $ loadFile (B.unpack $ "ghosts/" `B.append` sanitizeName location) |
11577
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
761 |
when (roomProto rm > 51) $ do |
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
762 |
processAction $ ModifyRoom $ \r -> r{params = Map.insert "DRAWNMAP" [prependGhostPoints (toP points) $ head $ (params r) Map.! "DRAWNMAP"] (params r)} |
11580 | 763 |
#endif |
11575 | 764 |
cl <- client's id |
11581 | 765 |
rm <- io $ room'sM rnc id ri |
11577
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
766 |
mapM_ processAction $ map (replaceChans thisRoomChans) $ answerFullConfigParams cl (mapParams rm) (params rm) |
11575 | 767 |
where |
768 |
loadFile :: String -> IO [Int] |
|
769 |
loadFile fileName = E.handle (\(e :: SomeException) -> return []) $ do |
|
770 |
points <- liftM read $ readFile fileName |
|
771 |
return (points `deepseq` points) |
|
772 |
replaceChans chans (AnswerClients _ msg) = AnswerClients chans msg |
|
773 |
replaceChans _ a = a |
|
11577
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
774 |
toP [] = [] |
bee3a2f8e117
Finish implementation of ghost points served from server, not tested
unc0rr
parents:
11575
diff
changeset
|
775 |
toP (p1:p2:ps) = (fromIntegral p1, fromIntegral p2) : toP ps |
11575 | 776 |
{- |
777 |
let a = map (replaceChans chans) $ answerFullConfigParams cl mp p |
|
778 |
-} |
|
6012 | 779 |
#if defined(OFFICIAL_SERVER) |
5184 | 780 |
processAction SaveReplay = do |
781 |
ri <- clientRoomA |
|
782 |
rnc <- gets roomsClients |
|
8371 | 783 |
|
9437 | 784 |
readyCheckersIds <- io $ do |
5184 | 785 |
r <- room'sM rnc id ri |
786 |
saveReplay r |
|
9437 | 787 |
allci <- allClientsM rnc |
788 |
filterM (client'sM rnc isReadyChecker) allci |
|
9433 | 789 |
|
790 |
when (not $ null readyCheckersIds) $ do |
|
9439 | 791 |
oldci <- gets clientIndex |
792 |
withStateT (\s -> s{clientIndex = Just $ head readyCheckersIds}) |
|
793 |
$ processAction CheckRecord |
|
794 |
modify (\s -> s{clientIndex = oldci}) |
|
9433 | 795 |
where |
796 |
isReadyChecker cl = isChecker cl && isReady cl |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
797 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
798 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
799 |
processAction CheckRecord = do |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
800 |
p <- client's clientProto |
8482 | 801 |
c <- client's sendChan |
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
802 |
ri <- clientRoomA |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
803 |
rnc <- gets roomsClients |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
804 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
805 |
blackList <- liftM (map (recordFileName . fromJust . checkInfo) . filter (isJust . checkInfo)) allClientsS |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
806 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
807 |
(cinfo, l) <- io $ loadReplay (fromIntegral p) blackList |
10086 | 808 |
when (isJust cinfo) $ |
8509 | 809 |
mapM_ processAction [ |
810 |
AnswerClients [c] ("REPLAY" : l) |
|
9444 | 811 |
, ModifyClient $ \c -> c{checkInfo = cinfo, isReady = False} |
8509 | 812 |
] |
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
813 |
|
9433 | 814 |
|
8509 | 815 |
processAction (CheckFailed msg) = do |
11246
09a2d3988569
Also pass script information alongwith winner/achievements info, so that we could potentially have per mode ratings
unc0rr
parents:
11046
diff
changeset
|
816 |
Just (CheckInfo fileName _ _) <- client's checkInfo |
8509 | 817 |
io $ moveFailedRecord fileName |
8507 | 818 |
|
9433 | 819 |
|
8509 | 820 |
processAction (CheckSuccess info) = do |
11320
556eafd1443a
Store some more details on game config in the database
unc0rr
parents:
11246
diff
changeset
|
821 |
Just (CheckInfo fileName teams gameDetails) <- client's checkInfo |
9868 | 822 |
p <- client's clientProto |
9401 | 823 |
si <- gets serverInfo |
11320
556eafd1443a
Store some more details on game config in the database
unc0rr
parents:
11246
diff
changeset
|
824 |
when (isJust gameDetails) |
556eafd1443a
Store some more details on game config in the database
unc0rr
parents:
11246
diff
changeset
|
825 |
$ io $ writeChan (dbQueries si) $ StoreAchievements p (B.pack fileName) (map toPair teams) (fromJust gameDetails) info |
8509 | 826 |
io $ moveCheckedRecord fileName |
9399 | 827 |
where |
828 |
toPair t = (teamname t, teamowner t) |
|
8507 | 829 |
|
9786 | 830 |
processAction (QueryReplay rname) = do |
9446 | 831 |
(Just ci) <- gets clientIndex |
832 |
si <- gets serverInfo |
|
833 |
uid <- client's clUID |
|
9786 | 834 |
io $ writeChan (dbQueries si) $ GetReplayName ci (hashUnique uid) rname |
9446 | 835 |
|
9786 | 836 |
processAction (ShowReplay rname) = do |
9448 | 837 |
c <- client's sendChan |
838 |
cl <- client's id |
|
839 |
||
9786 | 840 |
let fileName = B.concat ["checked/", if B.isPrefixOf "replays/" rname then B.drop 8 rname else rname] |
9448 | 841 |
|
9786 | 842 |
cInfo <- liftIO $ E.handle (\(e :: SomeException) -> |
9448 | 843 |
warningM "REPLAYS" (B.unpack $ B.concat ["Problems reading ", fileName, ": ", B.pack $ show e]) >> return Nothing) $ do |
844 |
(t, p1, p2, msgs) <- liftM read $ readFile (B.unpack fileName) |
|
845 |
return $ Just (t, Map.fromList p1, Map.fromList p2, reverse msgs) |
|
9446 | 846 |
|
9786 | 847 |
let (teams', params1, params2, roundMsgs') = fromJust cInfo |
9448 | 848 |
|
9786 | 849 |
when (isJust cInfo) $ do |
14926
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
850 |
mapM_ processAction $ |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
851 |
if clientProto cl < 58 then |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
852 |
concat [ |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
853 |
[AnswerClients [c] ["JOINED", nick cl]] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
854 |
, answerFullConfigParams cl params1 params2 |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
855 |
, answerAllTeams cl teams' |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
856 |
, [AnswerClients [c] ["RUN_GAME"]] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
857 |
, [AnswerClients [c] $ "EM" : roundMsgs'] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
858 |
, [AnswerClients [c] ["KICKED"]] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
859 |
] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
860 |
else |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
861 |
concat [ |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
862 |
[AnswerClients [c] ["REPLAY_START"]] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
863 |
, answerFullConfigParams cl params1 params2 |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
864 |
, answerAllTeams cl teams' |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
865 |
, [AnswerClients [c] ["RUN_GAME"]] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
866 |
, [AnswerClients [c] $ "EM" : roundMsgs'] |
6b591186ab10
Server /watch: Add back KICKED for old clients, remove REPLAY_START parameter
Wuzzy <Wuzzy2@mail.ru>
parents:
14925
diff
changeset
|
867 |
] |
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
868 |
|
10195 | 869 |
processAction (SaveRoom rname) = do |
870 |
rnc <- gets roomsClients |
|
871 |
ri <- clientRoomA |
|
872 |
rm <- io $ room'sM rnc id ri |
|
13418 | 873 |
liftIO $ YAML.encodeFile (B.unpack rname) (greeting rm, roomSaves rm) |
10195 | 874 |
|
875 |
processAction (LoadRoom rname) = do |
|
13418 | 876 |
Right (g, rs) <- io $ YAML.decodeFileEither (B.unpack rname) |
10195 | 877 |
processAction $ ModifyRoom $ \r -> r{greeting = g, roomSaves = rs} |
14380 | 878 |
|
14308
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
879 |
#else |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
880 |
processAction SaveReplay = return () |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
881 |
processAction CheckRecord = return () |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
882 |
processAction (CheckFailed _) = return () |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
883 |
processAction (CheckSuccess _) = return () |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
884 |
processAction (QueryReplay _) = processAction $ Warning $ loc "This server does not support replays!" |
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
885 |
processAction (ShowReplay rname) = return () |
15429
d9a12aba5c05
GameServer: Hide saveroom and loadroom command in non-official server
Wuzzy <Wuzzy2@mail.ru>
parents:
14926
diff
changeset
|
886 |
processAction (SaveRoom rname) = return () -- TODO: Send warning that this command is unsupported |
d9a12aba5c05
GameServer: Hide saveroom and loadroom command in non-official server
Wuzzy <Wuzzy2@mail.ru>
parents:
14926
diff
changeset
|
887 |
processAction (LoadRoom rname) = return () -- TODO: Send warning that this command is unsupported |
14308
9f0d81213d65
Cut dependency on yaml for non-official server builds
unC0Rr
parents:
13732
diff
changeset
|
888 |
#endif |
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
889 |
|
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
890 |
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
|
891 |
jm <- gets joinsMonitor |
10017 | 892 |
|
9973
7589978c9912
Stub for joins monitor which is a replacement to plain ban for 10 seconds system after join
unc0rr
parents:
9868
diff
changeset
|
893 |
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
|
894 |
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
|
895 |
cleanup jm t |
10090 | 896 |
|
897 |
||
898 |
processAction (RegisterEvent e) = do |
|
899 |
actions <- registerEvent e |
|
900 |
mapM_ processAction actions |
|
10212 | 901 |
|
902 |
||
903 |
processAction (ReactCmd cmd) = do |
|
904 |
(Just ci) <- gets clientIndex |
|
905 |
rnc <- gets roomsClients |
|
906 |
actions <- liftIO $ withRoomsAndClients rnc (\irnc -> runReader (handleCmd cmd) (ci, irnc)) |
|
907 |
forM_ (actions `deepseq` actions) processAction |
|
10215 | 908 |
|
909 |
processAction CheckVotes = |
|
11575 | 910 |
checkVotes >>= mapM_ processAction |
14401
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
911 |
|
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
912 |
processAction (ShowRegisteredOnlyState chans) = do |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
913 |
si <- gets serverInfo |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
914 |
processAction $ AnswerClients chans |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
915 |
["CHAT", nickServer, |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
916 |
if isRegisteredUsersOnly si then |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
917 |
loc "This server no longer allows unregistered players to join." |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
918 |
else |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
919 |
loc "This server now allows unregistered players to join." |
8ad85859dd3f
/registered_only now tells in chat whether the state is on or off
Wuzzy <Wuzzy2@mail.ru>
parents:
14380
diff
changeset
|
920 |
] |