From f98df4e0b74ed064bc1cb68de364d39afcf8bcd4 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Thu, 29 Apr 2021 23:34:13 -0500 Subject: [PATCH] Add /kickuid I keep being pestered to add this and it's a useful command. Let's you kick a specific UID, instead of all clients belonging to one IPID. --- include/aoclient.h | 18 +++++++++++++++++- src/commands/moderation.cpp | 23 +++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 1c2f799..1ff2301 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1169,6 +1169,20 @@ class AOClient : public QObject { */ void cmdPermitSaving(int argc, QStringList argv); + /** + * @brief Kicks a client from the server, forcibly severing its connection to the server. + * + * @details The first argument is the **target's UID**, while the remaining arguments are the **reason** + * the client was kicked. Both arguments are mandatory. + * + * Unlike cmdKick, this command will only kick a single client, thus a multiclienting user will not have all their clients kicked. + * + * @iscommand + * + * @see #cmdKick + */ + void cmdKickUid(int argc, QStringList argv); + ///@} /** @@ -1983,7 +1997,9 @@ class AOClient : public QObject { {"charselect", {ACLFlags.value("NONE"), 0, &AOClient::cmdCharSelect}}, {"togglemusic", {ACLFlags.value("CM"), 0, &AOClient::cmdToggleMusic}}, {"a", {ACLFlags.value("NONE"), 2, &AOClient::cmdA}}, - {"s", {ACLFlags.value("NONE"), 0, &AOClient::cmdS}} + {"s", {ACLFlags.value("NONE"), 0, &AOClient::cmdS}}, + {"kickuid", {ACLFlags.value("NONE"), 2, &AOClient::cmdKickUid}}, + {"kick_uid", {ACLFlags.value("NONE"), 2, &AOClient::cmdKickUid}} }; /** diff --git a/src/commands/moderation.cpp b/src/commands/moderation.cpp index e0fc24a..0ba42b7 100644 --- a/src/commands/moderation.cpp +++ b/src/commands/moderation.cpp @@ -413,3 +413,26 @@ void AOClient::cmdPermitSaving(int argc, QStringList argv) } client->testimony_saving = true; } + +void AOClient::cmdKickUid(int argc, QStringList argv) +{ + QString reason = argv[1]; + + if (argc > 2) { + for (int i = 2; i < argv.length(); i++) { + reason += " " + argv[i]; + } + } + + bool conv_ok = false; + int uid = argv[0].toInt(&conv_ok); + if (!conv_ok) { + sendServerMessage("Invalid user ID."); + return; + } + + AOClient* target = server->getClientByID(uid); + target->sendPacket("KK", {reason}); + target->socket->close(); + sendServerMessage("Kicked client with UID " + argv[0] + " for reason: " + reason); +}