From 3589d706ef7caa77ad2b98d91fb72b201c2246dd Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 01:24:24 -0500 Subject: [PATCH 1/7] add /oocmute and /oocunmute to the command table people really need to stop forgetting to do this lmao --- include/aoclient.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 3ab8429..f2c7d00 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1850,6 +1850,10 @@ class AOClient : public QObject { {"allowiniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}}, {"allow_iniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}}, {"afk", {ACLFlags.value("NONE"), 0, &AOClient::cmdAfk}}, + {"oocmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, + {"ooc_mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, + {"oocunmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, + {"ooc_unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, }; /** From 37e91708f787a26e92e1bc56ff3cc8bcf607e2eb Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 01:37:50 -0500 Subject: [PATCH 2/7] Add /blockwtce and /unblockwtce more finished commands that never got put on the commands table --- include/aoclient.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index f2c7d00..675550f 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1854,6 +1854,10 @@ class AOClient : public QObject { {"ooc_mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, {"oocunmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, {"ooc_unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, + {"blockwtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockWtce}}, + {"block_wtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockWtce}}, + {"unblockwtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockWtce}}, + {"unblock_wtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockWtce}}, }; /** From 96407ad4bd8a94cffda28b46c9974c9f816ef030 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 13:22:42 -0500 Subject: [PATCH 3/7] Add /blockdj and /unblockdj - More commands that never got added to the table. - Also fixes /blockdj incorrectly blocking a client from changing areas. - Checks if a client is DJ blocked when using /play --- include/aoclient.h | 4 ++++ src/commands/music.cpp | 4 ++++ src/packets.cpp | 8 ++++---- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 675550f..3445f18 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1858,6 +1858,10 @@ class AOClient : public QObject { {"block_wtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockWtce}}, {"unblockwtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockWtce}}, {"unblock_wtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockWtce}}, + {"blockdj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockDj}}, + {"block_dj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockDj}}, + {"unblockdj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, + {"unblock_dj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, }; /** diff --git a/src/commands/music.cpp b/src/commands/music.cpp index 4bde396..2ae0f71 100644 --- a/src/commands/music.cpp +++ b/src/commands/music.cpp @@ -22,6 +22,10 @@ void AOClient::cmdPlay(int argc, QStringList argv) { + if (is_dj_blocked) { + sendServerMessage("You are blocked from changing the music."); + return; + } AreaData* area = server->areas[current_area]; QString song = argv.join(" "); area->current_music = song; diff --git a/src/packets.cpp b/src/packets.cpp index 6ddce8a..252845b 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -210,10 +210,6 @@ void AOClient::pktPing(AreaData* area, int argc, QStringList argv, AOPacket pack void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPacket packet) { - if (is_dj_blocked) { - sendServerMessage("You are blocked from changing the music."); - return; - } // Due to historical reasons, this // packet has two functions: // Change area, and set music. @@ -225,6 +221,10 @@ void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPack for (QString song : server->music_list) { if (song == argument || song == "~stop.mp3") { // ~stop.mp3 is a dummy track used by 2.9+ // We have a song here + if (is_dj_blocked) { + sendServerMessage("You are blocked from changing the music."); + return; + } QString effects; if (argc >= 4) effects = argv[3]; From 67f7acc34aac38ee59828c30e3f092a779a87ddc Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 13:57:33 -0500 Subject: [PATCH 4/7] Move cmdAfk to messaging category cmdAfk is a command that changes the clients status to AFK. As such, it belongs under the messaging category, which includes commands that handle a clients self-management. --- include/aoclient.h | 19 +++++++++---------- src/commands/area.cpp | 6 ------ src/commands/messaging.cpp | 6 ++++++ 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 3ab8429..4b8f1cc 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1438,6 +1438,15 @@ class AOClient : public QObject { */ void cmdUnShake(int argc, QStringList argv); + /** + * @brief Toggles whether this client is considered AFK. + * + * @details No arguments. + * + * @iscommand + */ + void cmdAfk(int argc, QStringList argv); + ///@} /** @@ -1587,16 +1596,6 @@ class AOClient : public QObject { */ void cmdCurrentMusic(int argc, QStringList argv); - - /** - * @brief Toggles whether this client is considered AFK. - * - * @details No arguments. - * - * @iscommand - */ - void cmdAfk(int argc, QStringList argv); - ///@} /** diff --git a/src/commands/area.cpp b/src/commands/area.cpp index f81c618..d471ef6 100644 --- a/src/commands/area.cpp +++ b/src/commands/area.cpp @@ -283,9 +283,3 @@ void AOClient::cmdJudgeLog(int argc, QStringList argv) sendServerMessage(filteredmessage); } } - -void AOClient::cmdAfk(int argc, QStringList argv) -{ - is_afk = true; - sendServerMessage("You are now AFK."); -} diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 9a852a6..e8517c2 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -274,3 +274,9 @@ void AOClient::cmdUnShake(int argc, QStringList argv) } target->is_shaken = false; } + +void AOClient::cmdAfk(int argc, QStringList argv) +{ + is_afk = true; + sendServerMessage("You are now AFK."); +} From b7f8f78690156ca0101ae1407c5b42e6a4931f60 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 18:25:12 -0500 Subject: [PATCH 5/7] Allow moderators to uncm other clients - Adds "UNCM" permissions for uncming --- include/aoclient.h | 1 + src/commands/area.cpp | 33 ++++++++++++++++++++++++++++++--- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 3ab8429..9a67200 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -219,6 +219,7 @@ class AOClient : public QObject { {"ANNOUNCE", 1ULL << 8 }, {"MODCHAT", 1ULL << 9 }, {"MUTE", 1ULL << 10}, + {"UNCM", 1ULL << 11}, {"SUPER", ~0ULL }, }; diff --git a/src/commands/area.cpp b/src/commands/area.cpp index f81c618..87e5d22 100644 --- a/src/commands/area.cpp +++ b/src/commands/area.cpp @@ -61,9 +61,36 @@ void AOClient::cmdCM(int argc, QStringList argv) void AOClient::cmdUnCM(int argc, QStringList argv) { AreaData* area = server->areas[current_area]; - int removed = area->owners.removeAll(id); - area->invited.removeAll(id); - sendServerMessage("You are no longer CM in this area."); + int uid; + + if (area->owners.isEmpty()) { + sendServerMessage("There are no CMs in this area."); + return; + } + else if (argc == 0) { + uid = id; + sendServerMessage("You are no longer CM in this area."); + } + else if (checkAuth(ACLFlags.value("UNCM")) && argc == 1) { + bool conv_ok = false; + uid = argv[0].toInt(&conv_ok); + if (!conv_ok) { + sendServerMessage("Invalid user ID."); + return; + } + if (!area->owners.contains(uid)) { + sendServerMessage("That user is not CMed."); + return; + } + AOClient* target = server->getClientByID(uid); + target->sendServerMessage("You have been unCMed by a moderator."); + } + else { + sendServerMessage("Invalid command."); + return; + } + area->owners.removeAll(uid); + area->invited.removeAll(uid); arup(ARUPType::CM, true); if (area->owners.isEmpty()) { area->invited.clear(); From b99660d9c37602bd4363e9f4d378a81c2047fccc Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sat, 17 Apr 2021 18:45:05 -0500 Subject: [PATCH 6/7] Decode MS packet before testimony recorder regex - Fixes an issue with the testimony recorder checking for >[statement], where due to AO encoding, special characters would improperly match the regex. For example, "%[statement]" would become "[statement]", thus matching against >[statement]. This commit decodes those characters first. - Adds AOClient::decodeMessage() for decoding a QString. --- include/aoclient.h | 7 +++++++ src/packets.cpp | 12 +++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 3ab8429..11e0a1a 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1908,6 +1908,13 @@ class AOClient : public QObject { * @param action String containing the info that is being recorded. */ void updateJudgeLog(AreaData* area, AOClient* client, QString action); + + /** + * @brief A helper function for decoding AO encoding from a QString. + * + * @param incoming_message QString to be decoded. + */ + QString decodeMessage(QString incoming_message); }; #endif // AOCLIENT_H diff --git a/src/packets.cpp b/src/packets.cpp index 6ddce8a..b5f33e3 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -724,8 +724,9 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) area->statement = area->statement - 1; args = playTestimony(); } + QString decoded_message = decodeMessage(args[4]); //Get rid of that pesky encoding first. QRegularExpression jump("(?>)(?[0,1,2,3,4,5,6,7,8,9]+)"); - QRegularExpressionMatch match = jump.match(args[4]); + QRegularExpressionMatch match = jump.match(decoded_message); if (match.hasMatch()) { pos = "wit"; area->statement = match.captured("int").toInt(); @@ -773,3 +774,12 @@ void AOClient::updateJudgeLog(AreaData* area, AOClient* client, QString action) } else area->judgelog.append(logmessage); } + +QString AOClient::decodeMessage(QString incoming_message) +{ + QString decoded_message = incoming_message.replace("", "#") + .replace("", "%") + .replace("", "$") + .replace("", "&"); + return decoded_message; +} From 522c9fb39359b5207ebeb145edfce7e850a6245b Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sat, 17 Apr 2021 19:03:20 -0500 Subject: [PATCH 7/7] ensure the advertiser actually exists before connecting the reload signal/slot --- src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8579592..e8b63e0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -62,7 +62,10 @@ int main(int argc, char* argv[]) } server = new Server(settings.port, settings.ws_port); - QObject::connect(server, &Server::reloadRequest, advertiser, &Advertiser::reloadRequested); + + if (advertiser != nullptr) { + QObject::connect(server, &Server::reloadRequest, advertiser, &Advertiser::reloadRequested); + } server->start(); } } else {