nheko/src/JdenticonProvider.cpp

106 lines
3.0 KiB
C++
Raw Normal View History

2021-08-13 02:49:25 +02:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2020-12-25 15:14:00 +01:00
#include "JdenticonProvider.h"
#include <QApplication>
#include <QDir>
#include <QPainter>
2021-08-14 02:05:51 +02:00
#include <QPainterPath>
2020-12-25 15:14:00 +01:00
#include <QPluginLoader>
#include <QSvgRenderer>
#include <mtxclient/crypto/client.hpp>
#include "Cache.h"
#include "Logging.h"
#include "MatrixClient.h"
#include "Utils.h"
#include "jdenticoninterface.h"
2021-08-31 02:19:17 +02:00
static QPixmap
clipRadius(QPixmap img, double radius)
{
QPixmap out(img.size());
out.fill(Qt::transparent);
QPainter painter(&out);
painter.setRenderHint(QPainter::Antialiasing, true);
painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
QPainterPath ppath;
ppath.addRoundedRect(img.rect(), radius, radius, Qt::SizeMode::RelativeSize);
painter.setClipPath(ppath);
painter.drawPixmap(img.rect(), img);
return out;
}
2021-08-14 02:05:51 +02:00
JdenticonResponse::JdenticonResponse(const QString &key,
bool crop,
double radius,
const QSize &requestedSize)
2020-12-25 15:14:00 +01:00
: m_key(key)
2021-08-14 02:05:51 +02:00
, m_crop{crop}
, m_radius{radius}
2020-12-25 15:14:00 +01:00
, m_requestedSize(requestedSize.isValid() ? requestedSize : QSize(100, 100))
, m_pixmap{m_requestedSize}
, jdenticonInterface_{Jdenticon::getJdenticonInterface()}
{
setAutoDelete(false);
}
void
JdenticonResponse::run()
{
m_pixmap.fill(Qt::transparent);
2021-08-31 02:19:17 +02:00
QPainter painter;
painter.begin(&m_pixmap);
2021-08-14 02:05:51 +02:00
painter.setRenderHint(QPainter::Antialiasing, true);
painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
2020-12-25 15:14:00 +01:00
QSvgRenderer renderer{
jdenticonInterface_->generate(m_key, m_requestedSize.width()).toUtf8()};
renderer.render(&painter);
2021-08-31 02:19:17 +02:00
painter.end();
m_pixmap = clipRadius(m_pixmap, m_radius);
2020-12-25 15:14:00 +01:00
emit finished();
}
namespace Jdenticon {
JdenticonInterface *
getJdenticonInterface()
{
static JdenticonInterface *interface = nullptr;
if (interface == nullptr) {
QDir pluginsDir(qApp->applicationDirPath());
bool plugins = pluginsDir.cd("plugins");
if (plugins) {
2021-08-31 02:19:17 +02:00
for (const QString &fileName : pluginsDir.entryList(QDir::Files)) {
2020-12-25 15:14:00 +01:00
QPluginLoader pluginLoader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = pluginLoader.instance();
if (plugin) {
interface = qobject_cast<JdenticonInterface *>(plugin);
if (interface) {
nhlog::ui()->info("Loaded jdenticon plugin.");
break;
}
}
}
2021-01-26 01:27:29 +01:00
} else {
2020-12-25 15:14:00 +01:00
nhlog::ui()->info("jdenticon plugin not found.");
2021-01-26 01:27:29 +01:00
}
2020-12-25 15:14:00 +01:00
}
return interface;
}
}