nheko/include/AvatarProvider.h

62 lines
2.0 KiB
C
Raw Normal View History

/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <QImage>
#include <QSharedPointer>
#include <QUrl>
2018-01-03 19:52:12 +01:00
#include <functional>
2017-10-28 14:46:39 +02:00
class MatrixClient;
class TimelineItem;
2018-03-25 14:59:47 +02:00
//! Saved cache data per user.
2017-10-28 20:11:40 +02:00
struct AvatarData
{
2018-03-25 14:59:47 +02:00
//! The avatar image of the user.
2017-10-28 20:11:40 +02:00
QImage img;
2018-03-25 14:59:47 +02:00
//! The url that was used to download the avatar.
2017-10-28 20:11:40 +02:00
QUrl url;
};
class AvatarProvider : public QObject
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
public:
2017-09-10 11:59:21 +02:00
static void init(QSharedPointer<MatrixClient> client);
2018-03-25 14:59:47 +02:00
//! The callback is called with the downloaded avatar for the given user
//! or the avatar is downloaded first and then saved for re-use.
static void resolve(const QString &userId,
QObject *receiver,
std::function<void(QImage)> callback);
//! Used to initialize the mapping user -> avatar url.
2017-09-10 11:59:21 +02:00
static void setAvatarUrl(const QString &userId, const QUrl &url);
2018-03-25 14:59:47 +02:00
//! Remove all saved data.
static void clear() { avatars_.clear(); };
private:
2018-03-25 14:59:47 +02:00
//! Update the cache with the downloaded avatar.
2017-09-10 11:59:21 +02:00
static void updateAvatar(const QString &uid, const QImage &img);
2017-09-10 11:59:21 +02:00
static QSharedPointer<MatrixClient> client_;
2017-10-28 20:11:40 +02:00
using UserID = QString;
static std::map<UserID, AvatarData> avatars_;
};