2017-06-11 09:31:45 +02:00
|
|
|
#include "messages/message.hpp"
|
2018-01-11 20:16:25 +01:00
|
|
|
#include "messageelement.hpp"
|
2018-04-28 15:48:40 +02:00
|
|
|
#include "providers/twitch/pubsubactions.hpp"
|
2017-12-17 00:01:42 +01:00
|
|
|
#include "util/irchelpers.hpp"
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
using SBHighlight = chatterino::widgets::ScrollbarHighlight;
|
2018-01-06 03:48:56 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace messages {
|
2018-01-11 20:16:25 +01:00
|
|
|
void Message::addElement(MessageElement *element)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
this->elements.push_back(std::unique_ptr<MessageElement>(element));
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-01-07 20:43:55 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
const std::vector<std::unique_ptr<MessageElement>> &Message::getElements() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
return this->elements;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-01-07 20:43:55 +01:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
SBHighlight Message::getScrollBarHighlight() const
|
|
|
|
{
|
2018-01-28 03:29:42 +01:00
|
|
|
if (this->flags & Message::Highlighted) {
|
2018-01-06 03:48:56 +01:00
|
|
|
return SBHighlight(SBHighlight::Highlight);
|
2018-06-04 12:23:23 +02:00
|
|
|
} else if (this->flags & Message::Subscription) {
|
|
|
|
return SBHighlight(SBHighlight::Subscription);
|
2018-01-06 03:48:56 +01:00
|
|
|
}
|
|
|
|
return SBHighlight();
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
// Static
|
|
|
|
MessagePtr Message::createSystemMessage(const QString &text)
|
2017-12-16 19:03:22 +01:00
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
MessagePtr message(new Message);
|
2017-12-16 19:03:22 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
message->addElement(new TimestampElement(QTime::currentTime()));
|
|
|
|
message->addElement(new TextElement(text, MessageElement::Text, MessageColor::System));
|
2018-05-28 08:34:54 +02:00
|
|
|
message->flags |= MessageFlags::System;
|
|
|
|
message->flags |= MessageFlags::DoNotTriggerNotification;
|
2018-01-28 03:29:42 +01:00
|
|
|
message->searchText = text;
|
2017-12-16 19:03:22 +01:00
|
|
|
|
2018-01-28 14:24:37 +01:00
|
|
|
return message;
|
2017-12-16 19:03:22 +01:00
|
|
|
}
|
2017-12-16 18:11:36 +01:00
|
|
|
|
2018-06-04 12:23:23 +02:00
|
|
|
MessagePtr Message::createMessage(const QString &text)
|
|
|
|
{
|
|
|
|
MessagePtr message(new Message);
|
|
|
|
|
|
|
|
message->addElement(new TimestampElement(QTime::currentTime()));
|
|
|
|
message->addElement(new TextElement(text, MessageElement::Text, MessageColor::Text));
|
|
|
|
message->searchText = text;
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
MessagePtr Message::createTimeoutMessage(const QString &username, const QString &durationInSeconds,
|
|
|
|
const QString &reason, bool multipleTimes)
|
2017-12-16 19:08:32 +01:00
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
|
|
|
|
text.append(username);
|
2017-12-16 19:45:23 +01:00
|
|
|
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");
|
2017-12-16 19:08:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (reason.length() > 0) {
|
|
|
|
text.append(": \"");
|
2018-06-04 12:23:23 +02:00
|
|
|
text.append(util::parseTagString(reason));
|
2017-12-16 19:08:32 +01:00
|
|
|
text.append("\"");
|
|
|
|
}
|
|
|
|
text.append(".");
|
|
|
|
|
2018-01-05 23:14:55 +01:00
|
|
|
if (multipleTimes) {
|
|
|
|
text.append(" (multiple times)");
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
MessagePtr message = Message::createSystemMessage(text);
|
2018-03-31 13:59:17 +02:00
|
|
|
message->flags.EnableFlag(MessageFlags::System);
|
|
|
|
message->flags.EnableFlag(MessageFlags::Timeout);
|
2018-01-05 23:14:55 +01:00
|
|
|
message->timeoutUser = username;
|
|
|
|
return message;
|
2017-12-16 18:11:36 +01:00
|
|
|
}
|
|
|
|
|
2018-04-28 15:48:40 +02:00
|
|
|
MessagePtr Message::createTimeoutMessage(const providers::twitch::BanAction &action, uint32_t count)
|
2018-04-27 18:35:31 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-04-28 15:48:40 +02:00
|
|
|
MessagePtr Message::createUntimeoutMessage(const providers::twitch::UnbanAction &action)
|
2018-04-27 18:35:31 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace messages
|
|
|
|
} // namespace chatterino
|