2018-06-26 14:09:39 +02:00
|
|
|
#include "messages/Message.hpp"
|
|
|
|
#include "MessageElement.hpp"
|
|
|
|
#include "providers/twitch/PubsubActions.hpp"
|
|
|
|
#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 {
|
2018-06-19 22:02:51 +02:00
|
|
|
|
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-06-19 22:02:51 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
QString makeDuration(int count, const QString &order)
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
|
|
|
|
text.append(QString::number(count));
|
|
|
|
text.append(" " + order);
|
|
|
|
|
|
|
|
if (count > 1) {
|
|
|
|
text.append("s");
|
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString makeDuration(uint32_t timeoutSeconds)
|
|
|
|
{
|
|
|
|
int timeoutMinutes = floor(timeoutSeconds / 60);
|
|
|
|
|
|
|
|
if (timeoutMinutes > 0 && timeoutSeconds % 60 == 0) {
|
|
|
|
int timeoutHours = floor(timeoutMinutes / 60);
|
|
|
|
|
|
|
|
if (timeoutHours > 0 && timeoutMinutes % 60 == 0) {
|
|
|
|
int timeoutDays = floor(timeoutHours / 24);
|
|
|
|
|
|
|
|
if (timeoutDays > 0 && timeoutHours % 24 == 0) {
|
|
|
|
return makeDuration(timeoutDays, "day");
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeDuration(timeoutHours, "hour");
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeDuration(timeoutMinutes, "minute");
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeDuration(timeoutSeconds, "second");
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
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 ");
|
|
|
|
bool ok = true;
|
2018-06-19 22:02:51 +02:00
|
|
|
int timeoutSeconds = durationInSeconds.toInt(&ok);
|
|
|
|
if (ok) {
|
|
|
|
text.append(makeDuration(timeoutSeconds));
|
2017-12-16 19:45:23 +01:00
|
|
|
}
|
|
|
|
} 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()) {
|
2018-06-19 22:02:51 +02:00
|
|
|
text = QString("%1 timed out %2 for %3.") //
|
2018-04-27 18:35:31 +02:00
|
|
|
.arg(action.source.name)
|
|
|
|
.arg(action.target.name)
|
2018-06-19 22:02:51 +02:00
|
|
|
.arg(makeDuration(action.duration));
|
2018-04-27 18:35:31 +02:00
|
|
|
} else {
|
2018-06-19 22:02:51 +02:00
|
|
|
text = QString("%1 timed out %2 for %3: \"%4\".") //
|
2018-04-27 18:35:31 +02:00
|
|
|
.arg(action.source.name)
|
|
|
|
.arg(action.target.name)
|
2018-06-19 22:02:51 +02:00
|
|
|
.arg(makeDuration(action.duration))
|
2018-04-27 18:35:31 +02:00
|
|
|
.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 chatterino
|