Skip to content

Commit

Permalink
introduce FloodLevelCommandProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui committed Jan 18, 2011
1 parent 1d66aad commit 17fce6b
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 22 deletions.
22 changes: 0 additions & 22 deletions src/main/java/com/springrts/tasserver/TASServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -570,28 +570,6 @@ public boolean tryToExecCommand(String command, Client client) {
Misc.makeSentence(commands) + "\"", ex);
return false;
}
} else if (commands[0].equals("FLOODLEVEL")) {
if (client.getAccount().getAccess().compareTo(Account.Access.ADMIN) < 0) {
return false;
}
if (commands.length == 3) {
if (commands[1].toUpperCase().equals("PERIOD")) {
int seconds = Integer.parseInt(commands[2]);
context.getServer().getFloodProtection().setReceivedRecordPeriod(seconds);
client.sendLine(new StringBuilder("SERVERMSG The antiflood period is now ")
.append(seconds).append(" seconds.").toString());
} else if (commands[1].toUpperCase().equals("USER")) {
int bytes = Integer.parseInt(commands[2]);
context.getServer().getFloodProtection().setMaxBytesAlert(bytes);
client.sendLine(new StringBuilder("SERVERMSG The antiflood amount for a normal user is now ")
.append(bytes).append(" bytes.").toString());
} else if (commands[1].toUpperCase().equals("BOT")) {
int bytes = Integer.parseInt(commands[2]);
context.getServer().getFloodProtection().setMaxBytesAlertForBot(bytes);
client.sendLine(new StringBuilder("SERVERMSG The antiflood amount for a bot is now ")
.append(bytes).append(" bytes.").toString());
}
}
} else if (commands[0].equals("KILL")) {
if (client.getAccount().getAccess().compareTo(Account.Access.ADMIN) < 0) {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import com.springrts.tasserver.Context;
import com.springrts.tasserver.ContextReceiver;
import com.springrts.tasserver.commands.impl.CreateAccountCommandProcessor;
import com.springrts.tasserver.commands.impl.FloodLevelCommandProcessor;
import com.springrts.tasserver.commands.impl.KickUserCommandProcessor;
import com.springrts.tasserver.commands.impl.OpenBattleCommandProcessor;
import com.springrts.tasserver.commands.impl.PingCommandProcessor;
Expand Down Expand Up @@ -98,6 +99,7 @@ public void init() {
commandProcessorClasses.add(RegisterCommandProcessor.class);
commandProcessorClasses.add(KickUserCommandProcessor.class);
commandProcessorClasses.add(UpTimeCommandProcessor.class);
commandProcessorClasses.add(FloodLevelCommandProcessor.class);

try {
load(commandProcessorClasses);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/*
Copyright (c) 2010 Robin Vobruba <robin.vobruba@derisk.ch>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.springrts.tasserver.commands.impl;


import com.springrts.tasserver.Account;
import com.springrts.tasserver.Client;
import com.springrts.tasserver.Misc;
import com.springrts.tasserver.commands.AbstractCommandProcessor;
import com.springrts.tasserver.commands.CommandProcessingException;
import com.springrts.tasserver.commands.SupportedCommand;
import java.util.List;

/**
* @author hoijui
*/
@SupportedCommand("FLOODLEVEL")
public class FloodLevelCommandProcessor extends AbstractCommandProcessor {

public FloodLevelCommandProcessor() {
super(2, 2, Account.Access.ADMIN);
}

@Override
public boolean process(Client client, List<String> args)
throws CommandProcessingException
{
boolean checksOk = super.process(client, args);
if (!checksOk) {
return false;
}

String type = args.get(0).toUpperCase();

if (type.equals("PERIOD")) {
int seconds = Integer.parseInt(args.get(1));
getContext().getServer().getFloodProtection().setReceivedRecordPeriod(seconds);
client.sendLine(new StringBuilder("SERVERMSG The antiflood period is now ")
.append(seconds).append(" seconds.").toString());
} else if (type.equals("USER")) {
int bytes = Integer.parseInt(args.get(1));
getContext().getServer().getFloodProtection().setMaxBytesAlert(bytes);
client.sendLine(new StringBuilder("SERVERMSG The antiflood amount for a normal user is now ")
.append(bytes).append(" bytes.").toString());
} else if (type.equals("BOT")) {
int bytes = Integer.parseInt(args.get(1));
getContext().getServer().getFloodProtection().setMaxBytesAlertForBot(bytes);
client.sendLine(new StringBuilder("SERVERMSG The antiflood amount for a bot is now ")
.append(bytes).append(" bytes.").toString());
}

return true;
}
}

0 comments on commit 17fce6b

Please sign in to comment.