123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*
- * Copyright (C) 2004-2014 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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 DataPack 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.communityboard;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.text.SimpleDateFormat;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.cache.HtmCache;
- import com.l2jserver.gameserver.handler.CommunityBoardHandler;
- import com.l2jserver.gameserver.handler.IParseBoardHandler;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Favorite board.
- * @author Zoey76
- */
- public class FavoriteBoard implements IParseBoardHandler
- {
- // SQL Queries
- private static final String SELECT_FAVORITES = "SELECT * FROM `bbs_favorites` WHERE `playerId`=? ORDER BY `favAddDate` DESC";
- private static final String DELETE_FAVORITE = "DELETE FROM `bbs_favorites` WHERE `playerId`=? AND `favId`=?";
- private static final String ADD_FAVORITE = "REPLACE INTO `bbs_favorites`(`playerId`, `favTitle`, `favBypass`) VALUES(?, ?, ?)";
-
- private static final String[] COMMANDS =
- {
- "_bbsgetfav",
- "bbs_add_fav",
- "_bbsdelfav_"
- };
-
- @Override
- public String[] getCommunityBoardCommands()
- {
- return COMMANDS;
- }
-
- @Override
- public boolean parseCommunityBoardCommand(String command, L2PcInstance activeChar)
- {
- // None of this commands can be added to favorites.
- if (command.startsWith("_bbsgetfav"))
- {
- // Load Favorite links
- final String list = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/favorite_list.html");
- final StringBuilder sb = new StringBuilder();
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(SELECT_FAVORITES))
- {
- ps.setInt(1, activeChar.getObjectId());
- try (ResultSet rs = ps.executeQuery())
- {
- while (rs.next())
- {
- String link = list.replaceAll("%fav_bypass%", String.valueOf(rs.getString("favBypass")));
- link = link.replaceAll("%fav_title%", rs.getString("favTitle"));
- final SimpleDateFormat date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- link = link.replaceAll("%fav_add_date%", date.format(rs.getTimestamp("favAddDate")));
- link = link.replaceAll("%fav_id%", String.valueOf(rs.getInt("favId")));
- sb.append(link);
- }
- }
- String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/favorite.html");
- html = html.replaceAll("%fav_list%", sb.toString());
- CommunityBoardHandler.separateAndSend(html, activeChar);
- }
- catch (Exception e)
- {
- LOG.warning(FavoriteBoard.class.getSimpleName() + ": Couldn't load favorite links for player " + activeChar.getName());
- }
- }
- else if (command.startsWith("bbs_add_fav"))
- {
- final String bypass = CommunityBoardHandler.getInstance().removeBypass(activeChar);
- if (bypass != null)
- {
- final String[] parts = bypass.split("&", 2);
- if (parts.length != 2)
- {
- LOG.warning(FavoriteBoard.class.getSimpleName() + ": Couldn't add favorite link, " + bypass + " it's not a valid bypass!");
- return false;
- }
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(ADD_FAVORITE))
- {
- ps.setInt(1, activeChar.getObjectId());
- ps.setString(2, parts[0].trim());
- ps.setString(3, parts[1].trim());
- ps.execute();
- // Callback
- parseCommunityBoardCommand("_bbsgetfav", activeChar);
- }
- catch (Exception e)
- {
- LOG.warning(FavoriteBoard.class.getSimpleName() + ": Couldn't add favorite link " + bypass + " for player " + activeChar.getName());
- }
- }
- }
- else if (command.startsWith("_bbsdelfav_"))
- {
- final String favId = command.replaceAll("_bbsdelfav_", "");
- if (!Util.isDigit(favId))
- {
- LOG.warning(FavoriteBoard.class.getSimpleName() + ": Couldn't delete favorite link, " + favId + " it's not a valid ID!");
- return false;
- }
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(DELETE_FAVORITE))
- {
- ps.setInt(1, activeChar.getObjectId());
- ps.setInt(2, Integer.parseInt(favId));
- ps.execute();
- // Callback
- parseCommunityBoardCommand("_bbsgetfav", activeChar);
- }
- catch (Exception e)
- {
- LOG.warning(FavoriteBoard.class.getSimpleName() + ": Couldn't delete favorite link ID " + favId + " for player " + activeChar.getName());
- }
- }
- return true;
- }
- }
|