move notice functionality to helper function

This commit is contained in:
in1tiate 2021-08-10 00:28:36 -05:00
parent 7b1845aa8d
commit c6b0c5f6de
3 changed files with 25 additions and 6 deletions

View File

@ -1929,6 +1929,16 @@ class AOClient : public QObject {
* @return True if the password meets the requirements, otherwise false.
*/
bool checkPasswordRequirements(QString username, QString password);
/**
* @brief Sends a server notice.
*
* @param notice The notice to send out.
*
* @param global Whether or not the notice should be server-wide.
*/
void sendNotice(QString notice, bool global = false);
/**
* @brief Checks if a testimony contains '<' or '>'.

View File

@ -208,3 +208,16 @@ bool AOClient::checkPasswordRequirements(QString username, QString password)
}
return true;
}
void AOClient::sendNotice(QString notice, bool global)
{
QString message = "A moderator sent this ";
message += (global ? "server-wide " : "");
message += "notice:\n\n" + notice;
sendServerMessageArea(message);
AOPacket packet("BB", {message});
if (global)
server->broadcast(packet);
else
server->broadcast(packet, current_area);
}

View File

@ -517,13 +517,9 @@ void AOClient::cmdUpdateBan(int argc, QStringList argv)
void AOClient::cmdNotice(int argc, QStringList argv)
{
QString message = "A moderator sent this notice:\n\n" + argv.join(" ");
sendServerMessageArea(message);
server->broadcast(AOPacket("BB", {message}), current_area);
sendNotice(argv.join(" "));
}
void AOClient::cmdNoticeGlobal(int argc, QStringList argv)
{
QString message = "A moderator sent this server-wide notice:\n\n" + argv.join(" ");
sendServerBroadcast(message);
server->broadcast(AOPacket("BB", {message}));
sendNotice(argv.join(" "), true);
}