#pragma once #include "messages/MessageElement.hpp" #include #include #include namespace chatterino { struct BanAction; struct UnbanAction; struct AutomodAction; struct AutomodUserAction; struct Message; using MessagePtr = std::shared_ptr; struct SystemMessageTag { }; struct TimeoutMessageTag { }; const SystemMessageTag systemMessage{}; const TimeoutMessageTag timeoutMessage{}; MessagePtr makeSystemMessage(const QString &text); MessagePtr makeSystemMessage(const QString &text, const QTime &time); std::pair makeAutomodMessage( const AutomodAction &action); struct MessageParseArgs { bool disablePingSounds = false; bool isReceivedWhisper = false; bool isSentWhisper = false; bool trimSubscriberUsername = false; bool isStaffOrBroadcaster = false; QString channelPointRewardId = ""; }; class MessageBuilder { public: MessageBuilder(); MessageBuilder(SystemMessageTag, const QString &text, const QTime &time = QTime::currentTime()); MessageBuilder(TimeoutMessageTag, const QString &systemMessageText, int times, const QTime &time = QTime::currentTime()); MessageBuilder(TimeoutMessageTag, const QString &username, const QString &durationInSeconds, const QString &reason, bool multipleTimes, const QTime &time = QTime::currentTime()); MessageBuilder(const BanAction &action, uint32_t count = 1); MessageBuilder(const UnbanAction &action); MessageBuilder(const AutomodUserAction &action); Message *operator->(); Message &message(); MessagePtr release(); std::weak_ptr weakOf(); void append(std::unique_ptr element); QString matchLink(const QString &string); void addLink(const QString &origLink, const QString &matchedLink); template T *emplace(Args &&... args) { static_assert(std::is_base_of::value, "T must extend MessageElement"); auto unique = std::make_unique(std::forward(args)...); auto pointer = unique.get(); this->append(std::move(unique)); return pointer; } private: // Helper method that emplaces some text stylized as system text // and then appends that text to the QString parameter "toUpdate". // Returns the TextElement that was emplaced. TextElement *emplaceSystemTextAndUpdate(const QString &text, QString &toUpdate); std::shared_ptr message_; }; } // namespace chatterino