From b28e2d697842f58e2994ead62635b31f48162cdc Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 8 Jun 2018 17:03:41 +0900 Subject: csapi: add jobs for device management Same as for account management jobs, auth objects are modeled as generic QJsonObjects for now. --- lib/csapi/definitions/client_device.cpp | 34 +++++++++++++++++++++++++++++++++ lib/csapi/definitions/client_device.h | 31 ++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 lib/csapi/definitions/client_device.cpp create mode 100644 lib/csapi/definitions/client_device.h (limited to 'lib/csapi/definitions') diff --git a/lib/csapi/definitions/client_device.cpp b/lib/csapi/definitions/client_device.cpp new file mode 100644 index 00000000..60b3617c --- /dev/null +++ b/lib/csapi/definitions/client_device.cpp @@ -0,0 +1,34 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "client_device.h" + +using namespace QMatrixClient; + +QJsonObject QMatrixClient::toJson(const Device& pod) +{ + QJsonObject _json; + addToJson<>(_json, "device_id", pod.deviceId); + addToJson(_json, "display_name", pod.displayName); + addToJson(_json, "last_seen_ip", pod.lastSeenIp); + addToJson(_json, "last_seen_ts", pod.lastSeenTs); + return _json; +} + +Device FromJson::operator()(const QJsonValue& jv) +{ + const auto& _json = jv.toObject(); + Device result; + result.deviceId = + fromJson(_json.value("device_id")); + result.displayName = + fromJson(_json.value("display_name")); + result.lastSeenIp = + fromJson(_json.value("last_seen_ip")); + result.lastSeenTs = + fromJson(_json.value("last_seen_ts")); + + return result; +} + diff --git a/lib/csapi/definitions/client_device.h b/lib/csapi/definitions/client_device.h new file mode 100644 index 00000000..4c09e13c --- /dev/null +++ b/lib/csapi/definitions/client_device.h @@ -0,0 +1,31 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + + +#include "converters.h" + +#include "converters.h" + +namespace QMatrixClient +{ + // Data structures + + struct Device + { + QString deviceId; + QString displayName; + QString lastSeenIp; + Omittable lastSeenTs; + }; + + QJsonObject toJson(const Device& pod); + + template <> struct FromJson + { + Device operator()(const QJsonValue& jv); + }; + +} // namespace QMatrixClient -- cgit v1.2.3