give a more detailed ban message

This commit is contained in:
AwesomeAim 2023-05-05 10:30:28 -07:00
parent 2720d909f6
commit 83bebb5e25
2 changed files with 16 additions and 3 deletions

View File

@ -35,7 +35,14 @@ void PacketHI::handlePacket(AreaData *area, AOClient &client) const
emit client.getServer()->logConnectionAttempt(client.m_remote_ip.toString(), client.m_ipid, client.m_hwid);
auto ban = client.getServer()->getDatabaseManager()->isHDIDBanned(client.m_hwid);
if (ban.first) {
client.sendPacket("BD", {ban.second + "\nBan ID: " + QString::number(client.getServer()->getDatabaseManager()->getBanID(client.m_hwid))});
QString ban_duration;
if (!(ban.second.duration == -2)) {
ban_duration = QDateTime::fromSecsSinceEpoch(ban.second.time).addSecs(ban.second.duration).toString("MM/dd/yyyy, hh:mm");
}
else {
ban_duration = "The heat death of the universe.";
}
client.sendPacket("BD", {"Reason: " + ban.second.reason + "\nBan ID: " + QString::number(ban.second.id) + "\nUntil: " + ban_duration});
client.m_socket->close();
return;
}

View File

@ -194,8 +194,14 @@ void Server::clientConnected()
is_at_multiclient_limit = true;
if (is_banned) {
QString reason = ban.second;
AOPacket *ban_reason = PacketFactory::createPacket("BD", {reason});
QString ban_duration;
if (!(ban.second.duration == -2)) {
ban_duration = QDateTime::fromSecsSinceEpoch(ban.second.time).addSecs(ban.second.duration).toString("MM/dd/yyyy, hh:mm");
}
else {
ban_duration = "The heat death of the universe.";
}
AOPacket *ban_reason = PacketFactory::createPacket("BD", {"Reason: " + ban.second.reason + "\nBan ID: " + QString::number(ban.second.id) + "\nUntil: " + ban_duration});
socket->write(ban_reason->toUtf8());
}
if (is_banned || is_at_multiclient_limit) {