Allow easier handling of targeting user groups when sending packets
This commit is contained in:
parent
7dbbf41d33
commit
d943981ef1
@ -307,6 +307,16 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
bool m_is_logging_in = false;
|
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:
|
public slots:
|
||||||
/**
|
/**
|
||||||
* @brief A slot for when the client disconnects from the server.
|
* @brief A slot for when the client disconnects from the server.
|
||||||
@ -433,16 +443,6 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
void sendServerBroadcast(QString message);
|
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
|
* @name Packet headers
|
||||||
*
|
*
|
||||||
|
@ -79,7 +79,8 @@ class Server : public QObject {
|
|||||||
* @brief Enum to specifc different targets to send altered packets to a specific usergroup.
|
* @brief Enum to specifc different targets to send altered packets to a specific usergroup.
|
||||||
*/
|
*/
|
||||||
enum class TARGET_TYPE {
|
enum class TARGET_TYPE {
|
||||||
AUTHENTICATED
|
AUTHENTICATED,
|
||||||
|
MODCHAT
|
||||||
};
|
};
|
||||||
Q_ENUM(TARGET_TYPE)
|
Q_ENUM(TARGET_TYPE)
|
||||||
|
|
||||||
@ -139,9 +140,21 @@ class Server : public QObject {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sends a packet to clients, sends an altered packet to a specific usergroup.
|
* @brief Sends a packet to clients, sends an altered packet to a specific usergroup.
|
||||||
|
*
|
||||||
* @param The packet to send to the clients.
|
* @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 The altered packet to send to the other clients.
|
||||||
* @param tENUM to determine the targets of the altered packet.
|
*
|
||||||
|
* @param ENUM to determine the targets of the altered packet.
|
||||||
*/
|
*/
|
||||||
void broadcast(AOPacket packet, AOPacket other_packet, enum TARGET_TYPE target);
|
void broadcast(AOPacket packet, AOPacket other_packet, enum TARGET_TYPE target);
|
||||||
|
|
||||||
|
@ -173,11 +173,7 @@ void AOClient::cmdM(int argc, QStringList argv)
|
|||||||
|
|
||||||
QString l_sender_name = m_ooc_name;
|
QString l_sender_name = m_ooc_name;
|
||||||
QString l_sender_message = argv.join(" ");
|
QString l_sender_message = argv.join(" ");
|
||||||
for (AOClient* client : qAsConst(server->m_clients)) {
|
server->broadcast(AOPacket("CT", {"[M]" + l_sender_name, l_sender_message}), Server::TARGET_TYPE::MODCHAT);
|
||||||
if (client->checkAuth(ACLFlags.value("MODCHAT")))
|
|
||||||
client->sendPacket("CT", {"[M]" + l_sender_name, l_sender_message});
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOClient::cmdGM(int argc, QStringList argv)
|
void AOClient::cmdGM(int argc, QStringList argv)
|
||||||
@ -187,11 +183,7 @@ void AOClient::cmdGM(int argc, QStringList argv)
|
|||||||
QString l_sender_name = m_ooc_name;
|
QString l_sender_name = m_ooc_name;
|
||||||
QString l_sender_area = server->m_area_names.value(m_current_area);
|
QString l_sender_area = server->m_area_names.value(m_current_area);
|
||||||
QString l_sender_message = argv.join(" ");
|
QString l_sender_message = argv.join(" ");
|
||||||
for (AOClient* l_client : qAsConst(server->m_clients)) {
|
server->broadcast(AOPacket("CT", {"[G][" + l_sender_area + "]" + "["+ l_sender_name+"][M]", l_sender_message}),Server::TARGET_TYPE::MODCHAT);
|
||||||
if (l_client->m_global_enabled) {
|
|
||||||
l_client->sendPacket("CT", {"[G][" + l_sender_area + "]" + "["+ l_sender_name+"][M]", l_sender_message});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOClient::cmdLM(int argc, QStringList argv)
|
void AOClient::cmdLM(int argc, QStringList argv)
|
||||||
|
@ -215,6 +215,21 @@ void Server::broadcast(AOPacket packet)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Server::broadcast(AOPacket packet, TARGET_TYPE target)
|
||||||
|
{
|
||||||
|
switch (target) {
|
||||||
|
case TARGET_TYPE::MODCHAT:
|
||||||
|
for (AOClient* l_client : qAsConst(m_clients)) {
|
||||||
|
if (l_client->checkAuth(l_client->ACLFlags.value("MODCHAT"))) {
|
||||||
|
l_client->sendPacket(packet);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
//Unimplemented, so not handled.
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Server::broadcast(AOPacket packet, AOPacket other_packet, TARGET_TYPE target)
|
void Server::broadcast(AOPacket packet, AOPacket other_packet, TARGET_TYPE target)
|
||||||
{
|
{
|
||||||
switch (target) {
|
switch (target) {
|
||||||
@ -227,6 +242,9 @@ void Server::broadcast(AOPacket packet, AOPacket other_packet, TARGET_TYPE targe
|
|||||||
client->sendPacket(packet);
|
client->sendPacket(packet);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
//Unimplemented, so not handled.
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,10 +43,10 @@ void AOClient::addStatement(QStringList packet)
|
|||||||
area->addStatement(c_statement, packet);
|
area->addStatement(c_statement, packet);
|
||||||
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sendServerMessage("Unable to add more statements. The maximum amount of statements has been reached.");
|
sendServerMessage("Unable to add more statements. The maximum amount of statements has been reached.");
|
||||||
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user