From 4244cee8d5e0f760cccd2b45ad587670573ef03c Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 24 Sep 2018 19:20:10 +0900 Subject: Prepare for CS API 0.4.0 This commit consists of two parts: upgrading the API infrastructure and trivial but sweeping update to the generated files. 1. The API infrastructure (converters.h, *.mustache and some other non-generated files) now can deal with top-level JSON arrays and response inlining; better supports property maps; and gets some formatting fixes in generated code. 2. Generated files now use QJsonValue instead of QJsonObject as a default type to (un)marshall Matrix API data structures, to match the change in the infrastructure above This commit is still using the old Matrix API definitions, before CS API 0.4.0. Getting to CS API 0.4.0 will come next. --- lib/application-service/definitions/user.cpp | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'lib/application-service/definitions/user.cpp') diff --git a/lib/application-service/definitions/user.cpp b/lib/application-service/definitions/user.cpp index 17687cfd..dbe4c104 100644 --- a/lib/application-service/definitions/user.cpp +++ b/lib/application-service/definitions/user.cpp @@ -8,24 +8,23 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const ThirdPartyUser& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("userid"), pod.userid); - addParam(_json, QStringLiteral("protocol"), pod.protocol); - addParam(_json, QStringLiteral("fields"), pod.fields); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("userid"), pod.userid); + addParam(jo, QStringLiteral("protocol"), pod.protocol); + addParam(jo, QStringLiteral("fields"), pod.fields); + return jo; } -ThirdPartyUser FromJson::operator()(const QJsonValue& jv) +ThirdPartyUser FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); ThirdPartyUser result; result.userid = - fromJson(_json.value("userid"_ls)); + fromJson(jo.value("userid"_ls)); result.protocol = - fromJson(_json.value("protocol"_ls)); + fromJson(jo.value("protocol"_ls)); result.fields = - fromJson(_json.value("fields"_ls)); - + fromJson(jo.value("fields"_ls)); + return result; } -- cgit v1.2.3 From 1e6510790dab6b9141ae52993987b406399668cd Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 2 Sep 2018 16:08:13 +0900 Subject: Support CS API 0.4.0 Numerous changes in CS (and now also AS) API, including compatibility-breaking ones - see the diff for details. --- lib/application-service/definitions/user.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/application-service/definitions/user.cpp') diff --git a/lib/application-service/definitions/user.cpp b/lib/application-service/definitions/user.cpp index dbe4c104..ca334236 100644 --- a/lib/application-service/definitions/user.cpp +++ b/lib/application-service/definitions/user.cpp @@ -9,9 +9,9 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const ThirdPartyUser& pod) { QJsonObject jo; - addParam(jo, QStringLiteral("userid"), pod.userid); - addParam(jo, QStringLiteral("protocol"), pod.protocol); - addParam(jo, QStringLiteral("fields"), pod.fields); + addParam<>(jo, QStringLiteral("userid"), pod.userid); + addParam<>(jo, QStringLiteral("protocol"), pod.protocol); + addParam<>(jo, QStringLiteral("fields"), pod.fields); return jo; } -- cgit v1.2.3