summary refs log tree commit diff
path: root/src/RoomDirectoryModel.h
blob: c7089a1efbf23d43c882e96708ea7b8cdf9b9078 (plain) (blame)
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
82
83
84
85
86
87
88
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <QAbstractListModel>
#include <QHash>
#include <QString>
#include <string>
#include <vector>

#include "MatrixClient.h"
#include <mtx/responses/public_rooms.hpp>
#include <mtxclient/http/errors.hpp>

#include "Logging.h"

namespace mtx::http {
using RequestErr = const std::optional<mtx::http::ClientError> &;
}
namespace mtx::responses {
struct PublicRooms;
}

class RoomDirectoryModel : public QAbstractListModel
{
        Q_OBJECT

public:
        explicit RoomDirectoryModel(QObject *parent = nullptr, const std::string &s = "");

        enum Roles
        {
                Name = Qt::UserRole,
                Id,
                AvatarUrl,
                Topic,
                MemberCount,
                Previewable
        };
        QHash<int, QByteArray> roleNames() const override;

        QVariant data(const QModelIndex &index, int role) const override;

        inline int rowCount(const QModelIndex &parent = QModelIndex()) const override
        {
                (void)parent;
                return static_cast<int>(publicRoomsData_.size());
        }

        inline bool canFetchMore(const QModelIndex &) const override
        {
                nhlog::net()->debug("determining if can fetch more");
                return canFetchMore_;
        }
        void fetchMore(const QModelIndex &) override;

        Q_INVOKABLE bool canJoinRoom(const QByteArray &room);
        Q_INVOKABLE void joinRoom(const int &index = -1);

signals:
        void fetchedRoomsBatch(std::vector<mtx::responses::PublicRoomsChunk> rooms,
                               const std::string &prev_batch,
                               const std::string &next_batch);
        void serverChanged();
        void searchTermEntered();

public slots:
        void displayRooms(std::vector<mtx::responses::PublicRoomsChunk> rooms,
                          const std::string &prev,
                          const std::string &next);
        void setMatrixServer(const QString &s = "");
        void setSearchTerm(const QString &f);

private:
        static constexpr size_t limit_ = 50;

        std::string server_;
        std::string userSearchString_;
        std::string prevBatch_;
        std::string nextBatch_;
        bool canFetchMore_;
        std::vector<mtx::responses::PublicRoomsChunk> publicRoomsData_;

        std::vector<std::string> getViasForRoom(const std::vector<std::string> &room);
        void resetDisplayedData();
};