mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
32b6417a55
Fully implement PubSub ban/unban messages Move the "message combining" to Channel::addMessage Disable "irc" ban/timeout handling for now. In the future, we might want to use this if you're not a moderator in a channel.
164 lines
4.8 KiB
C++
164 lines
4.8 KiB
C++
#include "messages/message.hpp"
|
|
#include "messageelement.hpp"
|
|
#include "singletons/helper/pubsubactions.hpp"
|
|
#include "util/irchelpers.hpp"
|
|
|
|
using SBHighlight = chatterino::widgets::ScrollbarHighlight;
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
void Message::addElement(MessageElement *element)
|
|
{
|
|
this->elements.push_back(std::unique_ptr<MessageElement>(element));
|
|
}
|
|
|
|
const std::vector<std::unique_ptr<MessageElement>> &Message::getElements() const
|
|
{
|
|
return this->elements;
|
|
}
|
|
|
|
SBHighlight Message::getScrollBarHighlight() const
|
|
{
|
|
if (this->flags & Message::Highlighted) {
|
|
return SBHighlight(SBHighlight::Highlight);
|
|
}
|
|
return SBHighlight();
|
|
}
|
|
|
|
// Static
|
|
MessagePtr Message::createSystemMessage(const QString &text)
|
|
{
|
|
MessagePtr message(new Message);
|
|
|
|
message->addElement(new TimestampElement(QTime::currentTime()));
|
|
message->addElement(new TextElement(text, MessageElement::Text, MessageColor::System));
|
|
message->flags.EnableFlag(MessageFlags::System);
|
|
message->searchText = text;
|
|
|
|
return message;
|
|
}
|
|
|
|
MessagePtr Message::createTimeoutMessage(const QString &username, const QString &durationInSeconds,
|
|
const QString &reason, bool multipleTimes)
|
|
{
|
|
QString text;
|
|
|
|
text.append(username);
|
|
if (!durationInSeconds.isEmpty()) {
|
|
text.append(" has been timed out");
|
|
|
|
// TODO: Implement who timed the user out
|
|
|
|
text.append(" for ");
|
|
text.append(durationInSeconds);
|
|
bool ok = true;
|
|
int timeoutDuration = durationInSeconds.toInt(&ok);
|
|
text.append(" second");
|
|
if (ok && timeoutDuration > 1) {
|
|
text.append("s");
|
|
}
|
|
} else {
|
|
text.append(" has been permanently banned");
|
|
}
|
|
|
|
if (reason.length() > 0) {
|
|
text.append(": \"");
|
|
text.append(util::ParseTagString(reason));
|
|
text.append("\"");
|
|
}
|
|
text.append(".");
|
|
|
|
if (multipleTimes) {
|
|
text.append(" (multiple times)");
|
|
}
|
|
|
|
MessagePtr message = Message::createSystemMessage(text);
|
|
message->flags.EnableFlag(MessageFlags::System);
|
|
message->flags.EnableFlag(MessageFlags::Timeout);
|
|
message->timeoutUser = username;
|
|
return message;
|
|
}
|
|
|
|
MessagePtr Message::createTimeoutMessage(const singletons::BanAction &action, uint32_t count)
|
|
{
|
|
MessagePtr msg(new Message);
|
|
|
|
msg->addElement(new TimestampElement(QTime::currentTime()));
|
|
msg->flags.EnableFlag(MessageFlags::System);
|
|
msg->flags.EnableFlag(MessageFlags::Timeout);
|
|
|
|
msg->timeoutUser = action.target.name;
|
|
msg->count = count;
|
|
msg->banAction.reset(new singletons::BanAction(action));
|
|
|
|
QString text;
|
|
|
|
if (action.isBan()) {
|
|
if (action.reason.isEmpty()) {
|
|
text = QString("%1 banned %2.") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name);
|
|
} else {
|
|
text = QString("%1 banned %2: \"%3\".") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name)
|
|
.arg(action.reason);
|
|
}
|
|
} else {
|
|
if (action.reason.isEmpty()) {
|
|
text = QString("%1 timed out %2 for %3 seconds.") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name)
|
|
.arg(action.duration);
|
|
} else {
|
|
text = QString("%1 timed out %2 for %3 seconds: \"%4\".") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name)
|
|
.arg(action.duration)
|
|
.arg(action.reason);
|
|
}
|
|
|
|
if (count > 1) {
|
|
text.append(QString(" (%1 times)").arg(count));
|
|
}
|
|
}
|
|
|
|
msg->addElement(new messages::TextElement(text, messages::MessageElement::Text,
|
|
messages::MessageColor::System));
|
|
msg->searchText = text;
|
|
|
|
return msg;
|
|
}
|
|
|
|
MessagePtr Message::createUntimeoutMessage(const singletons::UnbanAction &action)
|
|
{
|
|
MessagePtr msg(new Message);
|
|
|
|
msg->addElement(new TimestampElement(QTime::currentTime()));
|
|
msg->flags.EnableFlag(MessageFlags::System);
|
|
msg->flags.EnableFlag(MessageFlags::Untimeout);
|
|
|
|
msg->timeoutUser = action.target.name;
|
|
|
|
QString text;
|
|
|
|
if (action.wasBan()) {
|
|
text = QString("%1 unbanned %2.") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name);
|
|
} else {
|
|
text = QString("%1 untimedout %2.") //
|
|
.arg(action.source.name)
|
|
.arg(action.target.name);
|
|
}
|
|
|
|
msg->addElement(new messages::TextElement(text, messages::MessageElement::Text,
|
|
messages::MessageColor::System));
|
|
msg->searchText = text;
|
|
|
|
return msg;
|
|
}
|
|
|
|
} // namespace messages
|
|
} // namespace chatterino
|