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.
This commit is contained in:
MangosArentLiterature 2021-04-29 23:34:13 -05:00
parent e44f687030
commit f98df4e0b7
2 changed files with 40 additions and 1 deletions

View File

@ -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}}
};
/**

View File

@ -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);
}