123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431 |
- /*
- * 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 3 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 handlers.admincommandhandlers;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.SQLException;
- import java.util.StringTokenizer;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.LoginServerThread;
- import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
- import com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.util.GMAudit;
- /**
- * This class handles following admin commands:
- * - ban_acc <account_name> = changes account access level to -1 and logs him off. If no account is specified target's account is used.
- * - ban_char <char_name> = changes a characters access level to -1 and logs him off. If no character is specified target is used.
- * - ban_chat <char_name> <duration> = chat bans a character for the specified duration. If no name is specified the target is chat banned indefinitely.
- * - unban_acc <account_name> = changes account access level to 0.
- * - unban_char <char_name> = changes specified characters access level to 0.
- * - unban_chat <char_name> = lifts chat ban from specified player. If no player name is specified current target is used.
- * - jail charname [penalty_time] = jails character. Time specified in minutes. For ever if no time is specified.
- * - unjail charname = Unjails player, teleport him to Floran.
- *
- * @version $Revision: 1.1.6.3 $ $Date: 2005/04/11 10:06:06 $
- * con.close() change by Zoey76 24/02/2011
- */
- public class AdminBan implements IAdminCommandHandler
- {
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_ban", // returns ban commands
- "admin_ban_acc",
- "admin_ban_char",
- "admin_ban_chat",
- "admin_unban", // returns unban commands
- "admin_unban_acc",
- "admin_unban_char",
- "admin_unban_chat",
- "admin_jail",
- "admin_unjail"
- };
-
- @Override
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- StringTokenizer st = new StringTokenizer(command);
- st.nextToken();
- String player = "";
- int duration = -1;
- L2PcInstance targetPlayer = null;
-
- if (st.hasMoreTokens())
- {
- player = st.nextToken();
- targetPlayer = L2World.getInstance().getPlayer(player);
-
- if (st.hasMoreTokens())
- {
- try
- {
- duration = Integer.parseInt(st.nextToken());
- }
- catch (NumberFormatException nfe)
- {
- activeChar.sendMessage("Invalid number format used: " + nfe);
- return false;
- }
- }
- }
- else
- {
- if (activeChar.getTarget() != null && activeChar.getTarget().isPlayer())
- {
- targetPlayer = activeChar.getTarget().getActingPlayer();
- }
- }
-
- if (targetPlayer != null && targetPlayer.equals(activeChar))
- {
- activeChar.sendPacket(SystemMessageId.CANNOT_USE_ON_YOURSELF);
- return false;
- }
-
- if (command.startsWith("admin_ban ") || command.equalsIgnoreCase("admin_ban"))
- {
- activeChar.sendMessage("Available ban commands: //ban_acc, //ban_char, //ban_chat");
- return false;
- }
- else if (command.startsWith("admin_ban_acc"))
- {
- // May need to check usage in admin_ban_menu as well.
-
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //ban_acc <account_name> (if none, target char's account gets banned)");
- return false;
- }
- else if (targetPlayer == null)
- {
- LoginServerThread.getInstance().sendAccessLevel(player, -1);
- activeChar.sendMessage("Ban request sent for account "+player);
- auditAction(command, activeChar, player);
- }
- else
- {
- targetPlayer.setPunishLevel(L2PcInstance.PunishLevel.ACC, 0);
- activeChar.sendMessage("Account "+targetPlayer.getAccountName()+" banned.");
- auditAction(command, activeChar, targetPlayer.getAccountName());
- }
- }
- else if (command.startsWith("admin_ban_char"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //ban_char <char_name> (if none, target char is banned)");
- return false;
- }
- auditAction(command, activeChar, (targetPlayer == null ? player : targetPlayer.getName()));
- return changeCharAccessLevel(targetPlayer, player, activeChar, -1);
- }
- else if (command.startsWith("admin_ban_chat"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //ban_chat <char_name> [penalty_minutes]");
- return false;
- }
- if (targetPlayer != null)
- {
- if (targetPlayer.getPunishLevel().value() > 0)
- {
- activeChar.sendMessage(targetPlayer.getName()+" is already jailed or banned.");
- return false;
- }
- String banLengthStr = "";
-
- targetPlayer.setPunishLevel(L2PcInstance.PunishLevel.CHAT, duration);
- if (duration > 0)
- banLengthStr = " for " + duration + " minutes";
- activeChar.sendMessage(targetPlayer.getName() + " is now chat banned" + banLengthStr + ".");
- auditAction(command, activeChar, targetPlayer.getName());
- }
- else
- {
- banChatOfflinePlayer(activeChar, player, duration, true);
- auditAction(command, activeChar, player);
- }
- }
- else if (command.startsWith("admin_unban_chat"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //unban_chat <char_name>");
- return false;
- }
- if (targetPlayer != null)
- {
- if (targetPlayer.isChatBanned())
- {
- targetPlayer.setPunishLevel(L2PcInstance.PunishLevel.NONE, 0);
- activeChar.sendMessage(targetPlayer.getName() + "'s chat ban has now been lifted.");
- auditAction(command, activeChar, targetPlayer.getName());
- }
- else
- {
- activeChar.sendMessage(targetPlayer.getName() + " is not currently chat banned.");
- }
- }
- else
- {
- banChatOfflinePlayer(activeChar, player, 0, false);
- auditAction(command, activeChar, player);
- }
- }
- else if (command.startsWith("admin_unban ") || command.equalsIgnoreCase("admin_unban"))
- {
- activeChar.sendMessage("Available unban commands: //unban_acc, //unban_char, //unban_chat");
- return false;
- }
- else if (command.startsWith("admin_unban_acc"))
- {
- // Need to check admin_unban_menu command as well in AdminMenu.java handler.
-
- if (targetPlayer != null)
- {
- activeChar.sendMessage(targetPlayer.getName()+" is currently online so must not be banned.");
- return false;
- }
- else if (!player.isEmpty())
- {
- LoginServerThread.getInstance().sendAccessLevel(player, 0);
- activeChar.sendMessage("Unban request sent for account "+player);
- auditAction(command, activeChar, player);
- }
- else
- {
- activeChar.sendMessage("Usage: //unban_acc <account_name>");
- return false;
- }
- }
- else if (command.startsWith("admin_unban_char"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //unban_char <char_name>");
- return false;
- }
- else if (targetPlayer != null)
- {
- activeChar.sendMessage(targetPlayer.getName()+" is currently online so must not be banned.");
- return false;
- }
- else
- {
- auditAction(command, activeChar, player);
- return changeCharAccessLevel(null, player, activeChar, 0);
- }
- }
- else if (command.startsWith("admin_jail"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //jail <charname> [penalty_minutes] (if no name is given, selected target is jailed indefinitely)");
- return false;
- }
- if (targetPlayer != null)
- {
- if (targetPlayer.isFlyingMounted())
- targetPlayer.untransform();
- targetPlayer.setPunishLevel(L2PcInstance.PunishLevel.JAIL, duration);
- activeChar.sendMessage("Character "+targetPlayer.getName()+" jailed for "+(duration>0 ? duration+" minutes." : "ever!"));
- auditAction(command, activeChar, targetPlayer.getName());
- }
- else
- {
- jailOfflinePlayer(activeChar, player, duration);
- auditAction(command, activeChar, player);
- }
- }
- else if (command.startsWith("admin_unjail"))
- {
- if (targetPlayer == null && player.isEmpty())
- {
- activeChar.sendMessage("Usage: //unjail <charname> (If no name is given target is used)");
- return false;
- }
- else if (targetPlayer != null)
- {
- targetPlayer.setPunishLevel(L2PcInstance.PunishLevel.NONE, 0);
- activeChar.sendMessage("Character "+targetPlayer.getName()+" removed from jail");
- auditAction(command, activeChar, targetPlayer.getName());
- }
- else
- {
- unjailOfflinePlayer(activeChar, player);
- auditAction(command, activeChar, player);
- }
- }
- return true;
- }
-
- private void auditAction(String fullCommand, L2PcInstance activeChar, String target)
- {
- if (!Config.GMAUDIT)
- return;
-
- String[] command = fullCommand.split(" ");
-
- GMAudit.auditGMAction(activeChar.getName()+" ["+activeChar.getObjectId()+"]", command[0], (target.isEmpty() ? "no-target" : target), (command.length > 2 ? command[2] : ""));
- }
-
- private void banChatOfflinePlayer(L2PcInstance activeChar, String name, int delay, boolean ban)
- {
- int level = 0;
- long value = 0;
- if(ban)
- {
- level = L2PcInstance.PunishLevel.CHAT.value();
- value = (delay > 0 ? delay * 60000L : 60000);
- }
- else
- {
- level = L2PcInstance.PunishLevel.NONE.value();
- value = 0;
- }
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection())
- {
- PreparedStatement statement = con.prepareStatement("UPDATE characters SET punish_level=?, punish_timer=? WHERE char_name=?");
- statement.setInt(1, level);
- statement.setLong(2, value);
- statement.setString(3, name);
-
- statement.execute();
- int count = statement.getUpdateCount();
- statement.close();
-
- if (count == 0)
- activeChar.sendMessage("Character not found!");
- else
- if(ban)
- activeChar.sendMessage("Character " + name + " chat-banned for " + (delay > 0 ? delay + " minutes." : "ever!"));
- else
- activeChar.sendMessage("Character " + name + "'s chat-banned lifted");
- }
- catch (SQLException se)
- {
- activeChar.sendMessage("SQLException while chat-banning player");
- if (Config.DEBUG)
- se.printStackTrace();
- }
- }
-
- private void jailOfflinePlayer(L2PcInstance activeChar, String name, int delay)
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection())
- {
- PreparedStatement statement = con.prepareStatement("UPDATE characters SET x=?, y=?, z=?, punish_level=?, punish_timer=? WHERE char_name=?");
- statement.setInt(1, -114356);
- statement.setInt(2, -249645);
- statement.setInt(3, -2984);
- statement.setInt(4, L2PcInstance.PunishLevel.JAIL.value());
- statement.setLong(5, (delay > 0 ? delay * 60000L : 0));
- statement.setString(6, name);
-
- statement.execute();
- int count = statement.getUpdateCount();
- statement.close();
-
- if (count == 0)
- activeChar.sendMessage("Character not found!");
- else
- activeChar.sendMessage("Character " + name + " jailed for " + (delay > 0 ? delay + " minutes." : "ever!"));
- }
- catch (SQLException se)
- {
- activeChar.sendMessage("SQLException while jailing player");
- if (Config.DEBUG)
- se.printStackTrace();
- }
- }
-
- private void unjailOfflinePlayer(L2PcInstance activeChar, String name)
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection())
- {
- PreparedStatement statement = con.prepareStatement("UPDATE characters SET x=?, y=?, z=?, punish_level=?, punish_timer=? WHERE char_name=?");
- statement.setInt(1, 17836);
- statement.setInt(2, 170178);
- statement.setInt(3, -3507);
- statement.setInt(4, 0);
- statement.setLong(5, 0);
- statement.setString(6, name);
- statement.execute();
- int count = statement.getUpdateCount();
- statement.close();
- if (count == 0)
- activeChar.sendMessage("Character not found!");
- else
- activeChar.sendMessage("Character " + name + " removed from jail");
- }
- catch (SQLException se)
- {
- activeChar.sendMessage("SQLException while jailing player");
- if (Config.DEBUG)
- se.printStackTrace();
- }
- }
-
- private boolean changeCharAccessLevel(L2PcInstance targetPlayer, String player, L2PcInstance activeChar, int lvl)
- {
- if (targetPlayer != null)
- {
- targetPlayer.setAccessLevel(lvl);
- targetPlayer.sendMessage("Your character has been banned. Goodbye.");
- targetPlayer.logout();
- RegionBBSManager.getInstance().changeCommunityBoard();
- activeChar.sendMessage("The character " + targetPlayer.getName() + " has now been banned.");
- }
- else
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection())
- {
- PreparedStatement statement = con.prepareStatement("UPDATE characters SET accesslevel=? WHERE char_name=?");
- statement.setInt(1, lvl);
- statement.setString(2, player);
- statement.execute();
- int count = statement.getUpdateCount();
- statement.close();
- if (count == 0)
- {
- activeChar.sendMessage("Character not found or access level unaltered.");
- return false;
- }
- activeChar.sendMessage(player + " now has an access level of " + lvl);
- }
- catch (SQLException se)
- {
- activeChar.sendMessage("SQLException while changing character's access level");
- if (Config.DEBUG)
- se.printStackTrace();
- return false;
- }
- }
- return true;
- }
-
- @Override
- public String[] getAdminCommandList() {
- return ADMIN_COMMANDS;
- }
- }
|