matrixion/src/AvatarProvider.cpp

77 lines
2.5 KiB
C++
Raw Normal View History

2021-03-05 02:35:15 +03: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 21:18:57 +03:00
#include <QBuffer>
#include <QPixmapCache>
2021-03-17 21:45:02 +03:00
#include <QPointer>
#include <memory>
#include <unordered_map>
2018-04-21 21:18:57 +03:00
#include "AvatarProvider.h"
2018-04-21 16:34:50 +03:00
#include "Cache.h"
2018-07-17 16:37:25 +03:00
#include "Logging.h"
2017-10-28 15:46:39 +03:00
#include "MatrixClient.h"
2021-03-17 21:08:17 +03:00
#include "MxcImageProvider.h"
#include "Utils.h"
2017-11-30 14:53:28 +03:00
static QPixmapCache avatar_cache;
namespace AvatarProvider {
2017-08-20 13:47:22 +03:00
void
2021-03-17 21:08:17 +03:00
resolve(QString avatarUrl, int size, QObject *receiver, AvatarCallback callback)
{
const auto cacheKey = QStringLiteral("%1_size_%2").arg(avatarUrl).arg(size);
2021-09-18 01:22:33 +03:00
QPixmap pixmap;
if (avatarUrl.isEmpty()) {
callback(pixmap);
return;
}
2021-09-18 01:22:33 +03:00
if (avatar_cache.find(cacheKey, &pixmap)) {
callback(pixmap);
return;
}
2021-09-18 01:22:33 +03: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-09-18 01:22:33 +03: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-09-18 01:22:33 +03:00
if (img.isNull()) {
emit proxy->avatarDownloaded(QPixmap{});
return;
}
2018-04-21 21:18:57 +03:00
2021-09-18 01:22:33 +03: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-09-18 01:22:33 +03:00
auto avatarUrl = cache::avatarUrl(room_id, user_id);
2021-09-18 01:22:33 +03:00
resolve(std::move(avatarUrl), size, receiver, callback);
}
}