2018-06-26 14:09:39 +02:00
|
|
|
#include "MessageBuilder.hpp"
|
2018-06-28 00:24:21 +02:00
|
|
|
|
|
|
|
#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
|
|
|
|
2017-12-27 01:22:12 +01: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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01: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
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
this->message->addElement(element);
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MessageBuilder::appendTimestamp()
|
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
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
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
if (value) {
|
2018-01-28 03:29:42 +01:00
|
|
|
this->message->flags |= Message::Highlighted;
|
2018-01-11 20:16:25 +01:00
|
|
|
} else {
|
2018-01-28 03:29:42 +01:00
|
|
|
this->message->flags &= ~Message::Highlighted;
|
2018-01-11 20:16:25 +01:00
|
|
|
}
|
2017-07-31 00:37:22 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
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)
|
|
|
|
{
|
2018-06-28 00:24:21 +02:00
|
|
|
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
|
|
|
|
2018-06-28 00:24:21 +02:00
|
|
|
if (!linkParser.hasMatch()) {
|
2017-08-12 12:09:26 +02:00
|
|
|
return QString();
|
|
|
|
}
|
2017-08-05 18:44:14 +02:00
|
|
|
|
2018-06-28 00:24:21 +02:00
|
|
|
QString captured = linkParser.getCaptured();
|
2017-07-31 14:23:23 +02:00
|
|
|
|
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-07-26 12:01:23 +02:00
|
|
|
}
|
2017-09-24 18:43:24 +02:00
|
|
|
|
2017-07-31 14:23:23 +02:00
|
|
|
return captured;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-06-11 20:53:43 +02:00
|
|
|
|
|
|
|
} // namespace chatterino
|