2017-12-31 00:50:07 +01:00
|
|
|
#include "twitchmessagebuilder.hpp"
|
2017-09-24 19:23:07 +02:00
|
|
|
#include "debug/log.hpp"
|
2017-12-31 00:50:07 +01:00
|
|
|
#include "singletons/emotemanager.hpp"
|
|
|
|
#include "singletons/ircmanager.hpp"
|
2018-01-01 22:29:21 +01:00
|
|
|
#include "singletons/resourcemanager.hpp"
|
2017-12-31 00:50:07 +01:00
|
|
|
#include "singletons/settingsmanager.hpp"
|
|
|
|
#include "singletons/thememanager.hpp"
|
|
|
|
#include "singletons/windowmanager.hpp"
|
|
|
|
#include "twitch/twitchchannel.hpp"
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-31 00:37:22 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMediaPlayer>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
using namespace chatterino::messages;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace twitch {
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
TwitchMessageBuilder::TwitchMessageBuilder(Channel *_channel,
|
2017-07-02 18:12:11 +02:00
|
|
|
const Communi::IrcPrivateMessage *_ircMessage,
|
|
|
|
const messages::MessageParseArgs &_args)
|
|
|
|
: channel(_channel)
|
2017-12-31 00:50:07 +01:00
|
|
|
, twitchChannel(dynamic_cast<TwitchChannel *>(_channel))
|
2017-07-02 18:12:11 +02:00
|
|
|
, ircMessage(_ircMessage)
|
|
|
|
, args(_args)
|
|
|
|
, tags(this->ircMessage->tags())
|
2018-01-02 02:15:11 +01:00
|
|
|
, usernameColor(singletons::ThemeManager::getInstance().messages.textColors.system)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-01-23 21:33:49 +01:00
|
|
|
this->originalMessage = this->ircMessage->content();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TwitchMessageBuilder::isIgnored() const
|
|
|
|
{
|
|
|
|
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
|
|
|
std::shared_ptr<std::vector<QString>> ignoredKeywords = settings.getIgnoredKeywords();
|
|
|
|
|
|
|
|
for (const QString &keyword : *ignoredKeywords) {
|
|
|
|
if (this->originalMessage.contains(keyword, Qt::CaseInsensitive)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
MessagePtr TwitchMessageBuilder::parse()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-12-31 22:58:35 +01:00
|
|
|
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
|
|
|
singletons::EmoteManager &emoteManager = singletons::EmoteManager::getInstance();
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
// PARSING
|
2017-08-12 13:18:48 +02:00
|
|
|
this->parseUsername();
|
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// this->message->setCollapsedDefault(true);
|
2017-12-31 00:50:07 +01:00
|
|
|
// this->appendWord(Word(Resources::getInstance().badgeCollapsed, Word::Collapsed, QString(),
|
2017-12-19 00:09:38 +01:00
|
|
|
// QString()));
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
// The timestamp is always appended to the builder
|
|
|
|
// Whether or not will be rendered is decided/checked later
|
2017-12-27 01:22:12 +01:00
|
|
|
|
|
|
|
// Appends the correct timestamp if the message is a past message
|
2018-01-11 20:16:25 +01:00
|
|
|
|
2017-12-27 01:22:12 +01:00
|
|
|
bool isPastMsg = this->tags.contains("historical");
|
2017-12-28 17:56:00 +01:00
|
|
|
if (isPastMsg) {
|
2017-12-27 01:22:12 +01:00
|
|
|
// This may be architecture dependent(datatype)
|
|
|
|
qint64 ts = this->tags.value("tmi-sent-ts").toLongLong();
|
2018-01-11 20:16:25 +01:00
|
|
|
QDateTime dateTime = QDateTime::fromMSecsSinceEpoch(ts);
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<TimestampElement>(dateTime.time());
|
2017-12-27 01:22:12 +01:00
|
|
|
} else {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<TimestampElement>();
|
2017-12-27 01:22:12 +01:00
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
this->parseMessageID();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
this->parseRoomID();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
// TIMESTAMP
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<TwitchModerationElement>();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
this->parseTwitchBadges();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
this->addChatterinoBadges();
|
2017-08-12 13:20:52 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
if (this->args.includeChannelName) {
|
|
|
|
this->parseChannelName();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 13:18:48 +02:00
|
|
|
this->appendUsername();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
// highlights
|
2017-12-27 01:22:12 +01:00
|
|
|
if (settings.enableHighlights && !isPastMsg) {
|
2017-07-31 01:19:25 +02:00
|
|
|
this->parseHighlights();
|
2017-07-31 00:37:22 +02:00
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-12 19:37:11 +01:00
|
|
|
QString bits;
|
2017-07-02 18:12:11 +02:00
|
|
|
auto iterator = this->tags.find("bits");
|
|
|
|
if (iterator != this->tags.end()) {
|
2017-04-12 17:46:44 +02:00
|
|
|
bits = iterator.value().toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// twitch emotes
|
2017-12-31 22:58:35 +01:00
|
|
|
std::vector<std::pair<long, util::EmoteData>> twitchEmotes;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
iterator = this->tags.find("emotes");
|
|
|
|
if (iterator != this->tags.end()) {
|
2017-06-13 21:13:58 +02:00
|
|
|
QStringList emoteString = iterator.value().toString().split('/');
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
for (QString emote : emoteString) {
|
2017-12-17 02:18:13 +01:00
|
|
|
this->appendTwitchEmote(ircMessage, emote, twitchEmotes);
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct {
|
2017-12-31 22:58:35 +01:00
|
|
|
bool operator()(const std::pair<long, util::EmoteData> &lhs,
|
|
|
|
const std::pair<long, util::EmoteData> &rhs)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-07-02 18:12:11 +02:00
|
|
|
return lhs.first < rhs.first;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
} customLess;
|
|
|
|
|
|
|
|
std::sort(twitchEmotes.begin(), twitchEmotes.end(), customLess);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto currentTwitchEmote = twitchEmotes.begin();
|
|
|
|
|
|
|
|
// words
|
|
|
|
|
2017-07-31 01:19:25 +02:00
|
|
|
QStringList splits = this->originalMessage.split(' ');
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
long int i = 0;
|
|
|
|
|
|
|
|
for (QString split : splits) {
|
2017-09-21 00:54:10 +02:00
|
|
|
MessageColor textColor = ircMessage->isAction() ? MessageColor(this->usernameColor)
|
|
|
|
: MessageColor(MessageColor::Text);
|
2017-08-12 12:07:53 +02:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
// twitch emote
|
|
|
|
if (currentTwitchEmote != twitchEmotes.end() && currentTwitchEmote->first == i) {
|
2018-01-11 20:16:25 +01:00
|
|
|
auto emoteImage = currentTwitchEmote->second;
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<EmoteElement>(emoteImage, MessageElement::TwitchEmote);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
i += split.length() + 1;
|
|
|
|
currentTwitchEmote = std::next(currentTwitchEmote);
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// split words
|
2017-12-31 22:58:35 +01:00
|
|
|
std::vector<std::tuple<util::EmoteData, QString>> parsed;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
// Parse emojis and take all non-emojis and put them in parsed as full text-words
|
2017-06-26 16:41:20 +02:00
|
|
|
emoteManager.parseEmojis(parsed, split);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
for (const auto &tuple : parsed) {
|
2017-12-31 22:58:35 +01:00
|
|
|
const util::EmoteData &emoteData = std::get<0>(tuple);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-07 02:56:45 +01:00
|
|
|
if (!emoteData.isValid()) { // is text
|
2017-04-12 17:46:44 +02:00
|
|
|
QString string = std::get<1>(tuple);
|
|
|
|
|
2018-01-12 19:37:11 +01:00
|
|
|
if (!bits.isEmpty() && this->tryParseCheermote(string)) {
|
|
|
|
// This string was parsed as a cheermote
|
2017-04-12 17:46:44 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
// TODO: Implement ignored emotes
|
|
|
|
// Format of ignored emotes:
|
|
|
|
// Emote name: "forsenPuke" - if string in ignoredEmotes
|
|
|
|
// Will match emote regardless of source (i.e. bttv, ffz)
|
|
|
|
// Emote source + name: "bttv:nyanPls"
|
2017-07-23 09:53:50 +02:00
|
|
|
if (this->tryAppendEmote(string)) {
|
|
|
|
// Successfully appended an emote
|
2017-04-12 17:46:44 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
// Actually just text
|
2017-08-05 18:44:14 +02:00
|
|
|
QString linkString = this->matchLink(string);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-08-12 12:09:26 +02:00
|
|
|
Link link;
|
|
|
|
|
|
|
|
if (linkString.isEmpty()) {
|
|
|
|
link = Link();
|
|
|
|
} else {
|
|
|
|
link = Link(Link::Url, linkString);
|
2017-09-21 00:54:10 +02:00
|
|
|
textColor = MessageColor(MessageColor::Link);
|
2017-08-12 12:09:26 +02:00
|
|
|
}
|
2017-08-05 18:44:14 +02:00
|
|
|
|
2018-01-22 20:14:43 +01:00
|
|
|
this->emplace<TextElement>(string, MessageElement::Text, textColor) //
|
2018-01-11 20:16:25 +01:00
|
|
|
->setLink(link);
|
2017-04-12 17:46:44 +02:00
|
|
|
} else { // is emoji
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<EmoteElement>(emoteData, EmoteElement::EmojiAll);
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:46:16 +02:00
|
|
|
for (int j = 0; j < split.size(); j++) {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if (split.at(j).isHighSurrogate()) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 14:25:03 +01:00
|
|
|
this->message->setSearchText(this->userName + ": " + this->originalMessage);
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
return this->getMessage();
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TwitchMessageBuilder::parseMessageID()
|
|
|
|
{
|
|
|
|
auto iterator = this->tags.find("id");
|
|
|
|
|
|
|
|
if (iterator != this->tags.end()) {
|
|
|
|
this->messageID = iterator.value().toString();
|
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
void TwitchMessageBuilder::parseRoomID()
|
|
|
|
{
|
2017-12-31 00:50:07 +01:00
|
|
|
if (this->twitchChannel == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
auto iterator = this->tags.find("room-id");
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2017-07-02 18:12:11 +02:00
|
|
|
if (iterator != std::end(this->tags)) {
|
2017-11-04 14:57:29 +01:00
|
|
|
this->roomID = iterator.value().toString();
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2017-11-04 14:57:29 +01:00
|
|
|
if (this->twitchChannel->roomID.isEmpty()) {
|
2017-09-16 00:05:06 +02:00
|
|
|
this->twitchChannel->roomID = this->roomID;
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TwitchMessageBuilder::parseChannelName()
|
|
|
|
{
|
2017-07-23 09:53:50 +02:00
|
|
|
QString channelName("#" + this->channel->name);
|
2018-01-11 20:16:25 +01:00
|
|
|
Link link(Link::Url, this->channel->name + "\n" + this->messageID);
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<TextElement>(channelName, MessageElement::ChannelName, MessageColor::System) //
|
2018-01-11 20:16:25 +01:00
|
|
|
->setLink(link);
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TwitchMessageBuilder::parseUsername()
|
|
|
|
{
|
|
|
|
auto iterator = this->tags.find("color");
|
|
|
|
if (iterator != this->tags.end()) {
|
|
|
|
this->usernameColor = QColor(iterator.value().toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
// username
|
|
|
|
this->userName = ircMessage->nick();
|
|
|
|
|
|
|
|
if (this->userName.isEmpty()) {
|
|
|
|
this->userName = this->tags.value(QLatin1String("login")).toString();
|
|
|
|
}
|
2017-12-17 17:48:46 +01:00
|
|
|
|
2017-12-17 21:05:25 +01:00
|
|
|
this->message->loginName = this->userName;
|
2017-08-12 13:18:48 +02:00
|
|
|
}
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2017-08-12 13:18:48 +02:00
|
|
|
void TwitchMessageBuilder::appendUsername()
|
|
|
|
{
|
2017-07-23 11:59:05 +02:00
|
|
|
QString username = this->userName;
|
2018-01-17 02:46:50 +01:00
|
|
|
this->message->loginName = username;
|
2017-07-23 11:59:05 +02:00
|
|
|
QString localizedName;
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2017-08-12 13:18:48 +02:00
|
|
|
auto iterator = this->tags.find("display-name");
|
2017-07-23 11:59:05 +02:00
|
|
|
if (iterator != this->tags.end()) {
|
|
|
|
QString displayName = iterator.value().toString();
|
|
|
|
|
|
|
|
if (QString::compare(displayName, this->userName, Qt::CaseInsensitive) == 0) {
|
|
|
|
username = displayName;
|
2017-12-17 21:05:25 +01:00
|
|
|
|
|
|
|
this->message->displayName = displayName;
|
2017-07-23 11:59:05 +02:00
|
|
|
} else {
|
|
|
|
localizedName = displayName;
|
2017-12-17 21:05:25 +01:00
|
|
|
|
|
|
|
this->message->displayName = username;
|
|
|
|
this->message->localizedName = displayName;
|
2017-07-23 11:59:05 +02:00
|
|
|
}
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
|
2017-07-23 11:59:05 +02:00
|
|
|
bool hasLocalizedName = !localizedName.isEmpty();
|
|
|
|
|
|
|
|
// The full string that will be rendered in the chat widget
|
2018-01-11 20:16:25 +01:00
|
|
|
QString usernameText;
|
2017-07-23 11:59:05 +02:00
|
|
|
|
|
|
|
pajlada::Settings::Setting<int> usernameDisplayMode(
|
|
|
|
"/appearance/messages/usernameDisplayMode", UsernameDisplayMode::UsernameAndLocalizedName);
|
|
|
|
|
|
|
|
switch (usernameDisplayMode.getValue()) {
|
|
|
|
case UsernameDisplayMode::Username: {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText = username;
|
2017-07-23 11:59:05 +02:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case UsernameDisplayMode::LocalizedName: {
|
|
|
|
if (hasLocalizedName) {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText = localizedName;
|
2017-07-23 11:59:05 +02:00
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText = username;
|
2017-07-23 11:59:05 +02:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
case UsernameDisplayMode::UsernameAndLocalizedName: {
|
|
|
|
if (hasLocalizedName) {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText = username + "(" + localizedName + ")";
|
2017-07-23 11:59:05 +02:00
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText = username;
|
2017-07-23 11:59:05 +02:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
2017-07-02 18:12:11 +02:00
|
|
|
|
|
|
|
if (this->args.isSentWhisper) {
|
|
|
|
// TODO(pajlada): Re-implement
|
|
|
|
// userDisplayString += IrcManager::getInstance().getUser().getUserName();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->args.isReceivedWhisper) {
|
|
|
|
// TODO(pajlada): Re-implement
|
|
|
|
// userDisplayString += " -> " + IrcManager::getInstance().getUser().getUserName();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ircMessage->isAction()) {
|
2018-01-11 20:16:25 +01:00
|
|
|
usernameText += ":";
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<TextElement>(usernameText, MessageElement::Text, this->usernameColor,
|
|
|
|
FontStyle::MediumBold)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setLink({Link::UserInfo, this->userName});
|
2017-07-02 18:12:11 +02:00
|
|
|
}
|
|
|
|
|
2017-07-31 01:19:25 +02:00
|
|
|
void TwitchMessageBuilder::parseHighlights()
|
|
|
|
{
|
|
|
|
static auto player = new QMediaPlayer;
|
2017-12-18 17:57:56 +01:00
|
|
|
static QUrl currentPlayerUrl;
|
2017-12-31 22:58:35 +01:00
|
|
|
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
2017-09-24 18:14:22 +02:00
|
|
|
static pajlada::Settings::Setting<std::string> currentUser("/accounts/current");
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-08-19 15:37:56 +02:00
|
|
|
QString currentUsername = QString::fromStdString(currentUser.getValue());
|
|
|
|
|
|
|
|
if (this->ircMessage->nick() == currentUsername) {
|
2017-07-31 01:19:25 +02:00
|
|
|
// Do nothing. Highlights cannot be triggered by yourself
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-18 17:57:56 +01:00
|
|
|
// update the media player url if necessary
|
|
|
|
QUrl highlightSoundUrl;
|
2017-12-17 01:19:56 +01:00
|
|
|
if (settings.customHighlightSound) {
|
2018-01-04 02:19:35 +01:00
|
|
|
highlightSoundUrl = QUrl(settings.pathHighlightSound.getValue());
|
2017-07-31 01:19:25 +02:00
|
|
|
} else {
|
2017-12-18 17:57:56 +01:00
|
|
|
highlightSoundUrl = QUrl("qrc:/sounds/ping2.wav");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentPlayerUrl != highlightSoundUrl) {
|
|
|
|
player->setMedia(highlightSoundUrl);
|
|
|
|
|
|
|
|
currentPlayerUrl = highlightSoundUrl;
|
2017-07-31 01:19:25 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 18:43:24 +02:00
|
|
|
QStringList blackList =
|
2018-01-04 02:19:35 +01:00
|
|
|
settings.highlightUserBlacklist.getValue().split("\n", QString::SkipEmptyParts);
|
2017-09-23 19:23:10 +02:00
|
|
|
|
2017-07-31 01:19:25 +02:00
|
|
|
// TODO: This vector should only be rebuilt upon highlights being changed
|
2018-01-04 01:52:37 +01:00
|
|
|
auto activeHighlights = settings.highlightProperties.getValue();
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-12-17 01:19:56 +01:00
|
|
|
if (settings.enableHighlightsSelf && currentUsername.size() > 0) {
|
2018-01-04 01:52:37 +01:00
|
|
|
messages::HighlightPhrase selfHighlight;
|
|
|
|
selfHighlight.key = currentUsername;
|
|
|
|
selfHighlight.sound = settings.enableHighlightSound;
|
|
|
|
selfHighlight.alert = settings.enableHighlightTaskbar;
|
|
|
|
activeHighlights.emplace_back(std::move(selfHighlight));
|
2017-07-31 01:19:25 +02:00
|
|
|
}
|
|
|
|
|
2017-07-31 11:08:32 +02:00
|
|
|
bool doHighlight = false;
|
2017-07-31 01:19:25 +02:00
|
|
|
bool playSound = false;
|
|
|
|
bool doAlert = false;
|
2017-10-08 15:58:28 +02:00
|
|
|
|
|
|
|
bool hasFocus = (QApplication::focusWidget() != nullptr);
|
|
|
|
|
2017-09-24 18:43:24 +02:00
|
|
|
if (!blackList.contains(this->ircMessage->nick(), Qt::CaseInsensitive)) {
|
2018-01-04 01:52:37 +01:00
|
|
|
for (const messages::HighlightPhrase &highlight : activeHighlights) {
|
|
|
|
if (this->originalMessage.contains(highlight.key, Qt::CaseInsensitive)) {
|
2017-09-24 19:23:07 +02:00
|
|
|
debug::Log("Highlight because {} contains {}", this->originalMessage,
|
2018-01-04 01:52:37 +01:00
|
|
|
highlight.key);
|
2017-09-23 19:23:10 +02:00
|
|
|
doHighlight = true;
|
|
|
|
|
|
|
|
if (highlight.sound) {
|
|
|
|
playSound = true;
|
|
|
|
}
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-09-23 19:23:10 +02:00
|
|
|
if (highlight.alert) {
|
|
|
|
doAlert = true;
|
|
|
|
}
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-09-23 19:23:10 +02:00
|
|
|
if (playSound && doAlert) {
|
|
|
|
// Break if no further action can be taken from other highlights
|
|
|
|
// This might change if highlights can have custom colors/sounds/actions
|
|
|
|
break;
|
|
|
|
}
|
2017-07-31 01:19:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 19:23:10 +02:00
|
|
|
this->setHighlight(doHighlight);
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-10-08 15:58:28 +02:00
|
|
|
if (playSound && (!hasFocus || settings.highlightAlwaysPlaySound)) {
|
2017-09-23 19:23:10 +02:00
|
|
|
player->play();
|
|
|
|
}
|
2017-07-31 01:19:25 +02:00
|
|
|
|
2017-09-23 19:23:10 +02:00
|
|
|
if (doAlert) {
|
2018-01-01 22:29:21 +01:00
|
|
|
QApplication::alert(singletons::WindowManager::getInstance().getMainWindow().window(),
|
|
|
|
2500);
|
2017-09-23 19:23:10 +02:00
|
|
|
}
|
2018-01-06 03:48:56 +01:00
|
|
|
|
|
|
|
if (doHighlight) {
|
|
|
|
this->message->addFlags(Message::Highlighted);
|
|
|
|
}
|
2017-07-31 01:19:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
void TwitchMessageBuilder::appendTwitchEmote(const Communi::IrcPrivateMessage *ircMessage,
|
|
|
|
const QString &emote,
|
2017-12-31 22:58:35 +01:00
|
|
|
std::vector<std::pair<long int, util::EmoteData>> &vec)
|
2017-06-13 21:13:58 +02:00
|
|
|
{
|
2017-12-31 22:58:35 +01:00
|
|
|
singletons::EmoteManager &emoteManager = singletons::EmoteManager::getInstance();
|
2017-06-13 21:13:58 +02:00
|
|
|
if (!emote.contains(':')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList parameters = emote.split(':');
|
|
|
|
|
|
|
|
if (parameters.length() < 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
long int id = std::stol(parameters.at(0).toStdString(), nullptr, 10);
|
|
|
|
|
|
|
|
QStringList occurences = parameters.at(1).split(',');
|
|
|
|
|
|
|
|
for (QString occurence : occurences) {
|
|
|
|
QStringList coords = occurence.split('-');
|
|
|
|
|
|
|
|
if (coords.length() < 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
long int start = std::stol(coords.at(0).toStdString(), nullptr, 10);
|
|
|
|
long int end = std::stol(coords.at(1).toStdString(), nullptr, 10);
|
|
|
|
|
|
|
|
if (start >= end || start < 0 || end > ircMessage->content().length()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString name = ircMessage->content().mid(start, end - start + 1);
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
vec.push_back(
|
2017-12-31 22:58:35 +01:00
|
|
|
std::pair<long int, util::EmoteData>(start, emoteManager.getTwitchEmoteById(id, name)));
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
bool TwitchMessageBuilder::tryAppendEmote(QString &emoteString)
|
|
|
|
{
|
2017-12-31 22:58:35 +01:00
|
|
|
singletons::EmoteManager &emoteManager = singletons::EmoteManager::getInstance();
|
|
|
|
util::EmoteData emoteData;
|
2017-07-23 09:53:50 +02:00
|
|
|
|
2018-01-22 22:38:44 +01:00
|
|
|
auto appendEmote = [=](MessageElement::Flags flags) {
|
|
|
|
this->emplace<EmoteElement>(emoteData, flags);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
if (emoteManager.bttvGlobalEmotes.tryGet(emoteString, emoteData)) {
|
|
|
|
// BTTV Global Emote
|
2018-01-22 22:38:44 +01:00
|
|
|
return appendEmote(MessageElement::BttvEmote);
|
2017-12-31 00:50:07 +01:00
|
|
|
} else if (this->twitchChannel != nullptr &&
|
|
|
|
this->twitchChannel->bttvChannelEmotes->tryGet(emoteString, emoteData)) {
|
2017-07-23 09:53:50 +02:00
|
|
|
// BTTV Channel Emote
|
2018-01-22 22:38:44 +01:00
|
|
|
return appendEmote(MessageElement::BttvEmote);
|
2017-07-23 09:53:50 +02:00
|
|
|
} else if (emoteManager.ffzGlobalEmotes.tryGet(emoteString, emoteData)) {
|
|
|
|
// FFZ Global Emote
|
2018-01-22 22:38:44 +01:00
|
|
|
return appendEmote(MessageElement::FfzEmote);
|
2017-12-31 00:50:07 +01:00
|
|
|
} else if (this->twitchChannel != nullptr &&
|
|
|
|
this->twitchChannel->ffzChannelEmotes->tryGet(emoteString, emoteData)) {
|
2017-07-23 09:53:50 +02:00
|
|
|
// FFZ Channel Emote
|
2018-01-22 22:38:44 +01:00
|
|
|
return appendEmote(MessageElement::FfzEmote);
|
2017-07-23 09:53:50 +02:00
|
|
|
} else if (emoteManager.getChatterinoEmotes().tryGet(emoteString, emoteData)) {
|
|
|
|
// Chatterino Emote
|
2018-01-22 22:38:44 +01:00
|
|
|
return appendEmote(MessageElement::Misc);
|
2017-07-23 09:53:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
// fourtf: this is ugly
|
|
|
|
// maybe put the individual badges into a map instead of this mess
|
2017-07-02 18:12:11 +02:00
|
|
|
void TwitchMessageBuilder::parseTwitchBadges()
|
2017-06-13 21:13:58 +02:00
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
singletons::ResourceManager &resourceManager = singletons::ResourceManager::getInstance();
|
|
|
|
const auto &channelResources = resourceManager.channels[this->roomID];
|
2017-07-02 18:12:11 +02:00
|
|
|
|
|
|
|
auto iterator = this->tags.find("badges");
|
|
|
|
|
|
|
|
if (iterator == this->tags.end()) {
|
|
|
|
// No badges in this message
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList badges = iterator.value().toString().split(',');
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
for (QString badge : badges) {
|
2017-06-13 22:03:29 +02:00
|
|
|
if (badge.isEmpty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
if (badge.startsWith("bits/")) {
|
2017-12-31 22:58:35 +01:00
|
|
|
if (!singletons::ResourceManager::getInstance().dynamicBadgesLoaded) {
|
2017-06-15 23:13:01 +02:00
|
|
|
// Do nothing
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString cheerAmountQS = badge.mid(5);
|
2017-06-16 10:01:21 +02:00
|
|
|
std::string versionKey = cheerAmountQS.toStdString();
|
2017-06-15 23:13:01 +02:00
|
|
|
|
2018-01-12 22:38:00 +01:00
|
|
|
// Try to fetch channel-specific bit badge
|
2017-06-16 08:03:13 +02:00
|
|
|
try {
|
2018-01-12 22:38:00 +01:00
|
|
|
const auto &badge = channelResources.badgeSets.at("bits").versions.at(versionKey);
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(badge.badgeImage1x, MessageElement::BadgeVanity);
|
2018-01-12 22:38:00 +01:00
|
|
|
continue;
|
|
|
|
} catch (const std::out_of_range &) {
|
|
|
|
// Channel does not contain a special bit badge for this version
|
|
|
|
}
|
2017-06-16 08:03:13 +02:00
|
|
|
|
2018-01-12 22:38:00 +01:00
|
|
|
// Use default bit badge
|
|
|
|
try {
|
|
|
|
const auto &badge = resourceManager.badgeSets.at("bits").versions.at(versionKey);
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(badge.badgeImage1x, MessageElement::BadgeVanity);
|
2018-01-12 22:38:00 +01:00
|
|
|
} catch (const std::out_of_range &) {
|
|
|
|
debug::Log("No default bit badge for version {} found", versionKey);
|
|
|
|
continue;
|
2017-06-16 08:03:13 +02:00
|
|
|
}
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "staff/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeStaff,
|
|
|
|
MessageElement::BadgeGlobalAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Staff");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "admin/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeAdmin,
|
|
|
|
MessageElement::BadgeGlobalAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Admin");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "global_mod/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeGlobalModerator,
|
|
|
|
MessageElement::BadgeGlobalAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Global Moderator");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "moderator/1") {
|
2017-06-13 22:03:29 +02:00
|
|
|
// TODO: Implement custom FFZ moderator badge
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeModerator,
|
|
|
|
MessageElement::BadgeChannelAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Channel Moderator");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "turbo/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeTurbo,
|
|
|
|
MessageElement::BadgeGlobalAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Turbo Subscriber");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "broadcaster/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeBroadcaster,
|
|
|
|
MessageElement::BadgeChannelAuthority)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Broadcaster");
|
2017-06-13 21:13:58 +02:00
|
|
|
} else if (badge == "premium/1") {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgePremium, MessageElement::BadgeVanity)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Prime Subscriber");
|
2017-06-13 22:03:29 +02:00
|
|
|
} else if (badge.startsWith("partner/")) {
|
|
|
|
int index = badge.midRef(8).toInt();
|
|
|
|
switch (index) {
|
|
|
|
case 1: {
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeVerified,
|
|
|
|
MessageElement::BadgeVanity)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Verified");
|
2017-06-13 22:03:29 +02:00
|
|
|
} break;
|
|
|
|
default: {
|
|
|
|
printf("[TwitchMessageBuilder] Unhandled partner badge index: %d\n", index);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
} else if (badge.startsWith("subscriber/")) {
|
2017-07-02 15:11:33 +02:00
|
|
|
if (channelResources.loaded == false) {
|
|
|
|
qDebug() << "Channel resources are not loaded, can't add the subscriber badge";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-11-04 17:22:53 +01:00
|
|
|
auto badgeSetIt = channelResources.badgeSets.find("subscriber");
|
|
|
|
if (badgeSetIt == channelResources.badgeSets.end()) {
|
|
|
|
// Fall back to default badge
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeSubscriber,
|
|
|
|
MessageElement::BadgeSubscription)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Subscriber");
|
2017-11-04 17:22:53 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-07-02 15:11:33 +02:00
|
|
|
|
2017-11-04 17:22:53 +01:00
|
|
|
const auto &badgeSet = badgeSetIt->second;
|
2017-07-02 15:11:33 +02:00
|
|
|
|
2017-11-04 17:22:53 +01:00
|
|
|
std::string versionKey = badge.mid(11).toStdString();
|
2017-07-02 15:11:33 +02:00
|
|
|
|
2017-11-04 17:22:53 +01:00
|
|
|
auto badgeVersionIt = badgeSet.versions.find(versionKey);
|
|
|
|
|
|
|
|
if (badgeVersionIt == badgeSet.versions.end()) {
|
|
|
|
// Fall back to default badge
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(resourceManager.badgeSubscriber,
|
|
|
|
MessageElement::BadgeSubscription)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch Subscriber");
|
2017-11-04 17:22:53 +01:00
|
|
|
continue;
|
2017-06-13 22:03:29 +02:00
|
|
|
}
|
2017-07-02 15:11:33 +02:00
|
|
|
|
2017-11-04 17:22:53 +01:00
|
|
|
auto &badgeVersion = badgeVersionIt->second;
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(badgeVersion.badgeImage1x,
|
|
|
|
MessageElement::BadgeSubscription)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch " + QString::fromStdString(badgeVersion.title));
|
2017-06-13 22:03:29 +02:00
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
if (!resourceManager.dynamicBadgesLoaded) {
|
2017-06-16 10:01:21 +02:00
|
|
|
// Do nothing
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList parts = badge.split('/');
|
|
|
|
|
|
|
|
if (parts.length() != 2) {
|
|
|
|
qDebug() << "Bad number of parts: " << parts.length() << " in " << parts;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
MessageElement::Flags badgeType = MessageElement::Flags::BadgeVanity;
|
2017-06-16 10:01:21 +02:00
|
|
|
|
|
|
|
std::string badgeSetKey = parts[0].toStdString();
|
|
|
|
std::string versionKey = parts[1].toStdString();
|
|
|
|
|
|
|
|
try {
|
2018-01-11 20:16:25 +01:00
|
|
|
auto &badgeSet = resourceManager.badgeSets.at(badgeSetKey);
|
2017-06-16 10:01:21 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
auto &badgeVersion = badgeSet.versions.at(versionKey);
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(badgeVersion.badgeImage1x, badgeType)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip("Twitch " + QString::fromStdString(badgeVersion.title));
|
2017-06-16 10:01:21 +02:00
|
|
|
} catch (const std::exception &e) {
|
|
|
|
qDebug() << "Exception caught:" << e.what()
|
|
|
|
<< "when trying to fetch badge version " << versionKey.c_str();
|
|
|
|
}
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
qDebug() << "No badge set with key" << badgeSetKey.c_str()
|
|
|
|
<< ". Exception: " << e.what();
|
|
|
|
}
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
void TwitchMessageBuilder::addChatterinoBadges()
|
2017-08-12 13:20:52 +02:00
|
|
|
{
|
2017-12-31 22:58:35 +01:00
|
|
|
auto &badges = singletons::ResourceManager::getInstance().chatterinoBadges;
|
2017-08-12 13:20:52 +02:00
|
|
|
auto it = badges.find(this->userName.toStdString());
|
|
|
|
|
|
|
|
if (it == badges.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto badge = it->second;
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<ImageElement>(badge->image, MessageElement::BadgeChatterino)
|
2018-01-11 20:16:25 +01:00
|
|
|
->setTooltip(QString::fromStdString(badge->tooltip));
|
2017-08-12 13:20:52 +02:00
|
|
|
}
|
|
|
|
|
2018-01-12 19:37:11 +01:00
|
|
|
bool TwitchMessageBuilder::tryParseCheermote(const QString &string)
|
|
|
|
{
|
|
|
|
// Try to parse custom cheermotes
|
|
|
|
const auto &channelResources =
|
|
|
|
singletons::ResourceManager::getInstance().channels[this->roomID];
|
|
|
|
if (channelResources.loaded) {
|
|
|
|
for (const auto &cheermoteSet : channelResources.cheermoteSets) {
|
|
|
|
auto match = cheermoteSet.regex.match(string);
|
|
|
|
if (!match.hasMatch()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QString amount = match.captured(1);
|
|
|
|
bool ok = false;
|
|
|
|
int numBits = amount.toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
debug::Log("Error parsing bit amount in tryParseCheermote");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto savedIt = cheermoteSet.cheermotes.end();
|
|
|
|
|
|
|
|
// Fetch cheermote that matches our numBits
|
|
|
|
for (auto it = cheermoteSet.cheermotes.begin(); it != cheermoteSet.cheermotes.end();
|
|
|
|
++it) {
|
|
|
|
if (numBits >= it->minBits) {
|
|
|
|
savedIt = it;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (savedIt == cheermoteSet.cheermotes.end()) {
|
|
|
|
debug::Log("Error getting a cheermote from a cheermote set for the bit amount {}",
|
|
|
|
numBits);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto &cheermote = *savedIt;
|
|
|
|
|
2018-01-22 14:39:24 +01:00
|
|
|
this->emplace<EmoteElement>(cheermote.emoteDataAnimated, EmoteElement::BitsAnimated);
|
|
|
|
this->emplace<TextElement>(amount, EmoteElement::Text, cheermote.color);
|
2018-01-12 19:37:11 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace twitch
|
|
|
|
} // namespace chatterino
|