/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/model/BlockList.java
242 строки
8 KB
Zoey76
Copyright Update
01 янв 2025, 07:57
01 янв 2025, 07:57
16130a5
Код
Авторство
О чём код?
/* * Copyright © 2004-2025 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.model; import static com.l2jserver.gameserver.config.Configuration.character; import static com.l2jserver.gameserver.network.SystemMessageId.BLOCK_LIST_HEADER; import static com.l2jserver.gameserver.network.SystemMessageId.FRIEND_LIST_FOOTER; import static com.l2jserver.gameserver.network.SystemMessageId.S1_ALREADY_IN_FRIENDS_LIST; import static com.l2jserver.gameserver.network.SystemMessageId.S1_HAS_ADDED_YOU_TO_IGNORE_LIST; import static com.l2jserver.gameserver.network.SystemMessageId.S1_WAS_ADDED_TO_YOUR_IGNORE_LIST; import static com.l2jserver.gameserver.network.SystemMessageId.S1_WAS_REMOVED_FROM_YOUR_IGNORE_LIST; import static com.l2jserver.gameserver.network.SystemMessageId.TARGET_IS_INCORRECT; import static com.l2jserver.gameserver.network.SystemMessageId.YOU_CAN_ONLY_ENTER_UP_TO_128_NAMES_IN_YOUR_BLOCK_LIST; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.l2jserver.commons.database.ConnectionFactory; import com.l2jserver.gameserver.data.sql.impl.CharNameTable; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.serverpackets.SystemMessage; // TODO(Zoey76): Rewrite this class in an OOP style. public class BlockList { private static final Logger LOG = LoggerFactory.getLogger(BlockList.class); private static final Map<Integer, List<Integer>> OFFLINE_LIST = new ConcurrentHashMap<>(); private final L2PcInstance _owner; private List<Integer> _blockList; public BlockList(L2PcInstance owner) { _owner = owner; _blockList = OFFLINE_LIST.get(owner.getObjectId()); if (_blockList == null) { _blockList = loadList(_owner.getObjectId()); } } private void addToBlockList(int target) { _blockList.add(target); persistInDB(target); } private void removeFromBlockList(int target) { _blockList.remove(Integer.valueOf(target)); removeFromDB(target); } public void playerLogout() { OFFLINE_LIST.put(_owner.getObjectId(), _blockList); } private static List<Integer> loadList(int ObjId) { List<Integer> list = new ArrayList<>(); try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement("SELECT friendId FROM character_friends WHERE charId=? AND relation=1")) { ps.setInt(1, ObjId); try (var rs = ps.executeQuery()) { int friendId; while (rs.next()) { friendId = rs.getInt("friendId"); if (friendId == ObjId) { continue; } list.add(friendId); } } } catch (Exception e) { LOG.warn("Error found in {} FriendList while loading BlockList: {}", ObjId, e.getMessage(), e); } return list; } private void removeFromDB(int targetId) { try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement("DELETE FROM character_friends WHERE charId=? AND friendId=? AND relation=1")) { ps.setInt(1, _owner.getObjectId()); ps.setInt(2, targetId); ps.execute(); } catch (Exception e) { LOG.warn("Could not remove blocked player: {}", e.getMessage(), e); } } private void persistInDB(int targetId) { try (var con = ConnectionFactory.getInstance().getConnection(); var ps = con.prepareStatement("INSERT INTO character_friends (charId, friendId, relation) VALUES (?, ?, 1)")) { ps.setInt(1, _owner.getObjectId()); ps.setInt(2, targetId); ps.execute(); } catch (Exception e) { LOG.warn("Could not add blocked player: {}", e.getMessage(), e); } } public boolean isInBlockList(L2PcInstance target) { return isInBlockList(target.getObjectId()); } public boolean isInBlockList(int targetId) { return _blockList.contains(targetId); } private boolean isBlockAll() { return _owner.getMessageRefusal(); } public static boolean isBlocked(L2PcInstance listOwner, L2PcInstance target) { BlockList blockList = listOwner.getBlockList(); return blockList.isBlockAll() || blockList.isInBlockList(target); } public static boolean isBlocked(L2PcInstance listOwner, int targetId) { BlockList blockList = listOwner.getBlockList(); return blockList.isBlockAll() || blockList.isInBlockList(targetId); } private void setBlockAll(boolean state) { _owner.setMessageRefusal(state); } private List<Integer> getBlockList() { return _blockList; } public static void addToBlockList(L2PcInstance listOwner, int targetId) { if (listOwner == null) { return; } if (listOwner.getBlockList().getBlockList().size() >= character().getBlockListLimit()) { listOwner.sendPacket(YOU_CAN_ONLY_ENTER_UP_TO_128_NAMES_IN_YOUR_BLOCK_LIST); return; } String charName = CharNameTable.getInstance().getNameById(targetId); if (listOwner.isFriend(targetId)) { final var sm = SystemMessage.getSystemMessage(S1_ALREADY_IN_FRIENDS_LIST); sm.addString(charName); listOwner.sendPacket(sm); return; } if (listOwner.getBlockList().getBlockList().contains(targetId)) { listOwner.sendMessage("Already in ignore list."); return; } listOwner.getBlockList().addToBlockList(targetId); var sm = SystemMessage.getSystemMessage(S1_WAS_ADDED_TO_YOUR_IGNORE_LIST); sm.addString(charName); listOwner.sendPacket(sm); L2PcInstance player = L2World.getInstance().getPlayer(targetId); if (player != null) { sm = SystemMessage.getSystemMessage(S1_HAS_ADDED_YOU_TO_IGNORE_LIST); sm.addString(listOwner.getName()); player.sendPacket(sm); } } public static void removeFromBlockList(L2PcInstance listOwner, int targetId) { if (listOwner == null) { return; } String charName = CharNameTable.getInstance().getNameById(targetId); if (!listOwner.getBlockList().getBlockList().contains(targetId)) { listOwner.sendPacket(TARGET_IS_INCORRECT); return; } listOwner.getBlockList().removeFromBlockList(targetId); final var sm = SystemMessage.getSystemMessage(S1_WAS_REMOVED_FROM_YOUR_IGNORE_LIST); sm.addString(charName); listOwner.sendPacket(sm); } public static boolean isInBlockList(L2PcInstance listOwner, L2PcInstance target) { return listOwner.getBlockList().isInBlockList(target); } public boolean isBlockAll(L2PcInstance listOwner) { return listOwner.getBlockList().isBlockAll(); } public static void setBlockAll(L2PcInstance listOwner, boolean newValue) { listOwner.getBlockList().setBlockAll(newValue); } public static void sendListToOwner(L2PcInstance listOwner) { int i = 1; listOwner.sendPacket(BLOCK_LIST_HEADER); for (int playerId : listOwner.getBlockList().getBlockList()) { listOwner.sendMessage((i++) + ". " + CharNameTable.getInstance().getNameById(playerId)); } listOwner.sendPacket(FRIEND_LIST_FOOTER); } /** * @param ownerId object id of owner block list * @param targetId object id of potential blocked player * @return true if blocked */ public static boolean isInBlockList(int ownerId, int targetId) { L2PcInstance player = L2World.getInstance().getPlayer(ownerId); if (player != null) { return BlockList.isBlocked(player, targetId); } if (!OFFLINE_LIST.containsKey(ownerId)) { OFFLINE_LIST.put(ownerId, loadList(ownerId)); } return OFFLINE_LIST.get(ownerId).contains(targetId); } }