nheko/src/AvatarProvider.cpp

77 lines
2.8 KiB
C++
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2018-04-21 20:18:57 +02:00
#include <QBuffer>
#include <QPixmapCache>
#include <memory>
#include <unordered_map>
2018-04-21 20:18:57 +02:00
#include "AvatarProvider.h"
2018-04-21 15:34:50 +02:00
#include "Cache.h"
2018-07-17 15:37:25 +02:00
#include "Logging.h"
2017-10-28 14:46:39 +02:00
#include "MatrixClient.h"
2021-03-17 19:08:17 +01:00
#include "MxcImageProvider.h"
#include "Utils.h"
2017-11-30 12:53:28 +01:00
static QPixmapCache avatar_cache;
namespace AvatarProvider {
2017-08-20 12:47:22 +02:00
void
2021-03-17 19:08:17 +01:00
resolve(QString avatarUrl, int size, QObject *receiver, AvatarCallback callback)
{
2020-01-21 21:33:35 +01:00
const auto cacheKey = QString("%1_size_%2").arg(avatarUrl).arg(size);
2020-09-07 18:11:06 +02:00
QPixmap pixmap;
if (avatarUrl.isEmpty()) {
callback(pixmap);
2018-04-21 20:18:57 +02:00
return;
2020-09-07 18:11:06 +02:00
}
2019-08-28 08:21:07 +02:00
if (avatar_cache.find(cacheKey, &pixmap)) {
callback(pixmap);
return;
}
2021-03-17 19:08:17 +01:00
MxcImageProvider::download(avatarUrl.remove(QStringLiteral("mxc://")),
QSize(size, size),
[callback, cacheKey, recv = QPointer<QObject>(receiver)](
QString, QSize, QImage img, QString) {
if (!recv)
return;
2021-03-17 19:08:17 +01:00
auto proxy = std::make_shared<AvatarProxy>();
QObject::connect(proxy.get(),
&AvatarProxy::avatarDownloaded,
recv,
[callback, cacheKey](QPixmap pm) {
if (!pm.isNull())
avatar_cache.insert(
cacheKey, pm);
callback(pm);
});
2021-03-17 19:08:17 +01:00
if (img.isNull()) {
emit proxy->avatarDownloaded(QPixmap{});
return;
}
2018-04-21 20:18:57 +02:00
2021-03-17 19:08:17 +01:00
auto pm = QPixmap::fromImage(std::move(img));
emit proxy->avatarDownloaded(pm);
});
}
void
resolve(const QString &room_id,
const QString &user_id,
int size,
QObject *receiver,
AvatarCallback callback)
{
2021-03-17 19:08:17 +01:00
auto avatarUrl = cache::avatarUrl(room_id, user_id);
2021-03-17 19:08:17 +01:00
resolve(std::move(avatarUrl), size, receiver, callback);
}
}