mirror of
				https://git.jami.net/savoirfairelinux/jami-client-qt.git
				synced 2025-10-30 07:53:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2020-2024 Savoir-faire Linux Inc.
 | 
						|
 * Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
 | 
						|
 * Author: Andreas Traczyk <andreas.traczyk@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
 | 
						|
 | 
						|
#include "quickimageproviderbase.h"
 | 
						|
#include "utils.h"
 | 
						|
#include "lrcinstance.h"
 | 
						|
 | 
						|
#include <QImage>
 | 
						|
 | 
						|
class AvatarImageProvider : public QuickImageProviderBase
 | 
						|
{
 | 
						|
public:
 | 
						|
    AvatarImageProvider(LRCInstance* instance = nullptr)
 | 
						|
        : QuickImageProviderBase(QQuickImageProvider::Image,
 | 
						|
                                 QQmlImageProviderBase::ForceAsynchronousImageLoading,
 | 
						|
                                 instance)
 | 
						|
    {}
 | 
						|
 | 
						|
    QImage requestImage(const QString& id, QSize* size, const QSize& requestedSize) override
 | 
						|
    {
 | 
						|
        Q_UNUSED(size)
 | 
						|
 | 
						|
        if (requestedSize == QSize(0, 0)) {
 | 
						|
            qWarning() << Q_FUNC_INFO << "Image request has no dimensions";
 | 
						|
            return {};
 | 
						|
        }
 | 
						|
 | 
						|
        // the first string is the item uri and the second is a uid
 | 
						|
        // that is used for trigger a reload of the underlying image
 | 
						|
        // data and can be discarded at this point
 | 
						|
        auto idInfo = id.split("_");
 | 
						|
 | 
						|
        if (idInfo.size() < 2) {
 | 
						|
            qWarning() << Q_FUNC_INFO << "Missing element(s) in the image url";
 | 
						|
            return {};
 | 
						|
        }
 | 
						|
 | 
						|
        const auto& imageId = idInfo.at(1);
 | 
						|
        if (!imageId.size()) {
 | 
						|
            qWarning() << Q_FUNC_INFO << "Missing id in the image url";
 | 
						|
            return {};
 | 
						|
        }
 | 
						|
 | 
						|
        const auto& type = idInfo.at(0);
 | 
						|
        if (type == "conversation") {
 | 
						|
            if (imageId == "temp")
 | 
						|
                return Utils::tempConversationAvatar(requestedSize);
 | 
						|
            return Utils::conversationAvatar(lrcInstance_, imageId, requestedSize);
 | 
						|
        }
 | 
						|
        if (type == "account")
 | 
						|
            return Utils::accountPhoto(lrcInstance_, imageId, requestedSize);
 | 
						|
        if (type == "contact")
 | 
						|
            return Utils::contactPhoto(lrcInstance_, imageId, requestedSize);
 | 
						|
 | 
						|
        qWarning() << Q_FUNC_INFO << "Missing valid prefix in the image url";
 | 
						|
        return {};
 | 
						|
    }
 | 
						|
};
 |