/* * This program 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. * * This program 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.loginserver.network.gameserverpackets; import java.net.UnknownHostException; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import com.l2jserver.L2DatabaseFactory; import com.l2jserver.loginserver.LoginController; import com.l2jserver.util.network.BaseRecievePacket; /** * * @author mrTJO */ public class RequestTempBan extends BaseRecievePacket { String _accountName, _banReason, _ip; long _banTime; /** * @param decrypt */ public RequestTempBan(byte[] decrypt) { super(decrypt); _accountName = readS(); _ip = readS(); _banTime = readQ(); boolean haveReason = readC() == 0 ? false : true; if (haveReason) { _banReason = readS(); } banUser(); } private void banUser() { Connection con = null; try { con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement("INSERT INTO account_data VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE value=?"); statement.setString(1, _accountName); statement.setString(2, "ban_temp"); statement.setString(3, Long.toString(_banTime)); statement.setString(4, Long.toString(_banTime)); statement.execute(); statement.close(); } catch (SQLException e) { e.printStackTrace(); } finally { L2DatabaseFactory.close(con); } try { LoginController.getInstance().addBanForAddress(_ip, _banTime); } catch (UnknownHostException e) { } } }