diff --git a/core/include/aoclient.h b/core/include/aoclient.h index 31ee401..e5f2914 100644 --- a/core/include/aoclient.h +++ b/core/include/aoclient.h @@ -307,6 +307,16 @@ class AOClient : public QObject { */ bool m_is_logging_in = false; + /** + * @brief Checks if the client would be authorised to something based on its necessary permissions. + * + * @param acl_mask The permissions bitflag that the client's own permissions should be checked against. + * + * @return True if the client's permissions are high enough for `acl_mask`, or higher than it. + * False if the client is missing some permissions. + */ + bool checkAuth(unsigned long long acl_mask); + public slots: /** * @brief A slot for when the client disconnects from the server. @@ -433,16 +443,6 @@ class AOClient : public QObject { */ void sendServerBroadcast(QString message); - /** - * @brief Checks if the client would be authorised to something based on its necessary permissions. - * - * @param acl_mask The permissions bitflag that the client's own permissions should be checked against. - * - * @return True if the client's permissions are high enough for `acl_mask`, or higher than it. - * False if the client is missing some permissions. - */ - bool checkAuth(unsigned long long acl_mask); - /** * @name Packet headers * diff --git a/core/include/server.h b/core/include/server.h index d6c86f8..a6c7e96 100644 --- a/core/include/server.h +++ b/core/include/server.h @@ -75,6 +75,16 @@ class Server : public QObject { */ void start(); + /** + * @brief Enum to specifc different targets to send altered packets to a specific usergroup. + */ + enum class TARGET_TYPE { + AUTHENTICATED, + MODCHAT, + ADVERT + }; + Q_ENUM(TARGET_TYPE) + /** * @brief Gets a pointer to a client by IPID. * @@ -129,6 +139,26 @@ class Server : public QObject { */ void broadcast(AOPacket packet); + /** + * @brief Sends a packet to clients, sends an altered packet to a specific usergroup. + * + * @param The packet to send to the clients. + * + * @param ENUM to determine the targets of the altered packet. + */ + void broadcast(AOPacket packet, TARGET_TYPE target); + + /** + * @brief Sends a packet to clients, sends an altered packet to a specific usergroup. + * + * @param The packet to send to the clients. + * + * @param The altered packet to send to the other clients. + * + * @param ENUM to determine the targets of the altered packet. + */ + void broadcast(AOPacket packet, AOPacket other_packet, enum TARGET_TYPE target); + /** * @brief Returns the character's character ID (= their index in the character list). * diff --git a/core/src/commands/messaging.cpp b/core/src/commands/messaging.cpp index 7582501..040b6cd 100644 --- a/core/src/commands/messaging.cpp +++ b/core/src/commands/messaging.cpp @@ -71,10 +71,10 @@ void AOClient::cmdG(int argc, QStringList argv) QString l_sender_name = m_ooc_name; QString l_sender_area = server->m_area_names.value(m_current_area); QString l_sender_message = argv.join(" "); - for (AOClient* l_client : qAsConst(server->m_clients)) { - if (l_client->m_global_enabled) - l_client->sendPacket("CT", {"[G][" + l_sender_area + "]" + l_sender_name, l_sender_message}); - } + //Slightly better readability + AOPacket l_packet = AOPacket("CT", {"[G][" + m_ipid + "][" + l_sender_area + "]" + l_sender_name, l_sender_message}); + AOPacket l_other_packet = AOPacket("CT", {"[G][" + l_sender_area + "]" + l_sender_name, l_sender_message}); + server->broadcast(l_packet, l_other_packet, Server::TARGET_TYPE::AUTHENTICATED); return; } @@ -84,11 +84,7 @@ void AOClient::cmdNeed(int argc, QStringList argv) QString l_sender_area = server->m_area_names.value(m_current_area); QString l_sender_message = argv.join(" "); - for (AOClient* l_client : qAsConst(server->m_clients)) { - if (l_client->m_advert_enabled) { - l_client->sendServerMessage({"=== Advert ===\n[" + l_sender_area + "] needs " + l_sender_message+ "."}); - } - } + server->broadcast(AOPacket("CT",{"=== Advert ===\n[" + l_sender_area + "] needs " + l_sender_message+ "."}),Server::TARGET_TYPE::ADVERT); } void AOClient::cmdSwitch(int argc, QStringList argv) @@ -174,11 +170,7 @@ void AOClient::cmdM(int argc, QStringList argv) QString l_sender_name = m_ooc_name; QString l_sender_message = argv.join(" "); - for (AOClient* client : qAsConst(server->m_clients)) { - if (client->checkAuth(ACLFlags.value("MODCHAT"))) - client->sendPacket("CT", {"[M]" + l_sender_name, l_sender_message}); - } - return; + server->broadcast(AOPacket("CT", {"[M]" + l_sender_name, l_sender_message}), Server::TARGET_TYPE::MODCHAT); } void AOClient::cmdGM(int argc, QStringList argv) @@ -188,11 +180,7 @@ void AOClient::cmdGM(int argc, QStringList argv) QString l_sender_name = m_ooc_name; QString l_sender_area = server->m_area_names.value(m_current_area); QString l_sender_message = argv.join(" "); - for (AOClient* l_client : qAsConst(server->m_clients)) { - if (l_client->m_global_enabled) { - l_client->sendPacket("CT", {"[G][" + l_sender_area + "]" + "["+ l_sender_name+"][M]", l_sender_message}); - } - } + server->broadcast(AOPacket("CT", {"[G][" + l_sender_area + "]" + "["+ l_sender_name+"][M]", l_sender_message}),Server::TARGET_TYPE::MODCHAT); } void AOClient::cmdLM(int argc, QStringList argv) diff --git a/core/src/server.cpp b/core/src/server.cpp index 46741bb..da0c521 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -215,6 +215,44 @@ void Server::broadcast(AOPacket packet) } } +void Server::broadcast(AOPacket packet, TARGET_TYPE target) +{ + for (AOClient* l_client : qAsConst(m_clients)) { + switch (target) { + case TARGET_TYPE::MODCHAT: + if (l_client->checkAuth(l_client->ACLFlags.value("MODCHAT"))) { + l_client->sendPacket(packet); + } + break; + case TARGET_TYPE::ADVERT: + if (l_client->m_advert_enabled) { + l_client->sendPacket(packet); + } + break; + default: + break; + } + } +} + +void Server::broadcast(AOPacket packet, AOPacket other_packet, TARGET_TYPE target) +{ + switch (target) { + case TARGET_TYPE::AUTHENTICATED: + for (AOClient* client : qAsConst(m_clients)){ + if (client->m_authenticated) { + client->sendPacket(other_packet); + } + else { + client->sendPacket(packet); + } + } + default: + //Unimplemented, so not handled. + break; + } +} + QList Server::getClientsByIpid(QString ipid) { QList return_clients; diff --git a/core/src/testimony_recorder.cpp b/core/src/testimony_recorder.cpp index c626b67..50d4aa8 100644 --- a/core/src/testimony_recorder.cpp +++ b/core/src/testimony_recorder.cpp @@ -43,10 +43,10 @@ void AOClient::addStatement(QStringList packet) area->addStatement(c_statement, packet); area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK); } - else { - sendServerMessage("Unable to add more statements. The maximum amount of statements has been reached."); - area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK); - } + else { + sendServerMessage("Unable to add more statements. The maximum amount of statements has been reached."); + area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK); + } } }