2014-09-06 03:27:26 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
2014-09-07 01:28:26 +08:00
|
|
|
#include "chataction.h"
|
2014-09-06 03:27:26 +08:00
|
|
|
#include "smileypack.h"
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QBuffer>
|
2014-09-11 00:30:03 +08:00
|
|
|
#include "filetransferinstance.h"
|
2014-09-06 03:27:26 +08:00
|
|
|
|
|
|
|
QString ChatAction::toHtmlChars(const QString &str)
|
|
|
|
{
|
2014-09-10 22:03:53 +08:00
|
|
|
static QList<QPair<QString, QString>> replaceList = {{"&","&"}, {">",">"}, {"<","<"}};
|
2014-09-06 03:27:26 +08:00
|
|
|
QString res = str;
|
|
|
|
|
|
|
|
for (auto &it : replaceList)
|
|
|
|
res = res.replace(it.first,it.second);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ChatAction::QImage2base64(const QImage &img)
|
|
|
|
{
|
|
|
|
QByteArray ba;
|
|
|
|
QBuffer buffer(&ba);
|
|
|
|
buffer.open(QIODevice::WriteOnly);
|
|
|
|
img.save(&buffer, "PNG"); // writes image into ba in PNG format
|
|
|
|
return ba.toBase64();
|
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
QString ChatAction::getName()
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
2014-09-07 19:42:06 +08:00
|
|
|
if (isMe)
|
2014-09-13 03:38:38 +08:00
|
|
|
return QString("<div class=name_me>" + toHtmlChars(name) + "</div>");
|
2014-09-07 19:42:06 +08:00
|
|
|
else
|
2014-09-13 03:38:38 +08:00
|
|
|
return QString("<div class=name>" + toHtmlChars(name) + "</div>");
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
QString ChatAction::getDate()
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
2014-09-13 03:38:38 +08:00
|
|
|
QString res = date;
|
2014-09-06 03:27:26 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
MessageAction::MessageAction(const QString &author, const QString &message, const QString &date, const bool &me) :
|
|
|
|
ChatAction(me, author, date),
|
|
|
|
message(message)
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
void MessageAction::setTextCursor(QTextCursor cursor)
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
2014-09-11 03:22:00 +08:00
|
|
|
// When this function is called, we're supposed to only update ourselve when needed
|
|
|
|
// Nobody should ask us to do anything with our content, we're on our own
|
|
|
|
// Except we never udpate on our own, so we can safely free our resources
|
|
|
|
|
|
|
|
(void) cursor;
|
|
|
|
message.clear();
|
|
|
|
message.squeeze();
|
|
|
|
name.clear();
|
|
|
|
name.squeeze();
|
|
|
|
date.clear();
|
|
|
|
date.squeeze();
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
QString MessageAction::getMessage()
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
|
|
|
QString message_ = SmileyPack::getInstance().smileyfied(toHtmlChars(message));
|
|
|
|
|
2014-09-10 22:03:53 +08:00
|
|
|
// detect urls
|
|
|
|
QRegExp exp("(www\\.|http[s]?:\\/\\/|ftp:\\/\\/)\\S+");
|
|
|
|
int offset = 0;
|
|
|
|
while ((offset = exp.indexIn(message_, offset)) != -1)
|
|
|
|
{
|
|
|
|
QString url = exp.cap();
|
|
|
|
|
|
|
|
// add scheme if not specified
|
|
|
|
if (exp.cap(1) == "www.")
|
|
|
|
url.prepend("http://");
|
|
|
|
|
|
|
|
QString htmledUrl = QString("<a href=\"%1\">%1</a>").arg(url);
|
|
|
|
message_.replace(offset, exp.cap().length(), htmledUrl);
|
|
|
|
|
|
|
|
offset += htmledUrl.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
// detect text quotes
|
2014-09-06 03:27:26 +08:00
|
|
|
QStringList messageLines = message_.split("\n");
|
|
|
|
message_ = "";
|
|
|
|
for (QString& s : messageLines)
|
|
|
|
{
|
|
|
|
if (QRegExp("^[ ]*>.*").exactMatch(s))
|
2014-09-13 04:24:29 +08:00
|
|
|
message_ += "<span class=quote>>" + s.right(s.length()-4) + "</span><br/>";
|
2014-09-06 03:27:26 +08:00
|
|
|
else
|
2014-09-13 04:24:29 +08:00
|
|
|
message_ += s + "<br/>";
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
message_ = message_.left(message_.length()-4);
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
return QString("<div class=message>" + message_ + "</div>");
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
|
2014-09-07 19:42:06 +08:00
|
|
|
FileTransferAction::FileTransferAction(FileTransferInstance *widget, const QString &author, const QString &date, const bool &me) :
|
2014-09-11 03:22:00 +08:00
|
|
|
ChatAction(me, author, date)
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
|
|
|
w = widget;
|
2014-09-11 00:30:03 +08:00
|
|
|
|
|
|
|
connect(w, &FileTransferInstance::stateUpdated, this, &FileTransferAction::updateHtml);
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FileTransferAction::~FileTransferAction()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-09-11 03:22:00 +08:00
|
|
|
QString FileTransferAction::getMessage()
|
2014-09-06 03:27:26 +08:00
|
|
|
{
|
|
|
|
QString widgetHtml;
|
|
|
|
if (w != nullptr)
|
|
|
|
widgetHtml = w->getHtmlImage();
|
|
|
|
else
|
|
|
|
widgetHtml = "<div class=quote>EMPTY CONTENT</div>";
|
2014-09-11 03:22:00 +08:00
|
|
|
return widgetHtml;
|
2014-09-06 03:27:26 +08:00
|
|
|
}
|
|
|
|
|
2014-09-11 00:30:03 +08:00
|
|
|
void FileTransferAction::setTextCursor(QTextCursor cursor)
|
|
|
|
{
|
|
|
|
cur = cursor;
|
|
|
|
cur.setKeepPositionOnInsert(true);
|
|
|
|
int end=cur.selectionEnd();
|
|
|
|
cur.setPosition(cur.position());
|
|
|
|
cur.setPosition(end, QTextCursor::KeepAnchor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileTransferAction::updateHtml()
|
|
|
|
{
|
|
|
|
if (cur.isNull())
|
|
|
|
return;
|
|
|
|
|
|
|
|
int pos = cur.selectionStart();
|
|
|
|
cur.removeSelectedText();
|
|
|
|
cur.setKeepPositionOnInsert(false);
|
2014-09-11 03:22:00 +08:00
|
|
|
cur.insertHtml(getMessage());
|
2014-09-11 00:30:03 +08:00
|
|
|
cur.setKeepPositionOnInsert(true);
|
|
|
|
int end = cur.position();
|
|
|
|
cur.setPosition(pos);
|
|
|
|
cur.setPosition(end, QTextCursor::KeepAnchor);
|
2014-09-11 00:46:52 +08:00
|
|
|
|
|
|
|
// Free our ressources if we'll never need to update again
|
|
|
|
if (w->getState() == FileTransferInstance::TransfState::tsCanceled
|
|
|
|
|| w->getState() == FileTransferInstance::TransfState::tsFinished)
|
|
|
|
{
|
2014-09-11 03:22:00 +08:00
|
|
|
name.clear();
|
|
|
|
name.squeeze();
|
|
|
|
date.clear();
|
|
|
|
date.squeeze();
|
2014-09-11 00:46:52 +08:00
|
|
|
cur = QTextCursor();
|
|
|
|
}
|
2014-09-11 00:30:03 +08:00
|
|
|
}
|