mirror-chatterino2/src/messages/MessageBuilder.cpp

69 lines
1.3 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "MessageBuilder.hpp"
#include "common/LinkParser.hpp"
2018-06-28 19:46:45 +02:00
#include "singletons/Emotes.hpp"
#include "singletons/Resources.hpp"
2018-06-28 20:03:04 +02:00
#include "singletons/Theme.hpp"
2017-04-12 17:46:44 +02:00
#include <QDateTime>
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
MessageBuilder::MessageBuilder()
2017-09-12 19:06:16 +02:00
: message(new Message)
2017-04-12 17:46:44 +02:00
{
}
MessagePtr MessageBuilder::getMessage()
2017-04-12 17:46:44 +02:00
{
2017-09-12 19:06:16 +02:00
return this->message;
2017-04-12 17:46:44 +02:00
}
2018-01-28 03:48:15 +01:00
void MessageBuilder::append(MessageElement *element)
2017-04-12 17:46:44 +02:00
{
this->message->addElement(element);
2017-04-12 17:46:44 +02:00
}
void MessageBuilder::appendTimestamp()
{
this->appendTimestamp(QTime::currentTime());
2017-04-12 17:46:44 +02:00
}
2017-09-24 18:43:24 +02:00
void MessageBuilder::setHighlight(bool value)
2017-07-31 00:57:42 +02:00
{
if (value) {
2018-01-28 03:29:42 +01:00
this->message->flags |= Message::Highlighted;
} else {
2018-01-28 03:29:42 +01:00
this->message->flags &= ~Message::Highlighted;
}
}
void MessageBuilder::appendTimestamp(const QTime &time)
2017-04-12 17:46:44 +02:00
{
2018-01-28 03:48:15 +01:00
this->append(new TimestampElement(time));
2017-04-12 17:46:44 +02:00
}
QString MessageBuilder::matchLink(const QString &string)
{
LinkParser linkParser(string);
2017-09-12 19:06:16 +02:00
static QRegularExpression httpRegex("\\bhttps?://");
2018-06-27 19:45:54 +02:00
static QRegularExpression ftpRegex("\\bftps?://");
2017-08-12 12:09:26 +02:00
if (!linkParser.hasMatch()) {
2017-08-12 12:09:26 +02:00
return QString();
}
2017-08-05 18:44:14 +02:00
QString captured = linkParser.getCaptured();
2017-09-12 19:06:16 +02:00
if (!captured.contains(httpRegex)) {
2018-06-27 19:45:54 +02:00
if (!captured.contains(ftpRegex)) {
captured.insert(0, "http://");
}
}
2017-09-24 18:43:24 +02:00
return captured;
2017-04-12 17:46:44 +02:00
}
} // namespace chatterino