summaryrefslogtreecommitdiffstats
path: root/network/wirednetworkmodel.cpp
blob: 01a50fb523aa65d623828cc79ba0df6b16e80cf9 (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
#include "wirednetworkmodel.h"
#include "connectionprofile.h"
#include <QVector>
#include <QDebug>

WiredNetworkModel::WiredNetworkModel(QObject *parent)
    : AbstractNetworkModel(parent)
{
}

QVariant WiredNetworkModel::data(const QModelIndex &index, int role) const
{
    QVariant ret;

    if (!index.isValid())
        return ret;

    if (index.row() < 0 || index.row() >= m_networks.count())
        return ret;

    const ConnectionProfile *network = m_networks[index.row()];

    switch (role) {
        case AddressRole:
            return network->address();
        case SecurityRole:
            return network->security();
        case ServiceRole:
            return network->service();
        case StateRole:
            return network->state();
    }

    return ret;
}

QHash<int, QByteArray> WiredNetworkModel::roleNames() const {
    QHash<int, QByteArray> roles;
    roles[AddressRole] = "address";
    roles[SecurityRole] = "security";
    roles[ServiceRole] = "service";
    roles[StateRole] = "sstate";

    return roles;
}

void WiredNetworkModel::updateProperties(QString service, QJsonObject properties)
{
    ConnectionProfile *network;
    QVector<int> vroles;

    if ((network = getNetwork(service))) {
        if (properties.contains("ipv4")) {
            QString address = properties.value("ipv4").toObject().value("address").toString();
            network->setAddress(address);
            vroles.push_back(AddressRole);
        }
        if (properties.contains("state")) {
            network->setState(properties.value("state").toString());
            vroles.push_back(StateRole);
        }
        if (!vroles.isEmpty())
             emit dataChanged(indexOf(network), indexOf(network), vroles);

    }
}