shutdown the server
Some checks are pending
CI / build-windows (push) Blocked by required conditions
CI / build-linux (push) Blocked by required conditions
CI / check-clang-format (push) Waiting to run

This commit is contained in:
simio 2025-03-03 05:09:38 -03:00
parent 46cc7ce5d8
commit 06ebe3c166
3 changed files with 21 additions and 0 deletions

View File

@ -29,6 +29,7 @@ const QMap<QString, AOClient::CommandInfo> AOClient::COMMANDS{
{"getareas", {{ACLRole::NONE}, 0, &AOClient::cmdGetAreas}}, {"getareas", {{ACLRole::NONE}, 0, &AOClient::cmdGetAreas}},
{"ban", {{ACLRole::BAN}, 3, &AOClient::cmdBan}}, {"ban", {{ACLRole::BAN}, 3, &AOClient::cmdBan}},
{"kick", {{ACLRole::KICK}, 2, &AOClient::cmdKick}}, {"kick", {{ACLRole::KICK}, 2, &AOClient::cmdKick}},
{"shutdown", {{ACLRole::SUPER}, 0, &AOClient::cmdShutdown}},
{"changeauth", {{ACLRole::SUPER}, 0, &AOClient::cmdChangeAuth}}, {"changeauth", {{ACLRole::SUPER}, 0, &AOClient::cmdChangeAuth}},
{"rootpass", {{ACLRole::SUPER}, 1, &AOClient::cmdSetRootPass}}, {"rootpass", {{ACLRole::SUPER}, 1, &AOClient::cmdSetRootPass}},
{"background", {{ACLRole::NONE}, 1, &AOClient::cmdSetBackground}}, {"background", {{ACLRole::NONE}, 1, &AOClient::cmdSetBackground}},

View File

@ -1634,6 +1634,14 @@ class AOClient : public QObject
* *
* @iscommand * @iscommand
*/ */
void cmdShutdown(int argc, QStringList argv);
/**
* @brief Shuts down the server.
*
* @details LOL.
*
* @iscommand
*/
void cmdShake(int argc, QStringList argv); void cmdShake(int argc, QStringList argv);
/** /**

View File

@ -22,10 +22,22 @@
#include "config_manager.h" #include "config_manager.h"
#include "db_manager.h" #include "db_manager.h"
#include "server.h" #include "server.h"
#include "aoclient.h"
#include <cstdlib>
// This file is for commands under the moderation category in aoclient.h // This file is for commands under the moderation category in aoclient.h
// Be sure to register the command in the header before adding it here! // Be sure to register the command in the header before adding it here!
void AOClient::cmdShutdown(int argc, QStringList argv)
{
Q_UNUSED(argc);
Q_UNUSED(argv);
exit(0);
}
void AOClient::cmdBan(int argc, QStringList argv) void AOClient::cmdBan(int argc, QStringList argv)
{ {
QString l_args_str = argv[2]; QString l_args_str = argv[2];