spam prevention fixes
Some checks failed
CI / check-clang-format (push) Has been cancelled
CI / build-linux (push) Has been cancelled
CI / build-windows (push) Has been cancelled

This commit is contained in:
simio 2025-03-28 04:49:18 -03:00
parent e19ca42a9d
commit 0f277791f2
3 changed files with 6 additions and 9 deletions

View File

@ -516,7 +516,7 @@ class AOClient : public QObject
* *
* @details Used to determine if the incoming message is a duplicate. * @details Used to determine if the incoming message is a duplicate.
*/ */
QString m_last_message; QString m_last_message = " ";
/** /**
* @brief The time in seconds since the client last sent a Witness Testimony / Cross Examination * @brief The time in seconds since the client last sent a Witness Testimony / Cross Examination

View File

@ -175,12 +175,12 @@ void AOClient::cmdTestify(int argc, QStringList argv)
AreaData *l_area = server->getAreaById(areaId()); AreaData *l_area = server->getAreaById(areaId());
if (l_area->testimonyRecording() == AreaData::TestimonyRecording::RECORDING) { if (l_area->testimonyRecording() == AreaData::TestimonyRecording::RECORDING) {
sendServerMessage("Testimony recording is already in progress. Please stop it with /end before starting a new one."); sendServerMessage("Testimony recording is already in progress. Please stop it with /pause before starting a new one.");
} }
else { else {
clearTestimony(); clearTestimony();
l_area->setTestimonyRecording(AreaData::TestimonyRecording::RECORDING); l_area->setTestimonyRecording(AreaData::TestimonyRecording::RECORDING);
sendServerMessage("Started testimony recording. The next IC message will be a title. Use /end to stop recording."); sendServerMessage("Started testimony recording. The next IC message will be a title. Use /pause to stop recording.");
} }
} }

View File

@ -127,12 +127,9 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
// Doublepost prevention. Has to ignore blankposts and testimony commands. // Doublepost prevention. Has to ignore blankposts and testimony commands.
QString l_incoming_msg = client.dezalgo(l_incoming_args[4].toString().trimmed()); QString l_incoming_msg = client.dezalgo(l_incoming_args[4].toString().trimmed());
QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_incoming_msg)); QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_incoming_msg));
bool msg_is_testimony_cmd = (match.hasMatch() || l_incoming_msg == ">" || l_incoming_msg == "<"); bool msg_is_testimony_cmd = (area->statement() != -1 && (match.hasMatch() || l_incoming_msg == ">" || l_incoming_msg == "<"));
if (!client.m_last_message.isEmpty() // If the last message you sent isn't empty, if (l_incoming_msg == client.m_last_message && !msg_is_testimony_cmd) return l_invalid;
&& l_incoming_msg == client.m_last_message // and it matches the one you're sending,
&& !msg_is_testimony_cmd) // and it's not a testimony command,
return l_invalid; // get it the hell outta here!
if (l_incoming_msg == "" && area->blankpostingAllowed() == false) { if (l_incoming_msg == "" && area->blankpostingAllowed() == false) {
client.sendServerMessage("Blankposting has been forbidden in this area."); client.sendServerMessage("Blankposting has been forbidden in this area.");
return l_invalid; return l_invalid;