/* * Copyright (C) 2004-2015 L2J Server * * This file is part of L2J Server. * * L2J Server 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. * * L2J Server 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.l2jserver.gameserver.network.clientpackets; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; import com.l2jserver.Config; import com.l2jserver.gameserver.enums.ChatType; import com.l2jserver.gameserver.handler.ChatHandler; import com.l2jserver.gameserver.handler.IChatHandler; import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.effects.L2EffectType; import com.l2jserver.gameserver.model.events.EventDispatcher; import com.l2jserver.gameserver.model.events.impl.character.player.OnPlayerChat; import com.l2jserver.gameserver.model.events.returns.ChatFilterReturn; import com.l2jserver.gameserver.model.items.instance.L2ItemInstance; import com.l2jserver.gameserver.network.SystemMessageId; import com.l2jserver.gameserver.network.serverpackets.ActionFailed; import com.l2jserver.gameserver.util.Util; /** * This class ... * @version $Revision: 1.16.2.12.2.7 $ $Date: 2005/04/11 10:06:11 $ */ public final class Say2 extends L2GameClientPacket { private static final String _C__49_SAY2 = "[C] 49 Say2"; private static Logger _logChat = Logger.getLogger("chat"); private static final String[] WALKER_COMMAND_LIST = { "USESKILL", "USEITEM", "BUYITEM", "SELLITEM", "SAVEITEM", "LOADITEM", "MSG", "DELAY", "LABEL", "JMP", "CALL", "RETURN", "MOVETO", "NPCSEL", "NPCDLG", "DLGSEL", "CHARSTATUS", "POSOUTRANGE", "POSINRANGE", "GOHOME", "SAY", "EXIT", "PAUSE", "STRINDLG", "STRNOTINDLG", "CHANGEWAITTYPE", "FORCEATTACK", "ISMEMBER", "REQUESTJOINPARTY", "REQUESTOUTPARTY", "QUITPARTY", "MEMBERSTATUS", "CHARBUFFS", "ITEMCOUNT", "FOLLOWTELEPORT" }; private String _text; private int _type; private String _target; @Override protected void readImpl() { _text = readS(); _type = readD(); _target = (_type == ChatType.WHISPER.getClientId()) ? readS() : null; } @Override protected void runImpl() { if (Config.DEBUG) { _log.info("Say2: Msg Type = '" + _type + "' Text = '" + _text + "'."); } final L2PcInstance activeChar = getClient().getActiveChar(); if (activeChar == null) { return; } ChatType chatType = ChatType.findByClientId(_type); if (chatType == null) { _log.warning("Say2: Invalid type: " + _type + " Player : " + activeChar.getName() + " text: " + String.valueOf(_text)); activeChar.sendPacket(ActionFailed.STATIC_PACKET); activeChar.logout(); return; } if (_text.isEmpty()) { _log.warning(activeChar.getName() + ": sending empty text. Possible packet hack!"); activeChar.sendPacket(ActionFailed.STATIC_PACKET); activeChar.logout(); return; } // Even though the client can handle more characters than it's current limit allows, an overflow (critical error) happens if you pass a huge (1000+) message. // July 11, 2011 - Verified on High Five 4 official client as 105. // Allow higher limit if player shift some item (text is longer then). if (!activeChar.isGM() && (((_text.indexOf(8) >= 0) && (_text.length() > 500)) || ((_text.indexOf(8) < 0) && (_text.length() > 105)))) { activeChar.sendPacket(SystemMessageId.WHEN_A_USER_S_KEYBOARD_INPUT_EXCEEDS_A_CERTAIN_CUMULATIVE_SCORE_A_CHAT_BAN_WILL_BE_APPLIED_THIS_IS_DONE_TO_DISCOURAGE_SPAMMING_PLEASE_AVOID_POSTING_THE_SAME_MESSAGE_MULTIPLE_TIMES_DURING_A_SHORT_PERIOD); return; } if (Config.L2WALKER_PROTECTION && (chatType == ChatType.WHISPER) && checkBot(_text)) { Util.handleIllegalPlayerAction(activeChar, "Client Emulator Detect: Player " + activeChar.getName() + " using l2walker.", Config.DEFAULT_PUNISH); return; } if (activeChar.isCursedWeaponEquipped() && ((chatType == ChatType.TRADE) || (chatType == ChatType.SHOUT))) { activeChar.sendPacket(SystemMessageId.SHOUT_AND_TRADE_CHATTING_CANNOT_BE_USED_WHILE_POSSESSING_A_CURSED_WEAPON); return; } if (activeChar.isChatBanned() && (_text.charAt(0) != '.')) { if (activeChar.getEffectList().getFirstEffect(L2EffectType.CHAT_BLOCK) != null) { activeChar.sendPacket(SystemMessageId.YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_CHATTING_IS_NOT_ALLOWED); } else { if (Config.BAN_CHAT_CHANNELS.contains(chatType)) { activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER); } } return; } if (activeChar.isJailed() && Config.JAIL_DISABLE_CHAT) { if ((chatType == ChatType.WHISPER) || (chatType == ChatType.SHOUT) || (chatType == ChatType.TRADE) || (chatType == ChatType.HERO_VOICE)) { activeChar.sendMessage("You can not chat with players outside of the jail."); return; } } if ((chatType == ChatType.PETITION_PLAYER) && activeChar.isGM()) { chatType = ChatType.PETITION_GM; } if (Config.LOG_CHAT) { final LogRecord record = new LogRecord(Level.INFO, _text); record.setLoggerName("chat"); if (chatType == ChatType.WHISPER) { record.setParameters(new Object[] { chatType.name(), "[" + activeChar.getName() + " to " + _target + "]" }); } else { record.setParameters(new Object[] { chatType.name(), "[" + activeChar.getName() + "]" }); } _logChat.log(record); } if (_text.indexOf(8) >= 0) { if (!parseAndPublishItem(activeChar)) { return; } } final ChatFilterReturn filter = EventDispatcher.getInstance().notifyEvent(new OnPlayerChat(activeChar, L2World.getInstance().getPlayer(_target), _text, chatType), ChatFilterReturn.class); if (filter != null) { _text = filter.getFilteredText(); } // Say Filter implementation if (Config.USE_SAY_FILTER) { checkText(); } final IChatHandler handler = ChatHandler.getInstance().getHandler(chatType); if (handler != null) { handler.handleChat(chatType, activeChar, _target, _text); } else { _log.info("No handler registered for ChatType: " + _type + " Player: " + getClient()); } } private boolean checkBot(String text) { for (String botCommand : WALKER_COMMAND_LIST) { if (text.startsWith(botCommand)) { return true; } } return false; } private void checkText() { String filteredText = _text; for (String pattern : Config.FILTER_LIST) { filteredText = filteredText.replaceAll("(?i)" + pattern, Config.CHAT_FILTER_CHARS); } _text = filteredText; } private boolean parseAndPublishItem(L2PcInstance owner) { int pos1 = -1; while ((pos1 = _text.indexOf(8, pos1)) > -1) { int pos = _text.indexOf("ID=", pos1); if (pos == -1) { return false; } StringBuilder result = new StringBuilder(9); pos += 3; while (Character.isDigit(_text.charAt(pos))) { result.append(_text.charAt(pos++)); } final int id = Integer.parseInt(result.toString()); final L2Object item = L2World.getInstance().findObject(id); if (item.isItem()) { if (owner.getInventory().getItemByObjectId(id) == null) { _log.info(getClient() + " trying publish item which doesnt own! ID:" + id); return false; } ((L2ItemInstance) item).publish(); } else { _log.info(getClient() + " trying publish object which is not item! Object:" + item); return false; } pos1 = _text.indexOf(8, pos) + 1; if (pos1 == 0) // missing ending tag { _log.info(getClient() + " sent invalid publish item msg! ID:" + id); return false; } } return true; } @Override public String getType() { return _C__49_SAY2; } @Override protected boolean triggersOnActionRequest() { return false; } }