Add jdenticon support
This commit is contained in:
parent
e88ab89c18
commit
d2e193ff78
11 changed files with 176 additions and 31 deletions
68
src/JdenticonProvider.cpp
Normal file
68
src/JdenticonProvider.cpp
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
#include "JdenticonProvider.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDir>
|
||||
#include <QPainter>
|
||||
#include <QPluginLoader>
|
||||
#include <QSvgRenderer>
|
||||
|
||||
#include <mtxclient/crypto/client.hpp>
|
||||
|
||||
#include "Cache.h"
|
||||
#include "Logging.h"
|
||||
#include "MatrixClient.h"
|
||||
#include "Utils.h"
|
||||
#include "jdenticoninterface.h"
|
||||
|
||||
JdenticonResponse::JdenticonResponse(const QString &key, const QSize &requestedSize)
|
||||
: m_key(key)
|
||||
, 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);
|
||||
QPainter painter{&m_pixmap};
|
||||
QSvgRenderer renderer{
|
||||
jdenticonInterface_->generate(m_key, m_requestedSize.width()).toUtf8()};
|
||||
// m_image = QImage::fromData(jdenticonInterface_->generate(m_key,
|
||||
// size->width()).toUtf8());
|
||||
renderer.render(&painter);
|
||||
|
||||
emit finished();
|
||||
}
|
||||
|
||||
namespace Jdenticon {
|
||||
JdenticonInterface *
|
||||
getJdenticonInterface()
|
||||
{
|
||||
static JdenticonInterface *interface = nullptr;
|
||||
|
||||
if (interface == nullptr) {
|
||||
QDir pluginsDir(qApp->applicationDirPath());
|
||||
|
||||
bool plugins = pluginsDir.cd("plugins");
|
||||
if (plugins) {
|
||||
for (QString fileName : pluginsDir.entryList(QDir::Files)) {
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
nhlog::ui()->info("jdenticon plugin not found.");
|
||||
}
|
||||
|
||||
return interface;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue