summaryrefslogtreecommitdiffstats
path: root/src/JdenticonProvider.h
blob: f13efc46de906d84a27b9fffdac0580a5dd122c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <QImage>
#include <QQuickAsyncImageProvider>
#include <QQuickImageResponse>
#include <QThreadPool>

class JdenticonRunnable final
  : public QObject
  , public QRunnable
{
    Q_OBJECT
public:
    JdenticonRunnable(const QString &key, bool crop, double radius, const QSize &requestedSize);

    void run() override;

signals:
    void done(QImage img);

private:
    QString m_key;
    bool m_crop;
    double m_radius;
    QSize m_requestedSize;
};

class JdenticonResponse final : public QQuickImageResponse
{
public:
    JdenticonResponse(const QString &key, bool crop, double radius, const QSize &requestedSize);

    QQuickTextureFactory *textureFactory() const override
    {
        return QQuickTextureFactory::textureFactoryForImage(m_pixmap);
    }

    void handleDone(QImage img)
    {
        m_pixmap = std::move(img);
        emit finished();
    }

    QImage m_pixmap;
};

class JdenticonProvider : public QQuickAsyncImageProvider
{
    Q_OBJECT

public:
    static bool isAvailable();

public slots:
    QQuickImageResponse *
    requestImageResponse(const QString &id, const QSize &requestedSize) override
    {
        auto id_      = id;
        bool crop     = true;
        double radius = 0;

        auto queryStart = id.lastIndexOf('?');
        if (queryStart != -1) {
            id_            = id.left(queryStart);
            auto query     = id.mid(queryStart + 1);
            auto queryBits = QStringView(query).split('&');

            for (const auto &b : queryBits) {
                if (b.startsWith(QStringView(u"radius="))) {
                    radius = b.mid(7).toDouble();
                }
            }
        }

        return new JdenticonResponse(id_, crop, radius, requestedSize);
    }
};