Add /updateban

* Adds a command to allow a moderator to update a ban, changing its reason or duration.
* Resolves #123
This commit is contained in:
MangosArentLiterature 2021-05-08 12:27:16 -05:00
parent 90ef45c681
commit 7c85dd4408
4 changed files with 89 additions and 0 deletions

View File

@ -1194,6 +1194,17 @@ class AOClient : public QObject {
*/
void cmdKickUid(int argc, QStringList argv);
/**
* @brief Updates a ban in the database, changing either its reason or duration.
*
* @details The first argument is the **ID** of the ban to update. The second argument is the **field** to update, either `reason` or `duration`
*
* and the remaining arguments are the **duration** or the **reason** to update to.
*
* @iscommand
*/
void cmdUpdateBan(int argc, QStringList argv);
///@}
/**
@ -2021,6 +2032,8 @@ class AOClient : public QObject {
{"kickuid", {ACLFlags.value("KICK"), 2, &AOClient::cmdKickUid}},
{"kick_uid", {ACLFlags.value("KICK"), 2, &AOClient::cmdKickUid}},
{"firstperson", {ACLFlags.value("NONE"), 0, &AOClient::cmdFirstPerson}},
{"updateban", {ACLFlags.value("BAN"), 3, &AOClient::cmdUpdateBan}},
{"update_ban", {ACLFlags.value("BAN"), 3, &AOClient::cmdUpdateBan}},
};
/**

View File

@ -249,6 +249,19 @@ public:
*/
QList<BanInfo> getBanInfo(QString lookup_type, QString id);
/**
* @brief Updates a ban.
*
* @param ban_id The ID of the ban to update.
*
* @param field The field to update, either "reason" or "duration".
*
* @param updated_info The info to update the field to.
*
* @return True if the modification was successful.
*/
bool updateBan(int ban_id, QString field, QVariant updated_info);
private:
/**
* @brief The name of the database connection driver.

View File

@ -436,3 +436,45 @@ void AOClient::cmdKickUid(int argc, QStringList argv)
target->socket->close();
sendServerMessage("Kicked client with UID " + argv[0] + " for reason: " + reason);
}
void AOClient::cmdUpdateBan(int argc, QStringList argv)
{
bool conv_ok = false;
int ban_id = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid ban ID.");
return;
}
QVariant updated_info;
if (argv[1] == "duration") {
long long duration_seconds = 0;
if (argv[2] == "perma")
duration_seconds = -2;
else
duration_seconds = parseTime(argv[2]);
if (duration_seconds == -1) {
sendServerMessage("Invalid time format. Format example: 1h30m");
return;
}
updated_info = QVariant(duration_seconds);
}
else if (argv[1] == "reason") {
QString args_str = argv[2];
if (argc > 3) {
for (int i = 3; i < argc; i++)
args_str += " " + argv[i];
}
updated_info = QVariant(args_str);
}
else {
sendServerMessage("Invalid update type.");
return;
}
if (!server->db_manager->updateBan(ban_id, argv[1], updated_info)) {
sendServerMessage("There was an error updating the ban. Please confirm the ban ID is valid.");
return;
}
sendServerMessage("Ban updated.");
}

View File

@ -362,6 +362,27 @@ QList<DBManager::BanInfo> DBManager::getBanInfo(QString lookup_type, QString id)
return return_list;
}
bool DBManager::updateBan(int ban_id, QString field, QVariant updated_info)
{
QSqlQuery query;
if (field == "reason") {
query.prepare("UPDATE bans SET REASON = ? WHERE ID = ?");
query.addBindValue(updated_info.toString());
}
else if (field == "duration") {
query.prepare("UPDATE bans SET DURATION = ? WHERE ID = ?");
query.addBindValue(updated_info.toLongLong());
}
query.addBindValue(ban_id);
if (!query.exec()) {
qDebug() << query.lastError();
return false;
}
else {
return true;
}
}
DBManager::~DBManager()
{
db.close();