123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * 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.sql.Connection;
- import java.sql.PreparedStatement;
- import java.util.logging.Level;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.data.sql.impl.CharNameTable;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.FriendPacket;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * This class ...
- * @version $Revision: 1.3.4.2 $ $Date: 2005/03/27 15:29:30 $
- */
- public final class RequestFriendDel extends L2GameClientPacket
- {
-
- private static final String _C__7A_REQUESTFRIENDDEL = "[C] 7A RequestFriendDel";
-
- private String _name;
-
- @Override
- protected void readImpl()
- {
- _name = readS();
- }
-
- @Override
- protected void runImpl()
- {
- SystemMessage sm;
-
- L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- {
- return;
- }
-
- int id = CharNameTable.getInstance().getIdByName(_name);
-
- if (id == -1)
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.C1_NOT_ON_YOUR_FRIENDS_LIST);
- sm.addString(_name);
- activeChar.sendPacket(sm);
- return;
- }
-
- if (!activeChar.getFriendList().contains(id))
- {
- sm = SystemMessage.getSystemMessage(SystemMessageId.C1_NOT_ON_YOUR_FRIENDS_LIST);
- sm.addString(_name);
- activeChar.sendPacket(sm);
- return;
- }
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("DELETE FROM character_friends WHERE (charId=? AND friendId=?) OR (charId=? AND friendId=?)"))
- {
- statement.setInt(1, activeChar.getObjectId());
- statement.setInt(2, id);
- statement.setInt(3, id);
- statement.setInt(4, activeChar.getObjectId());
- statement.execute();
-
- // Player deleted from your friend list
- sm = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_BEEN_DELETED_FROM_YOUR_FRIENDS_LIST);
- sm.addString(_name);
- activeChar.sendPacket(sm);
-
- activeChar.getFriendList().remove(Integer.valueOf(id));
- activeChar.sendPacket(new FriendPacket(false, id));
-
- L2PcInstance player = L2World.getInstance().getPlayer(_name);
- if (player != null)
- {
- player.getFriendList().remove(Integer.valueOf(activeChar.getObjectId()));
- player.sendPacket(new FriendPacket(false, activeChar.getObjectId()));
- }
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "could not del friend objectid: ", e);
- }
- }
-
- @Override
- public String getType()
- {
- return _C__7A_REQUESTFRIENDDEL;
- }
- }
|