blob: 616b54b4a0ac9e45ad59f3eb1a220a97d6390e43 (
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
|
// SPDX-FileCopyrightText: Kitsune Ral <Kitsune-Ral@users.sf.net>
// SPDX-FileCopyrightText: Tobias Fella <fella@posteo.de>
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "accountregistry.h"
#include "connection.h"
using namespace Quotient;
void AccountRegistry::add(Connection* a)
{
if (contains(a))
return;
beginInsertRows(QModelIndex(), size(), size());
push_back(a);
endInsertRows();
}
void AccountRegistry::drop(Connection* a)
{
const auto idx = indexOf(a);
beginRemoveRows(QModelIndex(), idx, idx);
remove(idx);
endRemoveRows();
Q_ASSERT(!contains(a));
}
bool AccountRegistry::isLoggedIn(const QString &userId) const
{
return std::any_of(cbegin(), cend(), [&userId](const Connection* a) {
return a->userId() == userId;
});
}
QVariant AccountRegistry::data(const QModelIndex& index, int role) const
{
if (!index.isValid() || index.row() >= count())
return {};
if (role == AccountRole)
return QVariant::fromValue(at(index.row()));
return {};
}
int AccountRegistry::rowCount(const QModelIndex& parent) const
{
return parent.isValid() ? 0 : count();
}
QHash<int, QByteArray> AccountRegistry::roleNames() const
{
return { { AccountRole, "connection" } };
}
Connection* AccountRegistry::get(const QString& userId)
{
for (const auto &connection : *this) {
if (connection->userId() == userId)
return connection;
}
return nullptr;
}
|