mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
117 lines
3.1 KiB
C++
117 lines
3.1 KiB
C++
|
/*
|
||
|
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.
|
||
|
*/
|
||
|
|
||
|
#include "genericchataction.h"
|
||
|
#include "smileypack.h"
|
||
|
#include <QStringList>
|
||
|
#include <QBuffer>
|
||
|
|
||
|
QString ChatAction::toHtmlChars(const QString &str)
|
||
|
{
|
||
|
static QList<QPair<QString, QString>> replaceList = {{"&","&"}, {" "," "}, {">",">"}, {"<","<"}};
|
||
|
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();
|
||
|
}
|
||
|
|
||
|
QString ChatAction::wrapName(const QString &name)
|
||
|
{
|
||
|
QString res = "<td><div class=name>" + name + "</div></td>\n";
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
QString ChatAction::wrapDate(const QString &date)
|
||
|
{
|
||
|
QString res = "<td align=right><div class=date>" + date + "</div></td>\n";
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
QString ChatAction::wrapMessage(const QString &message)
|
||
|
{
|
||
|
QString res = "<td width=100%><div class=message>" + message + "</div></td>\n";
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
QString ChatAction::wrapWholeLine(const QString &line)
|
||
|
{
|
||
|
QString res = "<tr>\n" + line + "</tr>\n";
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
MessageAction::MessageAction(const QString &author, const QString &message, const QString &date)
|
||
|
{
|
||
|
QString message_ = SmileyPack::getInstance().smileyfied(toHtmlChars(message));
|
||
|
|
||
|
QStringList messageLines = message_.split("\n");
|
||
|
message_ = "";
|
||
|
for (QString& s : messageLines)
|
||
|
{
|
||
|
if (QRegExp("^[ ]*>.*").exactMatch(s))
|
||
|
message_ += "<div class=quote>" + s.right(s.length()-4) + "</div><br>";
|
||
|
else
|
||
|
message_ += s + "<br>";
|
||
|
}
|
||
|
message_ = message_.left(message_.length()-4);
|
||
|
|
||
|
content = wrapWholeLine(wrapName(author) + wrapMessage(message_) + wrapDate(date));
|
||
|
}
|
||
|
|
||
|
QString MessageAction::getHtml()
|
||
|
{
|
||
|
return content;
|
||
|
}
|
||
|
|
||
|
FileTransferAction::FileTransferAction(FileTransferInstance *widget, const QString &author, const QString &date) :
|
||
|
sender(author),
|
||
|
timestamp(date)
|
||
|
{
|
||
|
w = widget;
|
||
|
}
|
||
|
|
||
|
FileTransferAction::~FileTransferAction()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
QString FileTransferAction::getHtml()
|
||
|
{
|
||
|
QString widgetHtml;
|
||
|
if (w != nullptr)
|
||
|
widgetHtml = w->getHtmlImage();
|
||
|
else
|
||
|
widgetHtml = "<div class=quote>EMPTY CONTENT</div>";
|
||
|
QString res = wrapWholeLine(wrapName(sender) + wrapMessage(widgetHtml) + wrapDate(timestamp));;
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
QString FileTransferAction::wrapMessage(const QString &message)
|
||
|
{
|
||
|
QString res = "<td width=100%>" + message + "</td>\n";
|
||
|
return res;
|
||
|
}
|