2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2018-01-05 01:27:32 +03:00
|
|
|
#include "Utils.h"
|
|
|
|
|
2018-05-11 16:00:14 +03:00
|
|
|
#include <QApplication>
|
2020-04-26 12:26:51 +03:00
|
|
|
#include <QBuffer>
|
2018-10-01 17:56:46 +03:00
|
|
|
#include <QComboBox>
|
2021-11-24 02:47:02 +03:00
|
|
|
#include <QCryptographicHash>
|
2019-07-05 04:20:19 +03:00
|
|
|
#include <QGuiApplication>
|
2020-04-26 12:26:51 +03:00
|
|
|
#include <QImageReader>
|
2019-08-10 20:14:37 +03:00
|
|
|
#include <QProcessEnvironment>
|
2019-07-05 04:20:19 +03:00
|
|
|
#include <QScreen>
|
2018-07-20 16:15:50 +03:00
|
|
|
#include <QSettings>
|
2021-03-14 16:04:30 +03:00
|
|
|
#include <QStringBuilder>
|
2021-07-09 04:07:45 +03:00
|
|
|
#include <QTextBoundaryFinder>
|
2018-09-07 20:05:30 +03:00
|
|
|
#include <QTextDocument>
|
2018-09-07 14:52:29 +03:00
|
|
|
#include <QXmlStreamReader>
|
2021-07-08 07:39:11 +03:00
|
|
|
|
|
|
|
#include <array>
|
2021-03-28 18:37:36 +03:00
|
|
|
#include <cmath>
|
2019-12-14 19:08:36 +03:00
|
|
|
#include <variant>
|
2018-05-11 16:00:14 +03:00
|
|
|
|
2018-09-11 14:56:09 +03:00
|
|
|
#include <cmark.h>
|
2018-01-05 01:27:32 +03:00
|
|
|
|
2019-12-15 05:34:17 +03:00
|
|
|
#include "Cache.h"
|
2018-09-07 14:52:29 +03:00
|
|
|
#include "Config.h"
|
2021-02-20 21:05:21 +03:00
|
|
|
#include "EventAccessors.h"
|
2021-11-21 07:23:38 +03:00
|
|
|
#include "Logging.h"
|
2020-02-24 03:07:25 +03:00
|
|
|
#include "MatrixClient.h"
|
2021-02-05 02:41:32 +03:00
|
|
|
#include "UserSettingsPage.h"
|
2018-09-07 14:52:29 +03:00
|
|
|
|
2018-01-05 01:27:32 +03:00
|
|
|
using TimelineEvent = mtx::events::collections::TimelineEvents;
|
|
|
|
|
2020-01-31 08:12:02 +03:00
|
|
|
template<class T, class Event>
|
|
|
|
static DescInfo
|
2020-11-26 01:43:31 +03:00
|
|
|
createDescriptionInfo(const Event &event, const QString &localUser, const QString &displayName)
|
2020-01-31 08:12:02 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto msg = std::get<T>(event);
|
|
|
|
const auto sender = QString::fromStdString(msg.sender);
|
2020-01-31 08:12:02 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto username = displayName;
|
|
|
|
const auto ts = QDateTime::fromMSecsSinceEpoch(msg.origin_server_ts);
|
|
|
|
auto body = utils::event_body(event).trimmed();
|
|
|
|
if (mtx::accessors::relations(event).reply_to())
|
|
|
|
body = QString::fromStdString(utils::stripReplyFromBody(body.toStdString()));
|
2020-01-31 08:12:02 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return DescInfo{QString::fromStdString(msg.event_id),
|
|
|
|
sender,
|
|
|
|
utils::messageDescription<T>(username, body, sender == localUser),
|
|
|
|
utils::descriptiveTime(ts),
|
|
|
|
msg.origin_server_ts,
|
|
|
|
ts};
|
2020-01-31 08:12:02 +03:00
|
|
|
}
|
|
|
|
|
2021-04-22 05:49:27 +03:00
|
|
|
std::string
|
|
|
|
utils::stripReplyFromBody(const std::string &bodyi)
|
2021-04-18 09:33:25 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QString body = QString::fromStdString(bodyi);
|
2021-12-29 06:28:08 +03:00
|
|
|
if (body.startsWith(QLatin1String("> <"))) {
|
2021-11-13 05:20:46 +03:00
|
|
|
auto segments = body.split('\n');
|
|
|
|
while (!segments.isEmpty() && segments.begin()->startsWith('>'))
|
|
|
|
segments.erase(segments.begin());
|
|
|
|
if (!segments.empty() && segments.first().isEmpty())
|
|
|
|
segments.erase(segments.begin());
|
|
|
|
body = segments.join('\n');
|
|
|
|
}
|
2021-08-19 19:26:05 +03:00
|
|
|
|
2021-12-29 06:28:08 +03:00
|
|
|
body.replace(QLatin1String("@room"), QString::fromUtf8("@\u2060room"));
|
2021-09-18 01:22:33 +03:00
|
|
|
return body.toStdString();
|
2021-04-18 09:33:25 +03:00
|
|
|
}
|
|
|
|
|
2021-04-22 05:49:27 +03:00
|
|
|
std::string
|
|
|
|
utils::stripReplyFromFormattedBody(const std::string &formatted_bodyi)
|
2021-04-18 09:33:25 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QString formatted_body = QString::fromStdString(formatted_bodyi);
|
2021-12-29 06:28:08 +03:00
|
|
|
formatted_body.remove(QRegularExpression(QStringLiteral("<mx-reply>.*</mx-reply>"),
|
2021-09-18 01:22:33 +03:00
|
|
|
QRegularExpression::DotMatchesEverythingOption));
|
2021-12-29 06:28:08 +03:00
|
|
|
formatted_body.replace(QLatin1String("@room"), QString::fromUtf8("@\u2060room"));
|
2021-09-18 01:22:33 +03:00
|
|
|
return formatted_body.toStdString();
|
2021-04-18 09:33:25 +03:00
|
|
|
}
|
|
|
|
|
2021-03-17 21:08:17 +03:00
|
|
|
RelatedInfo
|
|
|
|
utils::stripReplyFallbacks(const TimelineEvent &event, std::string id, QString room_id_)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
RelatedInfo related = {};
|
|
|
|
related.quoted_user = QString::fromStdString(mtx::accessors::sender(event));
|
|
|
|
related.related_event = std::move(id);
|
|
|
|
related.type = mtx::accessors::msg_type(event);
|
2021-03-17 21:08:17 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// get body, strip reply fallback, then transform the event to text, if it is a media event
|
|
|
|
// etc
|
|
|
|
related.quoted_body = QString::fromStdString(mtx::accessors::body(event));
|
|
|
|
related.quoted_body =
|
|
|
|
QString::fromStdString(stripReplyFromBody(related.quoted_body.toStdString()));
|
|
|
|
related.quoted_body = utils::getQuoteBody(related);
|
2021-03-17 21:08:17 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// get quoted body and strip reply fallback
|
|
|
|
related.quoted_formatted_body = mtx::accessors::formattedBodyWithFallback(event);
|
|
|
|
related.quoted_formatted_body = QString::fromStdString(
|
|
|
|
stripReplyFromFormattedBody(related.quoted_formatted_body.toStdString()));
|
|
|
|
related.room = room_id_;
|
2021-03-17 21:08:17 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return related;
|
2021-03-17 21:08:17 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 16:15:50 +03:00
|
|
|
QString
|
|
|
|
utils::localUser()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return QString::fromStdString(http::client()->user_id().to_string());
|
2018-07-20 16:15:50 +03:00
|
|
|
}
|
|
|
|
|
2020-05-19 22:04:38 +03:00
|
|
|
bool
|
|
|
|
utils::codepointIsEmoji(uint code)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
// TODO: Be more precise here.
|
|
|
|
return (code >= 0x2600 && code <= 0x27bf) || (code >= 0x2b00 && code <= 0x2bff) ||
|
|
|
|
(code >= 0x1f000 && code <= 0x1faff) || code == 0x200d || code == 0xfe0f;
|
2020-05-19 22:04:38 +03:00
|
|
|
}
|
|
|
|
|
2019-07-27 00:44:44 +03:00
|
|
|
QString
|
|
|
|
utils::replaceEmoji(const QString &body)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QString fmtBody;
|
|
|
|
fmtBody.reserve(body.size());
|
|
|
|
|
|
|
|
QVector<uint> utf32_string = body.toUcs4();
|
|
|
|
|
|
|
|
bool insideFontBlock = false;
|
|
|
|
for (auto &code : utf32_string) {
|
|
|
|
if (utils::codepointIsEmoji(code)) {
|
|
|
|
if (!insideFontBlock) {
|
|
|
|
fmtBody += QStringLiteral("<font face=\"") % UserSettings::instance()->emojiFont() %
|
|
|
|
QStringLiteral("\">");
|
|
|
|
insideFontBlock = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (insideFontBlock) {
|
2021-03-14 16:04:30 +03:00
|
|
|
fmtBody += QStringLiteral("</font>");
|
2021-09-18 01:22:33 +03:00
|
|
|
insideFontBlock = false;
|
|
|
|
}
|
2020-01-21 22:41:09 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
if (QChar::requiresSurrogates(code)) {
|
|
|
|
QChar emoji[] = {static_cast<ushort>(QChar::highSurrogate(code)),
|
|
|
|
static_cast<ushort>(QChar::lowSurrogate(code))};
|
|
|
|
fmtBody.append(emoji, 2);
|
|
|
|
} else {
|
|
|
|
fmtBody.append(QChar(static_cast<ushort>(code)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (insideFontBlock) {
|
|
|
|
fmtBody += QStringLiteral("</font>");
|
|
|
|
}
|
2019-07-27 00:44:44 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return fmtBody;
|
2019-07-27 00:44:44 +03:00
|
|
|
}
|
|
|
|
|
2018-07-22 19:48:58 +03:00
|
|
|
void
|
|
|
|
utils::setScaleFactor(float factor)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (factor < 1 || factor > 3)
|
|
|
|
return;
|
2018-07-22 19:48:58 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
QSettings settings;
|
2021-12-29 06:28:08 +03:00
|
|
|
settings.setValue(QStringLiteral("settings/scale_factor"), factor);
|
2018-07-22 19:48:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
utils::scaleFactor()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QSettings settings;
|
2021-12-29 06:28:08 +03:00
|
|
|
return settings.value(QStringLiteral("settings/scale_factor"), -1).toFloat();
|
2018-07-22 19:48:58 +03:00
|
|
|
}
|
|
|
|
|
2018-01-05 01:27:32 +03:00
|
|
|
QString
|
|
|
|
utils::descriptiveTime(const QDateTime &then)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto now = QDateTime::currentDateTime();
|
|
|
|
const auto days = then.daysTo(now);
|
2018-01-05 01:27:32 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (days == 0)
|
|
|
|
return QLocale::system().toString(then.time(), QLocale::ShortFormat);
|
|
|
|
else if (days < 2)
|
|
|
|
return QString(QCoreApplication::translate("descriptiveTime", "Yesterday"));
|
|
|
|
else if (days < 7)
|
2021-12-29 06:28:08 +03:00
|
|
|
return then.toString(QStringLiteral("dddd"));
|
2018-01-05 01:27:32 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return QLocale::system().toString(then.date(), QLocale::ShortFormat);
|
2018-01-05 01:27:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
DescInfo
|
2018-04-21 16:34:50 +03:00
|
|
|
utils::getMessageDescription(const TimelineEvent &event,
|
|
|
|
const QString &localUser,
|
2020-11-26 01:43:31 +03:00
|
|
|
const QString &displayName)
|
2018-01-05 01:27:32 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
using Audio = mtx::events::RoomEvent<mtx::events::msg::Audio>;
|
|
|
|
using Emote = mtx::events::RoomEvent<mtx::events::msg::Emote>;
|
|
|
|
using File = mtx::events::RoomEvent<mtx::events::msg::File>;
|
|
|
|
using Image = mtx::events::RoomEvent<mtx::events::msg::Image>;
|
|
|
|
using Notice = mtx::events::RoomEvent<mtx::events::msg::Notice>;
|
|
|
|
using Text = mtx::events::RoomEvent<mtx::events::msg::Text>;
|
|
|
|
using Video = mtx::events::RoomEvent<mtx::events::msg::Video>;
|
|
|
|
using CallInvite = mtx::events::RoomEvent<mtx::events::msg::CallInvite>;
|
|
|
|
using CallAnswer = mtx::events::RoomEvent<mtx::events::msg::CallAnswer>;
|
|
|
|
using CallHangUp = mtx::events::RoomEvent<mtx::events::msg::CallHangUp>;
|
|
|
|
using Encrypted = mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>;
|
|
|
|
|
|
|
|
if (std::holds_alternative<Audio>(event)) {
|
|
|
|
return createDescriptionInfo<Audio>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<Emote>(event)) {
|
|
|
|
return createDescriptionInfo<Emote>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<File>(event)) {
|
|
|
|
return createDescriptionInfo<File>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<Image>(event)) {
|
|
|
|
return createDescriptionInfo<Image>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<Notice>(event)) {
|
|
|
|
return createDescriptionInfo<Notice>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<Text>(event)) {
|
|
|
|
return createDescriptionInfo<Text>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<Video>(event)) {
|
|
|
|
return createDescriptionInfo<Video>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<CallInvite>(event)) {
|
|
|
|
return createDescriptionInfo<CallInvite>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<CallAnswer>(event)) {
|
|
|
|
return createDescriptionInfo<CallAnswer>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<CallHangUp>(event)) {
|
|
|
|
return createDescriptionInfo<CallHangUp>(event, localUser, displayName);
|
|
|
|
} else if (std::holds_alternative<mtx::events::Sticker>(event)) {
|
|
|
|
return createDescriptionInfo<mtx::events::Sticker>(event, localUser, displayName);
|
|
|
|
} else if (auto msg = std::get_if<Encrypted>(&event); msg != nullptr) {
|
|
|
|
const auto sender = QString::fromStdString(msg->sender);
|
|
|
|
|
|
|
|
const auto username = displayName;
|
|
|
|
const auto ts = QDateTime::fromMSecsSinceEpoch(msg->origin_server_ts);
|
|
|
|
|
|
|
|
DescInfo info;
|
|
|
|
info.userid = sender;
|
2021-12-29 08:01:38 +03:00
|
|
|
info.body = QStringLiteral(" %1").arg(
|
|
|
|
messageDescription<Encrypted>(username, QLatin1String(""), sender == localUser));
|
2021-09-18 01:22:33 +03:00
|
|
|
info.timestamp = msg->origin_server_ts;
|
|
|
|
info.descriptiveTime = utils::descriptiveTime(ts);
|
|
|
|
info.event_id = QString::fromStdString(msg->event_id);
|
|
|
|
info.datetime = ts;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2018-01-05 01:27:32 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return DescInfo{};
|
2018-01-05 01:27:32 +03:00
|
|
|
}
|
2018-01-12 11:21:53 +03:00
|
|
|
|
|
|
|
QString
|
|
|
|
utils::firstChar(const QString &input)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (input.isEmpty())
|
|
|
|
return input;
|
2018-01-12 11:21:53 +03:00
|
|
|
|
2021-12-29 01:22:01 +03:00
|
|
|
for (auto const &c : input.toStdU32String()) {
|
2021-12-29 06:28:08 +03:00
|
|
|
if (QString::fromUcs4(&c, 1) != QStringLiteral("#"))
|
2021-09-18 01:22:33 +03:00
|
|
|
return QString::fromUcs4(&c, 1).toUpper();
|
|
|
|
}
|
2018-01-25 19:10:05 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return QString::fromUcs4(&input.toUcs4().at(0), 1).toUpper();
|
2018-01-12 11:21:53 +03:00
|
|
|
}
|
2018-02-18 23:52:31 +03:00
|
|
|
|
|
|
|
QString
|
2018-02-19 23:09:21 +03:00
|
|
|
utils::humanReadableFileSize(uint64_t bytes)
|
2018-02-18 23:52:31 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
constexpr static const char *units[] = {"B", "KiB", "MiB", "GiB", "TiB"};
|
|
|
|
constexpr static const int length = sizeof(units) / sizeof(units[0]);
|
2018-02-18 23:52:31 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
int u = 0;
|
|
|
|
double size = static_cast<double>(bytes);
|
|
|
|
while (size >= 1024.0 && u < length) {
|
|
|
|
++u;
|
|
|
|
size /= 1024.0;
|
|
|
|
}
|
2018-02-18 23:52:31 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return QString::number(size, 'g', 4) + ' ' + units[u];
|
2018-02-18 23:52:31 +03:00
|
|
|
}
|
2018-03-25 00:16:15 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
utils::levenshtein_distance(const std::string &s1, const std::string &s2)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto nlen = s1.size();
|
|
|
|
const auto hlen = s2.size();
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (hlen == 0)
|
|
|
|
return -1;
|
|
|
|
if (nlen == 1)
|
|
|
|
return (int)s2.find(s1);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
std::vector<int> row1(hlen + 1, 0);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
for (size_t i = 0; i < nlen; ++i) {
|
|
|
|
std::vector<int> row2(1, (int)i + 1);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
for (size_t j = 0; j < hlen; ++j) {
|
|
|
|
const int cost = s1[i] != s2[j];
|
|
|
|
row2.push_back(std::min(row1[j + 1] + 1, std::min(row2[j] + 1, row1[j] + cost)));
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
row1.swap(row2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return *std::min_element(row1.begin(), row1.end());
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
2018-05-05 16:38:41 +03:00
|
|
|
|
|
|
|
QString
|
2019-12-14 19:08:36 +03:00
|
|
|
utils::event_body(const mtx::events::collections::TimelineEvents &e)
|
2018-05-05 16:38:41 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
using namespace mtx::events;
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Audio>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Emote>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::File>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Image>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Notice>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Text>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
if (auto ev = std::get_if<RoomEvent<msg::Video>>(&e); ev != nullptr)
|
|
|
|
return QString::fromStdString(ev->content.body);
|
|
|
|
|
2021-12-29 06:28:08 +03:00
|
|
|
return QString();
|
2018-05-05 16:38:41 +03:00
|
|
|
}
|
2018-05-11 16:00:14 +03:00
|
|
|
|
|
|
|
QPixmap
|
|
|
|
utils::scaleImageToPixmap(const QImage &img, int size)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (img.isNull())
|
|
|
|
return QPixmap();
|
2018-05-18 21:27:44 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// Deprecated in 5.13: const double sz =
|
|
|
|
// std::ceil(QApplication::desktop()->screen()->devicePixelRatioF() * (double)size);
|
|
|
|
const double sz =
|
|
|
|
std::ceil(QGuiApplication::primaryScreen()->devicePixelRatio() * (double)size);
|
|
|
|
return QPixmap::fromImage(img.scaled(sz, sz, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
2018-05-11 16:00:14 +03:00
|
|
|
}
|
2018-07-15 20:05:31 +03:00
|
|
|
|
2018-08-01 21:10:03 +03:00
|
|
|
QPixmap
|
|
|
|
utils::scaleDown(uint64_t maxWidth, uint64_t maxHeight, const QPixmap &source)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (source.isNull())
|
|
|
|
return QPixmap();
|
2018-08-01 21:10:03 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
const double widthRatio = (double)maxWidth / (double)source.width();
|
|
|
|
const double heightRatio = (double)maxHeight / (double)source.height();
|
|
|
|
const double minAspectRatio = std::min(widthRatio, heightRatio);
|
2018-08-01 21:10:03 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// Size of the output image.
|
|
|
|
int w, h = 0;
|
2018-08-01 21:10:03 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (minAspectRatio > 1) {
|
|
|
|
w = source.width();
|
|
|
|
h = source.height();
|
|
|
|
} else {
|
|
|
|
w = source.width() * minAspectRatio;
|
|
|
|
h = source.height() * minAspectRatio;
|
|
|
|
}
|
2018-08-01 21:10:03 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return source.scaled(w, h, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
2018-08-01 21:10:03 +03:00
|
|
|
}
|
|
|
|
|
2018-07-15 20:05:31 +03:00
|
|
|
QString
|
|
|
|
utils::mxcToHttp(const QUrl &url, const QString &server, int port)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto mxcParts = mtx::client::utils::parse_mxc_url(url.toString().toStdString());
|
2018-07-15 20:05:31 +03:00
|
|
|
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("https://%1:%2/_matrix/media/r0/download/%3/%4")
|
2021-09-18 01:22:33 +03:00
|
|
|
.arg(server)
|
|
|
|
.arg(port)
|
2021-12-29 01:22:01 +03:00
|
|
|
.arg(QString::fromStdString(mxcParts.server), QString::fromStdString(mxcParts.media_id));
|
2018-07-15 20:05:31 +03:00
|
|
|
}
|
2018-08-21 09:22:51 +03:00
|
|
|
|
|
|
|
QString
|
|
|
|
utils::humanReadableFingerprint(const std::string &ed25519)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return humanReadableFingerprint(QString::fromStdString(ed25519));
|
2018-08-21 09:22:51 +03:00
|
|
|
}
|
|
|
|
QString
|
|
|
|
utils::humanReadableFingerprint(const QString &ed25519)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QString fingerprint;
|
|
|
|
for (int i = 0; i < ed25519.length(); i = i + 4) {
|
2021-12-28 22:09:08 +03:00
|
|
|
fingerprint.append(QStringView(ed25519).mid(i, 4));
|
2021-09-18 01:22:33 +03:00
|
|
|
if (i > 0 && i % 16 == 12)
|
|
|
|
fingerprint.append('\n');
|
|
|
|
else if (i < ed25519.length())
|
|
|
|
fingerprint.append(' ');
|
|
|
|
}
|
|
|
|
return fingerprint;
|
2018-08-30 13:39:09 +03:00
|
|
|
}
|
2018-09-07 14:52:29 +03:00
|
|
|
|
|
|
|
QString
|
|
|
|
utils::linkifyMessage(const QString &body)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
// Convert to valid XML.
|
|
|
|
auto doc = body;
|
|
|
|
doc.replace(conf::strings::url_regex, conf::strings::url_html);
|
2021-12-29 08:01:38 +03:00
|
|
|
doc.replace(
|
|
|
|
QRegularExpression(QStringLiteral("\\b(?<![\"'])(?>(matrix:[\\S]{5,}))(?![\"'])\\b")),
|
|
|
|
conf::strings::url_html);
|
2018-09-13 16:10:45 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return doc;
|
2018-09-07 14:52:29 +03:00
|
|
|
}
|
2018-09-07 20:05:30 +03:00
|
|
|
|
2020-01-14 19:47:30 +03:00
|
|
|
QString
|
|
|
|
utils::escapeBlacklistedHtml(const QString &rawStr)
|
2019-10-17 10:36:16 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
static const std::array allowedTags = {
|
|
|
|
"font", "/font", "del", "/del", "h1", "/h1", "h2", "/h2",
|
|
|
|
"h3", "/h3", "h4", "/h4", "h5", "/h5", "h6", "/h6",
|
|
|
|
"blockquote", "/blockquote", "p", "/p", "a", "/a", "ul", "/ul",
|
|
|
|
"ol", "/ol", "sup", "/sup", "sub", "/sub", "li", "/li",
|
|
|
|
"b", "/b", "i", "/i", "u", "/u", "strong", "/strong",
|
|
|
|
"em", "/em", "strike", "/strike", "code", "/code", "hr", "/hr",
|
|
|
|
"br", "br/", "div", "/div", "table", "/table", "thead", "/thead",
|
|
|
|
"tbody", "/tbody", "tr", "/tr", "th", "/th", "td", "/td",
|
|
|
|
"caption", "/caption", "pre", "/pre", "span", "/span", "img", "/img"};
|
|
|
|
QByteArray data = rawStr.toUtf8();
|
|
|
|
QByteArray buffer;
|
|
|
|
const int length = data.size();
|
|
|
|
buffer.reserve(length);
|
|
|
|
bool escapingTag = false;
|
|
|
|
for (int pos = 0; pos != length; ++pos) {
|
|
|
|
switch (data.at(pos)) {
|
|
|
|
case '<': {
|
|
|
|
bool oneTagMatched = false;
|
|
|
|
const int endPos =
|
|
|
|
static_cast<int>(std::min(static_cast<size_t>(data.indexOf('>', pos)),
|
|
|
|
static_cast<size_t>(data.indexOf(' ', pos))));
|
|
|
|
|
|
|
|
auto mid = data.mid(pos + 1, endPos - pos - 1);
|
|
|
|
for (const auto &tag : allowedTags) {
|
|
|
|
// TODO: Check src and href attribute
|
|
|
|
if (mid.toLower() == tag) {
|
|
|
|
oneTagMatched = true;
|
2019-10-17 10:36:16 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
if (oneTagMatched)
|
|
|
|
buffer.append('<');
|
|
|
|
else {
|
|
|
|
escapingTag = true;
|
|
|
|
buffer.append("<");
|
|
|
|
}
|
|
|
|
break;
|
2019-10-17 10:36:16 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
case '>':
|
|
|
|
if (escapingTag) {
|
|
|
|
buffer.append(">");
|
|
|
|
escapingTag = false;
|
|
|
|
} else
|
|
|
|
buffer.append('>');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
buffer.append(data.at(pos));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QString::fromUtf8(buffer);
|
2019-09-21 02:38:17 +03:00
|
|
|
}
|
|
|
|
|
2018-09-12 14:20:12 +03:00
|
|
|
QString
|
2021-03-26 02:42:46 +03:00
|
|
|
utils::markdownToHtml(const QString &text, bool rainbowify)
|
2018-09-07 20:05:30 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto str = text.toUtf8();
|
|
|
|
cmark_node *const node = cmark_parse_document(str.constData(), str.size(), CMARK_OPT_UNSAFE);
|
|
|
|
|
|
|
|
if (rainbowify) {
|
|
|
|
// create iterator over node
|
|
|
|
cmark_iter *iter = cmark_iter_new(node);
|
|
|
|
|
|
|
|
// First loop to get total text length
|
|
|
|
int textLen = 0;
|
2021-12-04 06:39:09 +03:00
|
|
|
while (cmark_iter_next(iter) != CMARK_EVENT_DONE) {
|
2021-09-18 01:22:33 +03:00
|
|
|
cmark_node *cur = cmark_iter_get_node(iter);
|
|
|
|
// only text nodes (no code or semilar)
|
|
|
|
if (cmark_node_get_type(cur) != CMARK_NODE_TEXT)
|
|
|
|
continue;
|
|
|
|
// count up by length of current node's text
|
|
|
|
QTextBoundaryFinder tbf(QTextBoundaryFinder::BoundaryType::Grapheme,
|
|
|
|
QString(cmark_node_get_literal(cur)));
|
|
|
|
while (tbf.toNextBoundary() != -1)
|
|
|
|
textLen++;
|
|
|
|
}
|
2021-03-26 02:42:46 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// create new iter to start over
|
|
|
|
cmark_iter_free(iter);
|
|
|
|
iter = cmark_iter_new(node);
|
|
|
|
|
|
|
|
// Second loop to rainbowify
|
|
|
|
int charIdx = 0;
|
2021-12-04 06:39:09 +03:00
|
|
|
while (cmark_iter_next(iter) != CMARK_EVENT_DONE) {
|
2021-09-18 01:22:33 +03:00
|
|
|
cmark_node *cur = cmark_iter_get_node(iter);
|
|
|
|
// only text nodes (no code or semilar)
|
|
|
|
if (cmark_node_get_type(cur) != CMARK_NODE_TEXT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// get text in current node
|
|
|
|
QString nodeText(cmark_node_get_literal(cur));
|
|
|
|
// create buffer to append rainbow text to
|
|
|
|
QString buf;
|
|
|
|
int boundaryStart = 0;
|
|
|
|
int boundaryEnd = 0;
|
|
|
|
// use QTextBoundaryFinder to iterate ofer graphemes
|
|
|
|
QTextBoundaryFinder tbf(QTextBoundaryFinder::BoundaryType::Grapheme, nodeText);
|
|
|
|
while ((boundaryEnd = tbf.toNextBoundary()) != -1) {
|
|
|
|
charIdx++;
|
|
|
|
// Split text to get current char
|
2021-12-28 22:09:08 +03:00
|
|
|
auto curChar =
|
|
|
|
QStringView(nodeText).mid(boundaryStart, boundaryEnd - boundaryStart);
|
2021-09-18 01:22:33 +03:00
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
// Don't rainbowify whitespaces
|
2021-12-29 01:22:01 +03:00
|
|
|
if (curChar.trimmed().isEmpty() || codepointIsEmoji(curChar.toUcs4().at(0))) {
|
2021-09-18 01:22:33 +03:00
|
|
|
buf.append(curChar);
|
|
|
|
continue;
|
2021-03-26 02:42:46 +03:00
|
|
|
}
|
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// get correct color for char index
|
|
|
|
// Use colors as described here:
|
|
|
|
// https://shark.comfsm.fm/~dleeling/cis/hsl_rainbow.html
|
|
|
|
auto color = QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 0.9, 0.5);
|
|
|
|
// format color for HTML
|
|
|
|
auto colorString = color.name(QColor::NameFormat::HexRgb);
|
|
|
|
// create HTML element for current char
|
|
|
|
auto curCharColored =
|
2021-12-29 06:28:08 +03:00
|
|
|
QStringLiteral("<font color=\"%0\">%1</font>").arg(colorString).arg(curChar);
|
2021-09-18 01:22:33 +03:00
|
|
|
// append colored HTML element to buffer
|
|
|
|
buf.append(curCharColored);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create HTML_INLINE node to prevent HTML from being escaped
|
|
|
|
auto htmlNode = cmark_node_new(CMARK_NODE_HTML_INLINE);
|
|
|
|
// set content of HTML node to buffer contents
|
|
|
|
cmark_node_set_literal(htmlNode, buf.toUtf8().data());
|
|
|
|
// replace current node with HTML node
|
|
|
|
cmark_node_replace(cur, htmlNode);
|
|
|
|
// free memory of old node
|
|
|
|
cmark_node_free(cur);
|
2021-03-26 02:42:46 +03:00
|
|
|
}
|
2018-09-07 20:05:30 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
cmark_iter_free(iter);
|
|
|
|
}
|
2018-09-11 14:56:09 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
const char *tmp_buf = cmark_render_html(node, CMARK_OPT_UNSAFE);
|
|
|
|
// Copy the null terminated output buffer.
|
|
|
|
std::string html(tmp_buf);
|
2018-09-11 14:56:09 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// The buffer is no longer needed.
|
|
|
|
free((char *)tmp_buf);
|
2018-09-07 20:05:30 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
auto result = linkifyMessage(escapeBlacklistedHtml(QString::fromStdString(html))).trimmed();
|
2020-01-27 19:25:09 +03:00
|
|
|
|
2021-12-29 08:01:38 +03:00
|
|
|
if (result.count(QStringLiteral("<p>")) == 1 && result.startsWith(QLatin1String("<p>")) &&
|
|
|
|
result.endsWith(QLatin1String("</p>"))) {
|
2021-09-18 01:22:33 +03:00
|
|
|
result = result.mid(3, result.size() - 3 - 4);
|
|
|
|
}
|
2018-09-19 22:42:26 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return result;
|
2019-06-14 05:33:04 +03:00
|
|
|
}
|
|
|
|
|
2019-07-05 04:20:19 +03:00
|
|
|
QString
|
2021-09-18 01:22:33 +03:00
|
|
|
utils::getFormattedQuoteBody(const RelatedInfo &related, const QString &html)
|
2019-07-05 04:20:19 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto getFormattedBody = [related]() -> QString {
|
2019-07-05 04:20:19 +03:00
|
|
|
using MsgType = mtx::events::MessageType;
|
|
|
|
|
|
|
|
switch (related.type) {
|
|
|
|
case MsgType::File: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent a file.");
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
case MsgType::Image: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent an image.");
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
case MsgType::Audio: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent an audio file.");
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
case MsgType::Video: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent a video");
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
default: {
|
2021-09-18 01:22:33 +03:00
|
|
|
return related.quoted_formatted_body;
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
};
|
|
|
|
return QString("<mx-reply><blockquote><a "
|
|
|
|
"href=\"https://matrix.to/#/%1/%2\">In reply "
|
|
|
|
"to</a> <a href=\"https://matrix.to/#/%3\">%4</a><br"
|
|
|
|
"/>%5</blockquote></mx-reply>")
|
|
|
|
.arg(related.room,
|
|
|
|
QString::fromStdString(related.related_event),
|
|
|
|
related.quoted_user,
|
|
|
|
related.quoted_user,
|
|
|
|
getFormattedBody()) +
|
|
|
|
html;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
utils::getQuoteBody(const RelatedInfo &related)
|
|
|
|
{
|
|
|
|
using MsgType = mtx::events::MessageType;
|
|
|
|
|
|
|
|
switch (related.type) {
|
|
|
|
case MsgType::File: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent a file.");
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
case MsgType::Image: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent an image.");
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
case MsgType::Audio: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent an audio file.");
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
case MsgType::Video: {
|
2021-12-29 06:28:08 +03:00
|
|
|
return QStringLiteral("sent a video");
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
default: {
|
|
|
|
return related.quoted_body;
|
|
|
|
}
|
|
|
|
}
|
2019-07-05 04:20:19 +03:00
|
|
|
}
|
|
|
|
|
2018-09-19 22:42:26 +03:00
|
|
|
QString
|
|
|
|
utils::linkColor()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const auto theme = UserSettings::instance()->theme();
|
2019-08-10 20:14:37 +03:00
|
|
|
|
2021-12-29 06:28:08 +03:00
|
|
|
if (theme == QLatin1String("light")) {
|
|
|
|
return QStringLiteral("#0077b5");
|
|
|
|
} else if (theme == QLatin1String("dark")) {
|
|
|
|
return QStringLiteral("#38A3D8");
|
2021-09-18 01:22:33 +03:00
|
|
|
} else {
|
|
|
|
return QPalette().color(QPalette::Link).name();
|
|
|
|
}
|
2018-09-19 22:42:26 +03:00
|
|
|
}
|
2018-09-21 10:55:24 +03:00
|
|
|
|
2019-06-27 15:11:02 +03:00
|
|
|
uint32_t
|
2019-01-18 20:17:25 +03:00
|
|
|
utils::hashQString(const QString &input)
|
2019-01-18 07:09:42 +03:00
|
|
|
{
|
2021-11-24 02:47:02 +03:00
|
|
|
auto h = QCryptographicHash::hash(input.toUtf8(), QCryptographicHash::Sha1);
|
2019-01-18 07:09:42 +03:00
|
|
|
|
2021-12-04 04:42:58 +03:00
|
|
|
return (static_cast<uint32_t>(h[0]) << 24) ^ (static_cast<uint32_t>(h[1]) << 16) ^
|
|
|
|
(static_cast<uint32_t>(h[2]) << 8) ^ static_cast<uint32_t>(h[3]);
|
2019-01-18 20:17:25 +03:00
|
|
|
}
|
|
|
|
|
2021-06-09 00:20:09 +03:00
|
|
|
QColor
|
|
|
|
utils::generateContrastingHexColor(const QString &input, const QColor &backgroundCol)
|
2019-01-18 20:17:25 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
const qreal backgroundLum = luminance(backgroundCol);
|
|
|
|
|
|
|
|
// Create a color for the input
|
|
|
|
auto hash = hashQString(input);
|
|
|
|
// create a hue value based on the hash of the input.
|
2021-11-24 02:47:02 +03:00
|
|
|
// Adapted to make Nico blue
|
|
|
|
auto userHue =
|
|
|
|
static_cast<int>(static_cast<double>(hash - static_cast<uint32_t>(0x60'00'00'00)) /
|
|
|
|
std::numeric_limits<uint32_t>::max() * 360.);
|
2021-09-18 01:22:33 +03:00
|
|
|
// start with moderate saturation and lightness values.
|
2021-11-20 01:56:28 +03:00
|
|
|
auto sat = 230;
|
2021-09-18 01:22:33 +03:00
|
|
|
auto lightness = 125;
|
|
|
|
|
|
|
|
// converting to a QColor makes the luminance calc easier.
|
|
|
|
QColor inputColor = QColor::fromHsl(userHue, sat, lightness);
|
|
|
|
|
|
|
|
// calculate the initial luminance and contrast of the
|
|
|
|
// generated color. It's possible that no additional
|
|
|
|
// work will be necessary.
|
|
|
|
auto lum = luminance(inputColor);
|
|
|
|
auto contrast = computeContrast(lum, backgroundLum);
|
|
|
|
|
|
|
|
// If the contrast doesn't meet our criteria,
|
|
|
|
// try again and again until they do by modifying first
|
|
|
|
// the lightness and then the saturation of the color.
|
|
|
|
int iterationCount = 9;
|
2021-11-20 01:56:28 +03:00
|
|
|
while (contrast < 4.5) {
|
2021-09-18 01:22:33 +03:00
|
|
|
// if our lightness is at it's bounds, try changing
|
|
|
|
// saturation instead.
|
2021-11-20 01:56:28 +03:00
|
|
|
if (lightness >= 242 || lightness <= 13) {
|
2021-09-18 01:22:33 +03:00
|
|
|
qreal newSat = qBound(26.0, sat * 1.25, 242.0);
|
|
|
|
|
|
|
|
inputColor.setHsl(userHue, qFloor(newSat), lightness);
|
|
|
|
auto tmpLum = luminance(inputColor);
|
|
|
|
auto higherContrast = computeContrast(tmpLum, backgroundLum);
|
|
|
|
if (higherContrast > contrast) {
|
|
|
|
contrast = higherContrast;
|
|
|
|
sat = newSat;
|
|
|
|
} else {
|
|
|
|
newSat = qBound(26.0, sat / 1.25, 242.0);
|
|
|
|
inputColor.setHsl(userHue, qFloor(newSat), lightness);
|
|
|
|
tmpLum = luminance(inputColor);
|
|
|
|
auto lowerContrast = computeContrast(tmpLum, backgroundLum);
|
|
|
|
if (lowerContrast > contrast) {
|
|
|
|
contrast = lowerContrast;
|
|
|
|
sat = newSat;
|
2019-01-18 20:17:25 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
qreal newLightness = qBound(13.0, lightness * 1.25, 242.0);
|
|
|
|
|
|
|
|
inputColor.setHsl(userHue, sat, qFloor(newLightness));
|
|
|
|
|
|
|
|
auto tmpLum = luminance(inputColor);
|
|
|
|
auto higherContrast = computeContrast(tmpLum, backgroundLum);
|
|
|
|
|
|
|
|
// Check to make sure we have actually improved contrast
|
|
|
|
if (higherContrast > contrast) {
|
|
|
|
contrast = higherContrast;
|
|
|
|
lightness = newLightness;
|
|
|
|
// otherwise, try going the other way instead.
|
|
|
|
} else {
|
|
|
|
newLightness = qBound(13.0, lightness / 1.25, 242.0);
|
|
|
|
inputColor.setHsl(userHue, sat, qFloor(newLightness));
|
|
|
|
tmpLum = luminance(inputColor);
|
|
|
|
auto lowerContrast = computeContrast(tmpLum, backgroundLum);
|
|
|
|
if (lowerContrast > contrast) {
|
|
|
|
contrast = lowerContrast;
|
|
|
|
lightness = newLightness;
|
|
|
|
}
|
|
|
|
}
|
2019-01-18 20:17:25 +03:00
|
|
|
}
|
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// don't loop forever, just give up at some point!
|
|
|
|
// Someone smart may find a better solution
|
|
|
|
if (--iterationCount < 0)
|
|
|
|
break;
|
|
|
|
}
|
2019-01-20 03:12:57 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// get the hex value of the generated color.
|
|
|
|
auto colorHex = inputColor.name();
|
|
|
|
|
|
|
|
return colorHex;
|
2019-01-18 20:17:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal
|
|
|
|
utils::computeContrast(const qreal &one, const qreal &two)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto ratio = (one + 0.05) / (two + 0.05);
|
2019-01-18 20:17:25 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (two > one) {
|
|
|
|
ratio = 1 / ratio;
|
|
|
|
}
|
2019-01-18 20:17:25 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return ratio;
|
2019-01-18 20:17:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal
|
|
|
|
utils::luminance(const QColor &col)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
int colRgb[3] = {col.red(), col.green(), col.blue()};
|
|
|
|
qreal lumRgb[3];
|
2019-01-18 20:17:25 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
qreal v = colRgb[i] / 255.0;
|
|
|
|
lumRgb[i] = v <= 0.03928 ? v / 12.92 : qPow((v + 0.055) / 1.055, 2.4);
|
|
|
|
}
|
2019-01-18 20:17:25 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
auto lum = lumRgb[0] * 0.2126 + lumRgb[1] * 0.7152 + lumRgb[2] * 0.0722;
|
2019-01-20 03:12:57 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return lum;
|
2019-01-18 07:09:42 +03:00
|
|
|
}
|
|
|
|
|
2018-09-21 10:55:24 +03:00
|
|
|
void
|
|
|
|
utils::centerWidget(QWidget *widget, QWidget *parent)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto findCenter = [childRect = widget->rect()](QRect hostRect) -> QPoint {
|
|
|
|
return QPoint(hostRect.center().x() - (childRect.width() * 0.5),
|
|
|
|
hostRect.center().y() - (childRect.height() * 0.5));
|
|
|
|
};
|
2018-09-21 16:44:45 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (parent) {
|
|
|
|
widget->move(parent->window()->frameGeometry().topLeft() +
|
|
|
|
parent->window()->rect().center() - widget->rect().center());
|
|
|
|
return;
|
|
|
|
}
|
2018-09-21 10:55:24 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
// Deprecated in 5.13: widget->move(findCenter(QApplication::desktop()->screenGeometry()));
|
|
|
|
widget->move(findCenter(QGuiApplication::primaryScreen()->geometry()));
|
2018-09-21 10:55:24 +03:00
|
|
|
}
|
2018-10-01 17:56:46 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
utils::restoreCombobox(QComboBox *combo, const QString &value)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
for (auto i = 0; i < combo->count(); ++i) {
|
|
|
|
if (value == combo->itemText(i)) {
|
|
|
|
combo->setCurrentIndex(i);
|
|
|
|
break;
|
2018-10-01 17:56:46 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
2018-10-01 17:56:46 +03:00
|
|
|
}
|
2020-04-26 12:26:51 +03:00
|
|
|
|
2021-04-04 01:15:08 +03:00
|
|
|
QImage
|
|
|
|
utils::readImageFromFile(const QString &filename)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QImageReader reader(filename);
|
|
|
|
reader.setAutoTransform(true);
|
|
|
|
return reader.read();
|
2021-04-04 01:15:08 +03:00
|
|
|
}
|
2020-04-26 12:26:51 +03:00
|
|
|
QImage
|
2021-03-02 03:45:16 +03:00
|
|
|
utils::readImage(const QByteArray &data)
|
2020-04-26 12:26:51 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
QBuffer buf;
|
|
|
|
buf.setData(data);
|
|
|
|
QImageReader reader(&buf);
|
|
|
|
reader.setAutoTransform(true);
|
|
|
|
return reader.read();
|
2020-04-26 12:26:51 +03:00
|
|
|
}
|
2021-02-20 21:05:21 +03:00
|
|
|
|
|
|
|
bool
|
|
|
|
utils::isReply(const mtx::events::collections::TimelineEvents &e)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return mtx::accessors::relations(e).reply_to().has_value();
|
2021-02-20 21:05:21 +03:00
|
|
|
}
|
2021-11-21 07:23:38 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
utils::removeDirectFromRoom(QString roomid)
|
|
|
|
{
|
|
|
|
http::client()->get_account_data<mtx::events::account_data::Direct>(
|
|
|
|
[roomid](mtx::events::account_data::Direct ev, mtx::http::RequestErr e) {
|
|
|
|
if (e && e->status_code == 404)
|
|
|
|
ev = {};
|
|
|
|
else if (e) {
|
|
|
|
nhlog::net()->error("Failed to retrieve m.direct: {}", *e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto r = roomid.toStdString();
|
|
|
|
|
|
|
|
for (auto it = ev.user_to_rooms.begin(); it != ev.user_to_rooms.end();) {
|
|
|
|
for (auto rit = it->second.begin(); rit != it->second.end();) {
|
|
|
|
if (r == *rit)
|
|
|
|
rit = it->second.erase(rit);
|
|
|
|
else
|
|
|
|
++rit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (it->second.empty())
|
|
|
|
it = ev.user_to_rooms.erase(it);
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
http::client()->put_account_data(ev, [r](mtx::http::RequestErr e) {
|
|
|
|
if (e)
|
|
|
|
nhlog::net()->error("Failed to update m.direct: {}", *e);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
void
|
|
|
|
utils::markRoomAsDirect(QString roomid, std::vector<RoomMember> members)
|
|
|
|
{
|
|
|
|
http::client()->get_account_data<mtx::events::account_data::Direct>(
|
|
|
|
[roomid, members](mtx::events::account_data::Direct ev, mtx::http::RequestErr e) {
|
|
|
|
if (e && e->status_code == 404)
|
|
|
|
ev = {};
|
|
|
|
else if (e) {
|
|
|
|
nhlog::net()->error("Failed to retrieve m.direct: {}", *e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto local = utils::localUser();
|
|
|
|
auto r = roomid.toStdString();
|
|
|
|
|
|
|
|
for (const auto &m : members) {
|
|
|
|
if (m.user_id != local) {
|
|
|
|
ev.user_to_rooms[m.user_id.toStdString()].push_back(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
http::client()->put_account_data(ev, [r](mtx::http::RequestErr e) {
|
|
|
|
if (e)
|
|
|
|
nhlog::net()->error("Failed to update m.direct: {}", *e);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|