mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
feat: add setting to hide blocked term messages
This commit is contained in:
parent
d3000ba597
commit
1e5103434a
|
@ -148,6 +148,9 @@ struct IsChatterinoSettingT : std::false_type {
|
|||
template <typename T>
|
||||
struct IsChatterinoSettingT<ChatterinoSetting<T>> : std::true_type {
|
||||
};
|
||||
template <typename T>
|
||||
struct IsChatterinoSettingT<EnumStringSetting<T>> : std::true_type {
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
concept IsChatterinoSetting = IsChatterinoSettingT<T>::value;
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include "providers/twitch/api/Helix.hpp"
|
||||
#include "providers/twitch/ChannelPointReward.hpp"
|
||||
#include "providers/twitch/PubSubActions.hpp"
|
||||
#include "providers/twitch/pubsubmessages/AutoMod.hpp"
|
||||
#include "providers/twitch/TwitchAccount.hpp"
|
||||
#include "providers/twitch/TwitchBadge.hpp"
|
||||
#include "providers/twitch/TwitchBadges.hpp"
|
||||
|
@ -1637,6 +1638,12 @@ std::pair<MessagePtr, MessagePtr> MessageBuilder::makeAutomodMessage(
|
|||
{
|
||||
MessageBuilder builder, builder2;
|
||||
|
||||
if (action.reasonCode == PubSubAutoModQueueMessage::Reason::BlockedTerm)
|
||||
{
|
||||
builder.message().flags.set(MessageFlag::AutoModBlockedTerm);
|
||||
builder2.message().flags.set(MessageFlag::AutoModBlockedTerm);
|
||||
}
|
||||
|
||||
//
|
||||
// Builder for AutoMod message with explanation
|
||||
builder.message().id = "automod_" + action.msgID;
|
||||
|
|
|
@ -52,6 +52,8 @@ enum class MessageFlag : std::int64_t {
|
|||
Action = (1LL << 36),
|
||||
/// The message is sent in a different source channel as part of a Shared Chat session
|
||||
SharedMessage = (1LL << 37),
|
||||
/// AutoMod message that showed up due to containing a blocked term in the channel
|
||||
AutoModBlockedTerm = (1LL << 38),
|
||||
};
|
||||
using MessageFlags = FlagsEnum<MessageFlag>;
|
||||
|
||||
|
|
|
@ -141,6 +141,9 @@ void MessageLayout::actuallyLayout(const MessageLayoutContext &ctx)
|
|||
|
||||
bool hideModerated = getSettings()->hideModerated;
|
||||
bool hideModerationActions = getSettings()->hideModerationActions;
|
||||
bool hideBlockedTermAutomodMessages =
|
||||
getSettings()->showBlockedTermAutomodMessages.getEnum() ==
|
||||
ShowModerationState::Never;
|
||||
bool hideSimilar = getSettings()->hideSimilar;
|
||||
bool hideReplies = !ctx.flags.has(MessageElementFlag::RepliedMessage);
|
||||
|
||||
|
@ -154,6 +157,12 @@ void MessageLayout::actuallyLayout(const MessageLayoutContext &ctx)
|
|||
continue;
|
||||
}
|
||||
|
||||
if (hideBlockedTermAutomodMessages &&
|
||||
this->message_->flags.has(MessageFlag::AutoModBlockedTerm))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (this->message_->flags.has(MessageFlag::Timeout) ||
|
||||
this->message_->flags.has(MessageFlag::Untimeout))
|
||||
{
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "providers/twitch/pubsubmessages/AutoMod.hpp"
|
||||
|
||||
#include <QColor>
|
||||
#include <QDebug>
|
||||
#include <QJsonObject>
|
||||
|
@ -143,6 +145,7 @@ struct AutomodAction : PubSubAction {
|
|||
QString message;
|
||||
|
||||
QString reason;
|
||||
PubSubAutoModQueueMessage::Reason reasonCode;
|
||||
|
||||
QString msgID;
|
||||
};
|
||||
|
|
|
@ -494,6 +494,7 @@ void TwitchIrcServer::initialize()
|
|||
|
||||
action.msgID = msg.messageID;
|
||||
action.message = msg.messageText;
|
||||
action.reasonCode = msg.reason;
|
||||
|
||||
// this message also contains per-word automod data, which could be implemented
|
||||
|
||||
|
|
|
@ -15,6 +15,10 @@ PubSubAutoModQueueMessage::PubSubAutoModQueueMessage(const QJsonObject &root)
|
|||
this->type = oType.value();
|
||||
}
|
||||
|
||||
this->reason =
|
||||
qmagicenum::enumCast<Reason>(data.value("reason_code").toString())
|
||||
.value_or(Reason::INVALID);
|
||||
|
||||
auto contentClassification =
|
||||
data.value("content_classification").toObject();
|
||||
|
||||
|
|
|
@ -13,8 +13,17 @@ struct PubSubAutoModQueueMessage {
|
|||
|
||||
INVALID,
|
||||
};
|
||||
|
||||
enum class Reason {
|
||||
AutoMod,
|
||||
BlockedTerm,
|
||||
|
||||
INVALID,
|
||||
};
|
||||
|
||||
QString typeString;
|
||||
Type type = Type::INVALID;
|
||||
Reason reason = Reason::INVALID;
|
||||
|
||||
QJsonObject data;
|
||||
|
||||
|
@ -51,3 +60,20 @@ constexpr magic_enum::customize::customize_t magic_enum::customize::enum_name<
|
|||
return default_tag;
|
||||
}
|
||||
}
|
||||
|
||||
template <>
|
||||
constexpr magic_enum::customize::customize_t magic_enum::customize::enum_name<
|
||||
chatterino::PubSubAutoModQueueMessage::Reason>(
|
||||
chatterino::PubSubAutoModQueueMessage::Reason value) noexcept
|
||||
{
|
||||
switch (value)
|
||||
{
|
||||
case chatterino::PubSubAutoModQueueMessage::Reason::AutoMod:
|
||||
return "AutoModCaughtMessageReason";
|
||||
case chatterino::PubSubAutoModQueueMessage::Reason::BlockedTerm:
|
||||
return "BlockedTermCaughtMessageReason";
|
||||
|
||||
default:
|
||||
return default_tag;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -69,6 +69,13 @@ enum class ChatSendProtocol : int {
|
|||
Helix = 2,
|
||||
};
|
||||
|
||||
enum class ShowModerationState : int {
|
||||
// Always show this moderation-related item
|
||||
Always = 0,
|
||||
// Never show this moderation-related item
|
||||
Never = 1,
|
||||
};
|
||||
|
||||
enum StreamerModeSetting {
|
||||
Disabled = 0,
|
||||
Enabled = 1,
|
||||
|
@ -345,6 +352,10 @@ public:
|
|||
IntSetting timeoutStackStyle = {
|
||||
"/moderation/timeoutStackStyle",
|
||||
static_cast<int>(TimeoutStackStyle::Default)};
|
||||
EnumStringSetting<ShowModerationState> showBlockedTermAutomodMessages = {
|
||||
"/moderation/showBlockedTermAutomodMessages",
|
||||
ShowModerationState::Always,
|
||||
};
|
||||
|
||||
/// Highlighting
|
||||
// BoolSetting enableHighlights = {"/highlighting/enabled", true};
|
||||
|
|
|
@ -140,6 +140,8 @@ WindowManager::WindowManager(const Paths &paths, Settings &settings,
|
|||
this->forceLayoutChannelViewsListener.add(settings.enableRedeemedHighlight);
|
||||
this->forceLayoutChannelViewsListener.add(settings.colorUsernames);
|
||||
this->forceLayoutChannelViewsListener.add(settings.boldUsernames);
|
||||
this->forceLayoutChannelViewsListener.add(
|
||||
settings.showBlockedTermAutomodMessages);
|
||||
|
||||
this->layoutChannelViewsListener.add(settings.timestampFormat);
|
||||
this->layoutChannelViewsListener.add(fonts.fontChanged);
|
||||
|
|
|
@ -1167,6 +1167,14 @@ void GeneralPage::initLayout(GeneralPageView &layout)
|
|||
layout.addIntInput("Usercard scrollback limit (requires restart)",
|
||||
s.scrollbackUsercardLimit, 100, 100000, 100);
|
||||
|
||||
layout.addDropdownEnumClass<ShowModerationState>(
|
||||
"Show blocked term automod messages",
|
||||
qmagicenum::enumNames<ShowModerationState>(),
|
||||
s.showBlockedTermAutomodMessages,
|
||||
"Show messages that are blocked by AutoMod for containing a public "
|
||||
"blocked term in the current channel.",
|
||||
{});
|
||||
|
||||
layout.addDropdown<int>(
|
||||
"Stack timeouts", {"Stack", "Stack until timeout", "Don't stack"},
|
||||
s.timeoutStackStyle,
|
||||
|
|
Loading…
Reference in a new issue