99 lines
4.1 KiB
Java
99 lines
4.1 KiB
Java
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package net.server.channel.handlers;
|
|
|
|
import client.Character;
|
|
import client.Client;
|
|
import net.AbstractPacketHandler;
|
|
import net.packet.InPacket;
|
|
import net.server.Server;
|
|
import tools.DatabaseConnection;
|
|
import tools.PacketCreator;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.PreparedStatement;
|
|
import java.sql.SQLException;
|
|
import java.sql.Timestamp;
|
|
import java.time.Instant;
|
|
|
|
/*
|
|
*
|
|
* @author BubblesDev
|
|
*/
|
|
public final class ReportHandler extends AbstractPacketHandler {
|
|
public final void handlePacket(InPacket p, Client c) {
|
|
int type = p.readByte(); //00 = Illegal program claim, 01 = Conversation claim
|
|
String victim = p.readString();
|
|
int reason = p.readByte();
|
|
String description = p.readString();
|
|
if (type == 0) {
|
|
if (c.getPlayer().getPossibleReports() > 0) {
|
|
if (c.getPlayer().getMeso() > 299) {
|
|
c.getPlayer().decreaseReports();
|
|
c.getPlayer().gainMeso(-300, true);
|
|
} else {
|
|
c.sendPacket(PacketCreator.reportResponse((byte) 4));
|
|
return;
|
|
}
|
|
} else {
|
|
c.sendPacket(PacketCreator.reportResponse((byte) 2));
|
|
return;
|
|
}
|
|
Server.getInstance().broadcastGMMessage(c.getWorld(), PacketCreator.serverNotice(6, victim + " was reported for: " + description));
|
|
addReport(c.getPlayer().getId(), Character.getIdByName(victim), 0, description, "");
|
|
} else if (type == 1) {
|
|
String chatlog = p.readString();
|
|
if (chatlog == null) {
|
|
return;
|
|
}
|
|
if (c.getPlayer().getPossibleReports() > 0) {
|
|
if (c.getPlayer().getMeso() > 299) {
|
|
c.getPlayer().decreaseReports();
|
|
c.getPlayer().gainMeso(-300, true);
|
|
} else {
|
|
c.sendPacket(PacketCreator.reportResponse((byte) 4));
|
|
return;
|
|
}
|
|
}
|
|
Server.getInstance().broadcastGMMessage(c.getWorld(), PacketCreator.serverNotice(6, victim + " was reported for: " + description));
|
|
addReport(c.getPlayer().getId(), Character.getIdByName(victim), reason, description, chatlog);
|
|
} else {
|
|
Server.getInstance().broadcastGMMessage(c.getWorld(), PacketCreator.serverNotice(6, c.getPlayer().getName() + " is probably packet editing. Got unknown report type, which is impossible."));
|
|
}
|
|
}
|
|
|
|
private void addReport(int reporterid, int victimid, int reason, String description, String chatlog) {
|
|
try (Connection con = DatabaseConnection.getConnection();
|
|
PreparedStatement ps = con.prepareStatement("INSERT INTO reports (`reporttime`, `reporterid`, `victimid`, `reason`, `chatlog`, `description`) VALUES (?, ?, ?, ?, ?, ?)")) {
|
|
ps.setTimestamp(1, Timestamp.from(Instant.now()));
|
|
ps.setInt(2, reporterid);
|
|
ps.setInt(3, victimid);
|
|
ps.setInt(4, reason);
|
|
ps.setString(5, chatlog);
|
|
ps.setString(6, description);
|
|
ps.executeUpdate();
|
|
} catch (SQLException ex) {
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
}
|