2020-10-19 14:51:31 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 by Savoir-faire Linux
|
|
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
#include "quickimageproviderbase.h"
|
2020-10-19 14:51:31 -04:00
|
|
|
#include "utils.h"
|
2020-12-15 11:55:38 -05:00
|
|
|
#include "lrcinstance.h"
|
2020-10-19 14:51:31 -04:00
|
|
|
|
|
|
|
#include <QImage>
|
|
|
|
|
2021-03-11 13:30:45 -05:00
|
|
|
class AvatarImageProvider : public QuickImageProviderBase
|
2020-10-19 14:51:31 -04:00
|
|
|
{
|
|
|
|
public:
|
2021-03-11 13:30:45 -05:00
|
|
|
AvatarImageProvider(LRCInstance* instance = nullptr)
|
|
|
|
: QuickImageProviderBase(QQuickImageProvider::Image,
|
|
|
|
QQmlImageProviderBase::ForceAsynchronousImageLoading,
|
|
|
|
instance)
|
2020-10-19 14:51:31 -04:00
|
|
|
{}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Request function
|
|
|
|
* id could be
|
|
|
|
* 1. account_ + account id
|
|
|
|
* 2. file_ + file path
|
|
|
|
* 3. contact_+ contact uri
|
|
|
|
* 4. conversation_+ conversation uid
|
2020-12-03 13:25:34 -05:00
|
|
|
* 5. base64_ + base64 string
|
2020-10-19 14:51:31 -04:00
|
|
|
*/
|
|
|
|
QImage requestImage(const QString& id, QSize* size, const QSize& requestedSize) override
|
|
|
|
{
|
|
|
|
Q_UNUSED(size)
|
|
|
|
|
|
|
|
auto idInfo = id.split("_");
|
|
|
|
// Id type -> account_
|
|
|
|
auto idType = idInfo[1];
|
|
|
|
// Id content -> every after account_
|
|
|
|
auto idContent = id.mid(id.indexOf(idType) + idType.length() + 1);
|
|
|
|
|
2020-11-02 11:44:20 -05:00
|
|
|
if (idContent.isEmpty() && idType != "default")
|
2020-10-19 14:51:31 -04:00
|
|
|
return QImage();
|
|
|
|
|
|
|
|
if (idType == "account") {
|
2021-03-11 13:30:45 -05:00
|
|
|
return Utils::accountPhoto(lrcInstance_,
|
|
|
|
lrcInstance_->accountModel().getAccountInfo(idContent),
|
2020-10-19 14:51:31 -04:00
|
|
|
requestedSize);
|
|
|
|
} else if (idType == "conversation") {
|
2021-03-11 13:30:45 -05:00
|
|
|
const auto& convInfo = lrcInstance_->getConversationFromConvUid(idContent);
|
|
|
|
return Utils::contactPhoto(lrcInstance_, convInfo.participants[0], requestedSize);
|
2020-10-19 14:51:31 -04:00
|
|
|
} else if (idType == "contact") {
|
2021-03-11 13:30:45 -05:00
|
|
|
return Utils::contactPhoto(lrcInstance_, idContent, requestedSize);
|
2020-11-02 11:44:20 -05:00
|
|
|
} else if (idType == "fallback") {
|
|
|
|
return Utils::fallbackAvatar(QString(), idContent, requestedSize);
|
|
|
|
} else if (idType == "default") {
|
|
|
|
return Utils::fallbackAvatar(QString(), QString(), requestedSize);
|
2020-12-03 13:25:34 -05:00
|
|
|
} else if (idType == "base64") {
|
|
|
|
return Utils::cropImage(QImage::fromData(Utils::base64StringToByteArray(idContent)))
|
|
|
|
.scaled(requestedSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
2020-10-19 14:51:31 -04:00
|
|
|
} else {
|
2020-12-03 13:25:34 -05:00
|
|
|
QImage image = QImage(idContent);
|
|
|
|
return Utils::getCirclePhoto(image, image.size().width())
|
|
|
|
.scaled(requestedSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
2020-10-19 14:51:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|