/*
* 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.friend;
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.clientpackets.L2GameClientPacket;
import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
import com.l2jserver.gameserver.network.serverpackets.friend.FriendList;
import com.l2jserver.gameserver.network.serverpackets.friend.FriendRemove;
/**
* 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_IS_NOT_ON_YOUR_FRIEND_LIST);
sm.addString(_name);
activeChar.sendPacket(sm);
return;
}
if (!activeChar.getFriendList().containsKey(id))
{
sm = SystemMessage.getSystemMessage(SystemMessageId.C1_IS_NOT_ON_YOUR_FRIEND_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(id);
activeChar.sendPacket(new FriendRemove(_name, 1));
L2PcInstance player = L2World.getInstance().getPlayer(_name);
if (player != null)
{
player.getFriendList().remove(Integer.valueOf(activeChar.getObjectId()));
player.sendPacket(new FriendRemove(activeChar.getName(), 1));
player.sendPacket(new FriendList(player));
}
activeChar.sendPacket(new FriendList(activeChar));
}
catch (Exception e)
{
_log.log(Level.WARNING, "could not del friend objectid: ", e);
}
}
@Override
public String getType()
{
return _C__7A_REQUESTFRIENDDEL;
}
}