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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "converters.h"
namespace Quotient {
/// Device identity keys
struct DeviceKeys {
/// The ID of the user the device belongs to. Must match the user ID used
/// when logging in.
QString userId;
/// The ID of the device these keys belong to. Must match the device ID used
/// when logging in.
QString deviceId;
/// The encryption algorithms supported by this device.
QStringList algorithms;
/// Public identity keys. The names of the properties should be in the
/// format `<algorithm>:<device_id>`. The keys themselves should be
/// encoded as specified by the key algorithm.
QHash<QString, QString> keys;
/// Signatures for the device key object. A map from user ID, to a map from
/// `<algorithm>:<device_id>` to the signature.
///
/// The signature is calculated using the process described at [Signing
/// JSON](/appendices/#signing-json).
QHash<QString, QHash<QString, QString>> signatures;
};
template <>
struct JsonObjectConverter<DeviceKeys> {
static void dumpTo(QJsonObject& jo, const DeviceKeys& pod)
{
addParam<>(jo, QStringLiteral("user_id"), pod.userId);
addParam<>(jo, QStringLiteral("device_id"), pod.deviceId);
addParam<>(jo, QStringLiteral("algorithms"), pod.algorithms);
addParam<>(jo, QStringLiteral("keys"), pod.keys);
addParam<>(jo, QStringLiteral("signatures"), pod.signatures);
}
static void fillFrom(const QJsonObject& jo, DeviceKeys& pod)
{
fromJson(jo.value("user_id"_ls), pod.userId);
fromJson(jo.value("device_id"_ls), pod.deviceId);
fromJson(jo.value("algorithms"_ls), pod.algorithms);
fromJson(jo.value("keys"_ls), pod.keys);
fromJson(jo.value("signatures"_ls), pod.signatures);
}
};
} // namespace Quotient
|