Fix plain text in eventToString().
This commit is contained in:
parent
de3a8b9b69
commit
aa3309a184
|
@ -18,7 +18,8 @@
|
||||||
|
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
SpectralRoom::SpectralRoom(Connection* connection, QString roomId,
|
SpectralRoom::SpectralRoom(Connection* connection,
|
||||||
|
QString roomId,
|
||||||
JoinState joinState)
|
JoinState joinState)
|
||||||
: Room(connection, std::move(roomId), joinState) {
|
: Room(connection, std::move(roomId), joinState) {
|
||||||
connect(this, &SpectralRoom::notificationCountChanged, this,
|
connect(this, &SpectralRoom::notificationCountChanged, this,
|
||||||
|
@ -73,18 +74,25 @@ void SpectralRoom::chooseAndUploadFile() {
|
||||||
void SpectralRoom::saveFileAs(QString eventId) {
|
void SpectralRoom::saveFileAs(QString eventId) {
|
||||||
auto fileName = QFileDialog::getSaveFileName(Q_NULLPTR, tr("Save File as"),
|
auto fileName = QFileDialog::getSaveFileName(Q_NULLPTR, tr("Save File as"),
|
||||||
fileNameToDownload(eventId));
|
fileNameToDownload(eventId));
|
||||||
if (!fileName.isEmpty()) downloadFile(eventId, QUrl::fromLocalFile(fileName));
|
if (!fileName.isEmpty())
|
||||||
|
downloadFile(eventId, QUrl::fromLocalFile(fileName));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpectralRoom::acceptInvitation() { connection()->joinRoom(id()); }
|
void SpectralRoom::acceptInvitation() {
|
||||||
|
connection()->joinRoom(id());
|
||||||
|
}
|
||||||
|
|
||||||
void SpectralRoom::forget() { connection()->forgetRoom(id()); }
|
void SpectralRoom::forget() {
|
||||||
|
connection()->forgetRoom(id());
|
||||||
|
}
|
||||||
|
|
||||||
bool SpectralRoom::hasUsersTyping() {
|
bool SpectralRoom::hasUsersTyping() {
|
||||||
QList<User*> users = usersTyping();
|
QList<User*> users = usersTyping();
|
||||||
if (users.isEmpty()) return false;
|
if (users.isEmpty())
|
||||||
|
return false;
|
||||||
int count = users.length();
|
int count = users.length();
|
||||||
if (users.contains(localUser())) count--;
|
if (users.contains(localUser()))
|
||||||
|
count--;
|
||||||
return count != 0;
|
return count != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,7 +112,8 @@ void SpectralRoom::sendTypingNotification(bool isTyping) {
|
||||||
}
|
}
|
||||||
|
|
||||||
QString SpectralRoom::lastEvent() {
|
QString SpectralRoom::lastEvent() {
|
||||||
if (timelineSize() == 0) return "";
|
if (timelineSize() == 0)
|
||||||
|
return "";
|
||||||
const RoomEvent* lastEvent = messageEvents().rbegin()->get();
|
const RoomEvent* lastEvent = messageEvents().rbegin()->get();
|
||||||
return user(lastEvent->senderId())->displayname() + ": " +
|
return user(lastEvent->senderId())->displayname() + ": " +
|
||||||
utils::removeReply(eventToString(*lastEvent));
|
utils::removeReply(eventToString(*lastEvent));
|
||||||
|
@ -116,7 +125,8 @@ bool SpectralRoom::isEventHighlighted(const RoomEvent* e) const {
|
||||||
|
|
||||||
void SpectralRoom::checkForHighlights(const QMatrixClient::TimelineItem& ti) {
|
void SpectralRoom::checkForHighlights(const QMatrixClient::TimelineItem& ti) {
|
||||||
auto localUserId = localUser()->id();
|
auto localUserId = localUser()->id();
|
||||||
if (ti->senderId() == localUserId) return;
|
if (ti->senderId() == localUserId)
|
||||||
|
return;
|
||||||
if (auto* e = ti.viewAs<RoomMessageEvent>()) {
|
if (auto* e = ti.viewAs<RoomMessageEvent>()) {
|
||||||
const auto& text = e->plainBody();
|
const auto& text = e->plainBody();
|
||||||
if (text.contains(localUserId) ||
|
if (text.contains(localUserId) ||
|
||||||
|
@ -142,8 +152,10 @@ void SpectralRoom::countChanged() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpectralRoom::sendReply(QString userId, QString eventId,
|
void SpectralRoom::sendReply(QString userId,
|
||||||
QString replyContent, QString sendContent) {
|
QString eventId,
|
||||||
|
QString replyContent,
|
||||||
|
QString sendContent) {
|
||||||
QJsonObject json{
|
QJsonObject json{
|
||||||
{"msgtype", "m.text"},
|
{"msgtype", "m.text"},
|
||||||
{"body", "> <" + userId + "> " + replyContent + "\n\n" + sendContent},
|
{"body", "> <" + userId + "> " + replyContent + "\n\n" + sendContent},
|
||||||
|
@ -159,7 +171,8 @@ void SpectralRoom::sendReply(QString userId, QString eventId,
|
||||||
}
|
}
|
||||||
|
|
||||||
QDateTime SpectralRoom::lastActiveTime() {
|
QDateTime SpectralRoom::lastActiveTime() {
|
||||||
if (timelineSize() == 0) return QDateTime();
|
if (timelineSize() == 0)
|
||||||
|
return QDateTime();
|
||||||
return messageEvents().rbegin()->get()->timestamp();
|
return messageEvents().rbegin()->get()->timestamp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -205,11 +218,15 @@ QVariantList SpectralRoom::getUsers(const QString& prefix) {
|
||||||
}
|
}
|
||||||
|
|
||||||
QString SpectralRoom::postMarkdownText(const QString& markdown) {
|
QString SpectralRoom::postMarkdownText(const QString& markdown) {
|
||||||
unsigned char *sequence = (unsigned char *) qstrdup(markdown.toUtf8().constData());
|
unsigned char* sequence =
|
||||||
|
(unsigned char*)qstrdup(markdown.toUtf8().constData());
|
||||||
qint64 length = strlen((char*)sequence);
|
qint64 length = strlen((char*)sequence);
|
||||||
|
|
||||||
hoedown_renderer* renderer = hoedown_html_renderer_new(HOEDOWN_HTML_USE_XHTML, 32);
|
hoedown_renderer* renderer =
|
||||||
hoedown_extensions extensions = (hoedown_extensions) ((HOEDOWN_EXT_BLOCK | HOEDOWN_EXT_SPAN | HOEDOWN_EXT_MATH_EXPLICIT) & ~HOEDOWN_EXT_QUOTE);
|
hoedown_html_renderer_new(HOEDOWN_HTML_USE_XHTML, 32);
|
||||||
|
hoedown_extensions extensions = (hoedown_extensions)(
|
||||||
|
(HOEDOWN_EXT_BLOCK | HOEDOWN_EXT_SPAN | HOEDOWN_EXT_MATH_EXPLICIT) &
|
||||||
|
~HOEDOWN_EXT_QUOTE);
|
||||||
hoedown_document* document = hoedown_document_new(renderer, extensions, 32);
|
hoedown_document* document = hoedown_document_new(renderer, extensions, 32);
|
||||||
hoedown_buffer* html = hoedown_buffer_new(length);
|
hoedown_buffer* html = hoedown_buffer_new(length);
|
||||||
hoedown_document_render(document, html, sequence, length);
|
hoedown_document_render(document, html, sequence, length);
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
#include <QPointer>
|
#include <QPointer>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
#include <events/roommessageevent.h>
|
|
||||||
#include <events/redactionevent.h>
|
#include <events/redactionevent.h>
|
||||||
#include <events/roomavatarevent.h>
|
#include <events/roomavatarevent.h>
|
||||||
#include <events/roommemberevent.h>
|
|
||||||
#include <events/simplestateevents.h>
|
|
||||||
#include <events/roomcreateevent.h>
|
#include <events/roomcreateevent.h>
|
||||||
|
#include <events/roommemberevent.h>
|
||||||
|
#include <events/roommessageevent.h>
|
||||||
|
#include <events/simplestateevents.h>
|
||||||
|
|
||||||
using namespace QMatrixClient;
|
using namespace QMatrixClient;
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ class SpectralRoom : public Room {
|
||||||
Q_PROPERTY(bool busy READ busy NOTIFY busyChanged)
|
Q_PROPERTY(bool busy READ busy NOTIFY busyChanged)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit SpectralRoom(Connection* connection, QString roomId,
|
explicit SpectralRoom(Connection* connection,
|
||||||
|
QString roomId,
|
||||||
JoinState joinState = {});
|
JoinState joinState = {});
|
||||||
|
|
||||||
const QString& cachedInput() const { return m_cachedInput; }
|
const QString& cachedInput() const { return m_cachedInput; }
|
||||||
|
@ -89,54 +90,54 @@ class SpectralRoom : public Room {
|
||||||
bool prettyPrint = (format == Qt::RichText);
|
bool prettyPrint = (format == Qt::RichText);
|
||||||
|
|
||||||
using namespace QMatrixClient;
|
using namespace QMatrixClient;
|
||||||
return visit(evt
|
return visit(
|
||||||
, [this, prettyPrint] (const RoomMessageEvent& e) {
|
evt,
|
||||||
|
[this, prettyPrint](const RoomMessageEvent& e) {
|
||||||
using namespace MessageEventContent;
|
using namespace MessageEventContent;
|
||||||
|
|
||||||
if (e.hasTextContent() && e.mimeType().name() != "text/plain")
|
if (prettyPrint && e.hasTextContent() &&
|
||||||
|
e.mimeType().name() != "text/plain")
|
||||||
return static_cast<const TextContent*>(e.content())->body;
|
return static_cast<const TextContent*>(e.content())->body;
|
||||||
if (e.hasFileContent())
|
if (e.hasFileContent()) {
|
||||||
{
|
|
||||||
auto fileCaption =
|
auto fileCaption =
|
||||||
e.content()->fileInfo()->originalName.toHtmlEscaped();
|
e.content()->fileInfo()->originalName.toHtmlEscaped();
|
||||||
if (fileCaption.isEmpty())
|
if (fileCaption.isEmpty()) {
|
||||||
|
if (prettyPrint)
|
||||||
fileCaption = this->prettyPrint(e.plainBody());
|
fileCaption = this->prettyPrint(e.plainBody());
|
||||||
|
else
|
||||||
|
fileCaption = e.plainBody();
|
||||||
|
}
|
||||||
return !fileCaption.isEmpty() ? fileCaption : tr("a file");
|
return !fileCaption.isEmpty() ? fileCaption : tr("a file");
|
||||||
}
|
}
|
||||||
return this->prettyPrint(e.plainBody());
|
return prettyPrint ? this->prettyPrint(e.plainBody()) : e.plainBody();
|
||||||
}
|
},
|
||||||
, [this] (const RoomMemberEvent& e) {
|
[this](const RoomMemberEvent& e) {
|
||||||
// FIXME: Rewind to the name that was at the time of this event
|
// FIXME: Rewind to the name that was at the time of this event
|
||||||
auto subjectName = this->user(e.userId())->displayname();
|
auto subjectName = this->user(e.userId())->displayname();
|
||||||
// The below code assumes senderName output in AuthorRole
|
// The below code assumes senderName output in AuthorRole
|
||||||
switch( e.membership() )
|
switch (e.membership()) {
|
||||||
{
|
|
||||||
case MembershipType::Invite:
|
case MembershipType::Invite:
|
||||||
if (e.repeatsState())
|
if (e.repeatsState())
|
||||||
return tr("reinvited %1 to the room").arg(subjectName);
|
return tr("reinvited %1 to the room").arg(subjectName);
|
||||||
FALLTHROUGH;
|
FALLTHROUGH;
|
||||||
case MembershipType::Join:
|
case MembershipType::Join: {
|
||||||
{
|
|
||||||
if (e.repeatsState())
|
if (e.repeatsState())
|
||||||
return tr("joined the room (repeated)");
|
return tr("joined the room (repeated)");
|
||||||
if (!e.prevContent() ||
|
if (!e.prevContent() ||
|
||||||
e.membership() != e.prevContent()->membership)
|
e.membership() != e.prevContent()->membership) {
|
||||||
{
|
|
||||||
return e.membership() == MembershipType::Invite
|
return e.membership() == MembershipType::Invite
|
||||||
? tr("invited %1 to the room").arg(subjectName)
|
? tr("invited %1 to the room").arg(subjectName)
|
||||||
: tr("joined the room");
|
: tr("joined the room");
|
||||||
}
|
}
|
||||||
QString text{};
|
QString text{};
|
||||||
if (e.isRename())
|
if (e.isRename()) {
|
||||||
{
|
|
||||||
if (e.displayName().isEmpty())
|
if (e.displayName().isEmpty())
|
||||||
text = tr("cleared the display name");
|
text = tr("cleared the display name");
|
||||||
else
|
else
|
||||||
text = tr("changed the display name to %1")
|
text = tr("changed the display name to %1")
|
||||||
.arg(e.displayName().toHtmlEscaped());
|
.arg(e.displayName().toHtmlEscaped());
|
||||||
}
|
}
|
||||||
if (e.isAvatarUpdate())
|
if (e.isAvatarUpdate()) {
|
||||||
{
|
|
||||||
if (!text.isEmpty())
|
if (!text.isEmpty())
|
||||||
text += " and ";
|
text += " and ";
|
||||||
if (e.avatarUrl().isEmpty())
|
if (e.avatarUrl().isEmpty())
|
||||||
|
@ -148,88 +149,81 @@ class SpectralRoom : public Room {
|
||||||
}
|
}
|
||||||
case MembershipType::Leave:
|
case MembershipType::Leave:
|
||||||
if (e.prevContent() &&
|
if (e.prevContent() &&
|
||||||
e.prevContent()->membership == MembershipType::Invite)
|
e.prevContent()->membership == MembershipType::Invite) {
|
||||||
{
|
|
||||||
return (e.senderId() != e.userId())
|
return (e.senderId() != e.userId())
|
||||||
? tr("withdrew %1's invitation").arg(subjectName)
|
? tr("withdrew %1's invitation").arg(subjectName)
|
||||||
: tr("rejected the invitation");
|
: tr("rejected the invitation");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e.prevContent() &&
|
if (e.prevContent() &&
|
||||||
e.prevContent()->membership == MembershipType::Ban)
|
e.prevContent()->membership == MembershipType::Ban) {
|
||||||
{
|
|
||||||
return (e.senderId() != e.userId())
|
return (e.senderId() != e.userId())
|
||||||
? tr("unbanned %1").arg(subjectName)
|
? tr("unbanned %1").arg(subjectName)
|
||||||
: tr("self-unbanned");
|
: tr("self-unbanned");
|
||||||
}
|
}
|
||||||
return (e.senderId() != e.userId())
|
return (e.senderId() != e.userId())
|
||||||
? tr("has put %1 out of the room: %2")
|
? tr("has put %1 out of the room: %2")
|
||||||
.arg(subjectName,
|
.arg(subjectName, e.contentJson()["reason"_ls]
|
||||||
e.contentJson()["reason"_ls]
|
.toString()
|
||||||
.toString().toHtmlEscaped())
|
.toHtmlEscaped())
|
||||||
: tr("left the room");
|
: tr("left the room");
|
||||||
case MembershipType::Ban:
|
case MembershipType::Ban:
|
||||||
return (e.senderId() != e.userId())
|
return (e.senderId() != e.userId())
|
||||||
? tr("banned %1 from the room: %2")
|
? tr("banned %1 from the room: %2")
|
||||||
.arg(subjectName,
|
.arg(subjectName, e.contentJson()["reason"_ls]
|
||||||
e.contentJson()["reason"_ls]
|
.toString()
|
||||||
.toString().toHtmlEscaped())
|
.toHtmlEscaped())
|
||||||
: tr("self-banned from the room");
|
: tr("self-banned from the room");
|
||||||
case MembershipType::Knock:
|
case MembershipType::Knock:
|
||||||
return tr("knocked");
|
return tr("knocked");
|
||||||
default:
|
default:;
|
||||||
;
|
|
||||||
}
|
}
|
||||||
return tr("made something unknown");
|
return tr("made something unknown");
|
||||||
}
|
},
|
||||||
, [] (const RoomAliasesEvent& e) {
|
[](const RoomAliasesEvent& e) {
|
||||||
return tr("has set room aliases on server %1 to: %2")
|
return tr("has set room aliases on server %1 to: %2")
|
||||||
.arg(e.stateKey(),
|
.arg(e.stateKey(), QLocale().createSeparatedList(e.aliases()));
|
||||||
QLocale().createSeparatedList(e.aliases()));
|
},
|
||||||
}
|
[](const RoomCanonicalAliasEvent& e) {
|
||||||
, [] (const RoomCanonicalAliasEvent& e) {
|
|
||||||
return (e.alias().isEmpty())
|
return (e.alias().isEmpty())
|
||||||
? tr("cleared the room main alias")
|
? tr("cleared the room main alias")
|
||||||
: tr("set the room main alias to: %1").arg(e.alias());
|
: tr("set the room main alias to: %1").arg(e.alias());
|
||||||
}
|
},
|
||||||
, [] (const RoomNameEvent& e) {
|
[](const RoomNameEvent& e) {
|
||||||
return (e.name().isEmpty())
|
return (e.name().isEmpty()) ? tr("cleared the room name")
|
||||||
? tr("cleared the room name")
|
|
||||||
: tr("set the room name to: %1")
|
: tr("set the room name to: %1")
|
||||||
.arg(e.name().toHtmlEscaped());
|
.arg(e.name().toHtmlEscaped());
|
||||||
}
|
},
|
||||||
, [this] (const RoomTopicEvent& e) {
|
[this, prettyPrint](const RoomTopicEvent& e) {
|
||||||
return (e.topic().isEmpty())
|
return (e.topic().isEmpty())
|
||||||
? tr("cleared the topic")
|
? tr("cleared the topic")
|
||||||
: tr("set the topic to: %1")
|
: tr("set the topic to: %1")
|
||||||
.arg(this->prettyPrint(e.topic()));
|
.arg(prettyPrint ? this->prettyPrint(e.topic())
|
||||||
}
|
: e.topic());
|
||||||
, [] (const RoomAvatarEvent&) {
|
},
|
||||||
return tr("changed the room avatar");
|
[](const RoomAvatarEvent&) { return tr("changed the room avatar"); },
|
||||||
}
|
[](const EncryptionEvent&) {
|
||||||
, [] (const EncryptionEvent&) {
|
|
||||||
return tr("activated End-to-End Encryption");
|
return tr("activated End-to-End Encryption");
|
||||||
}
|
},
|
||||||
, [] (const RoomCreateEvent& e) {
|
[](const RoomCreateEvent& e) {
|
||||||
return (e.isUpgrade()
|
return (e.isUpgrade() ? tr("upgraded the room to version %1")
|
||||||
? tr("upgraded the room to version %1")
|
: tr("created the room, version %1"))
|
||||||
: tr("created the room, version %1")
|
.arg(e.version().isEmpty() ? "1" : e.version().toHtmlEscaped());
|
||||||
).arg(e.version().isEmpty()
|
},
|
||||||
? "1" : e.version().toHtmlEscaped());
|
[](const StateEventBase& e) {
|
||||||
}
|
|
||||||
, [] (const StateEventBase& e) {
|
|
||||||
// A small hack for state events from TWIM bot
|
// A small hack for state events from TWIM bot
|
||||||
return e.stateKey() == "twim"
|
return e.stateKey() == "twim"
|
||||||
? tr("updated the database", "TWIM bot updated the database")
|
? tr("updated the database",
|
||||||
|
"TWIM bot updated the database")
|
||||||
: e.stateKey().isEmpty()
|
: e.stateKey().isEmpty()
|
||||||
? tr("updated %1 state", "%1 - Matrix event type")
|
? tr("updated %1 state", "%1 - Matrix event type")
|
||||||
.arg(e.matrixType())
|
.arg(e.matrixType())
|
||||||
: tr("updated %1 state for %2",
|
: tr("updated %1 state for %2",
|
||||||
"%1 - Matrix event type, %2 - state key")
|
"%1 - Matrix event type, %2 - state key")
|
||||||
.arg(e.matrixType(), e.stateKey().toHtmlEscaped());
|
.arg(e.matrixType(),
|
||||||
}
|
e.stateKey().toHtmlEscaped());
|
||||||
, tr("Unknown event")
|
},
|
||||||
);
|
tr("Unknown event"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -261,7 +255,9 @@ class SpectralRoom : public Room {
|
||||||
void acceptInvitation();
|
void acceptInvitation();
|
||||||
void forget();
|
void forget();
|
||||||
void sendTypingNotification(bool isTyping);
|
void sendTypingNotification(bool isTyping);
|
||||||
void sendReply(QString userId, QString eventId, QString replyContent,
|
void sendReply(QString userId,
|
||||||
|
QString eventId,
|
||||||
|
QString replyContent,
|
||||||
QString sendContent);
|
QString sendContent);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ static const QRegularExpression userPillRegExp{
|
||||||
|
|
||||||
QString removeReply(const QString& text);
|
QString removeReply(const QString& text);
|
||||||
QString cleanHTML(const QString& text, QMatrixClient::Room* room);
|
QString cleanHTML(const QString& text, QMatrixClient::Room* room);
|
||||||
|
|
||||||
} // namespace utils
|
} // namespace utils
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue