spam prevention fixes
This commit is contained in:
parent
e19ca42a9d
commit
0f277791f2
@ -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
|
||||||
|
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,11 +127,8 @@ 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.");
|
||||||
|
Loading…
Reference in New Issue
Block a user