diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-09 22:53:29 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-09 22:53:29 +0900 |
commit | 46801080846d58ab1528e921bebcb14e651f7956 (patch) | |
tree | 13fadd0e947a184bc7cef77c5c0867bf404bfe0b /lib/csapi/definitions | |
parent | 6767cb8eccea7b74531f59f165a28afa0bec61f4 (diff) | |
download | libquotient-46801080846d58ab1528e921bebcb14e651f7956.tar.gz libquotient-46801080846d58ab1528e921bebcb14e651f7956.zip |
csapi: Now really fix passing query parameters
Also: GetContentThumbnailJob (again) requires width and height.
Diffstat (limited to 'lib/csapi/definitions')
-rw-r--r-- | lib/csapi/definitions/client_device.cpp | 8 | ||||
-rw-r--r-- | lib/csapi/definitions/device_keys.cpp | 10 | ||||
-rw-r--r-- | lib/csapi/definitions/event_filter.cpp | 10 | ||||
-rw-r--r-- | lib/csapi/definitions/push_condition.cpp | 8 | ||||
-rw-r--r-- | lib/csapi/definitions/push_rule.cpp | 12 | ||||
-rw-r--r-- | lib/csapi/definitions/push_ruleset.cpp | 10 | ||||
-rw-r--r-- | lib/csapi/definitions/room_event_filter.cpp | 6 | ||||
-rw-r--r-- | lib/csapi/definitions/sync_filter.cpp | 24 |
8 files changed, 44 insertions, 44 deletions
diff --git a/lib/csapi/definitions/client_device.cpp b/lib/csapi/definitions/client_device.cpp index 60b3617c..7c3d7ea6 100644 --- a/lib/csapi/definitions/client_device.cpp +++ b/lib/csapi/definitions/client_device.cpp @@ -9,10 +9,10 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const Device& pod) { QJsonObject _json; - addToJson<>(_json, "device_id", pod.deviceId); - addToJson<IfNotEmpty>(_json, "display_name", pod.displayName); - addToJson<IfNotEmpty>(_json, "last_seen_ip", pod.lastSeenIp); - addToJson<IfNotEmpty>(_json, "last_seen_ts", pod.lastSeenTs); + addParam<>(_json, "device_id", pod.deviceId); + addParam<IfNotEmpty>(_json, "display_name", pod.displayName); + addParam<IfNotEmpty>(_json, "last_seen_ip", pod.lastSeenIp); + addParam<IfNotEmpty>(_json, "last_seen_ts", pod.lastSeenTs); return _json; } diff --git a/lib/csapi/definitions/device_keys.cpp b/lib/csapi/definitions/device_keys.cpp index 24357993..43cd5d2e 100644 --- a/lib/csapi/definitions/device_keys.cpp +++ b/lib/csapi/definitions/device_keys.cpp @@ -9,11 +9,11 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const DeviceKeys& pod) { QJsonObject _json; - addToJson<>(_json, "user_id", pod.userId); - addToJson<>(_json, "device_id", pod.deviceId); - addToJson<>(_json, "algorithms", pod.algorithms); - addToJson<>(_json, "keys", pod.keys); - addToJson<>(_json, "signatures", pod.signatures); + addParam<>(_json, "user_id", pod.userId); + addParam<>(_json, "device_id", pod.deviceId); + addParam<>(_json, "algorithms", pod.algorithms); + addParam<>(_json, "keys", pod.keys); + addParam<>(_json, "signatures", pod.signatures); return _json; } diff --git a/lib/csapi/definitions/event_filter.cpp b/lib/csapi/definitions/event_filter.cpp index b16b082d..21ee2b81 100644 --- a/lib/csapi/definitions/event_filter.cpp +++ b/lib/csapi/definitions/event_filter.cpp @@ -9,11 +9,11 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const Filter& pod) { QJsonObject _json; - addToJson<IfNotEmpty>(_json, "limit", pod.limit); - addToJson<IfNotEmpty>(_json, "not_senders", pod.notSenders); - addToJson<IfNotEmpty>(_json, "not_types", pod.notTypes); - addToJson<IfNotEmpty>(_json, "senders", pod.senders); - addToJson<IfNotEmpty>(_json, "types", pod.types); + addParam<IfNotEmpty>(_json, "limit", pod.limit); + addParam<IfNotEmpty>(_json, "not_senders", pod.notSenders); + addParam<IfNotEmpty>(_json, "not_types", pod.notTypes); + addParam<IfNotEmpty>(_json, "senders", pod.senders); + addParam<IfNotEmpty>(_json, "types", pod.types); return _json; } diff --git a/lib/csapi/definitions/push_condition.cpp b/lib/csapi/definitions/push_condition.cpp index 149419f4..b8595ec6 100644 --- a/lib/csapi/definitions/push_condition.cpp +++ b/lib/csapi/definitions/push_condition.cpp @@ -9,10 +9,10 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushCondition& pod) { QJsonObject _json; - addToJson<>(_json, "kind", pod.kind); - addToJson<IfNotEmpty>(_json, "key", pod.key); - addToJson<IfNotEmpty>(_json, "pattern", pod.pattern); - addToJson<IfNotEmpty>(_json, "is", pod.is); + addParam<>(_json, "kind", pod.kind); + addParam<IfNotEmpty>(_json, "key", pod.key); + addParam<IfNotEmpty>(_json, "pattern", pod.pattern); + addParam<IfNotEmpty>(_json, "is", pod.is); return _json; } diff --git a/lib/csapi/definitions/push_rule.cpp b/lib/csapi/definitions/push_rule.cpp index 3a44a385..98f5d788 100644 --- a/lib/csapi/definitions/push_rule.cpp +++ b/lib/csapi/definitions/push_rule.cpp @@ -9,12 +9,12 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushRule& pod) { QJsonObject _json; - addToJson<>(_json, "actions", pod.actions); - addToJson<>(_json, "default", pod.isDefault); - addToJson<>(_json, "enabled", pod.enabled); - addToJson<>(_json, "rule_id", pod.ruleId); - addToJson<IfNotEmpty>(_json, "conditions", pod.conditions); - addToJson<IfNotEmpty>(_json, "pattern", pod.pattern); + addParam<>(_json, "actions", pod.actions); + addParam<>(_json, "default", pod.isDefault); + addParam<>(_json, "enabled", pod.enabled); + addParam<>(_json, "rule_id", pod.ruleId); + addParam<IfNotEmpty>(_json, "conditions", pod.conditions); + addParam<IfNotEmpty>(_json, "pattern", pod.pattern); return _json; } diff --git a/lib/csapi/definitions/push_ruleset.cpp b/lib/csapi/definitions/push_ruleset.cpp index 98d79248..ca2bbc0d 100644 --- a/lib/csapi/definitions/push_ruleset.cpp +++ b/lib/csapi/definitions/push_ruleset.cpp @@ -9,11 +9,11 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushRuleset& pod) { QJsonObject _json; - addToJson<IfNotEmpty>(_json, "content", pod.content); - addToJson<IfNotEmpty>(_json, "override", pod.override); - addToJson<IfNotEmpty>(_json, "room", pod.room); - addToJson<IfNotEmpty>(_json, "sender", pod.sender); - addToJson<IfNotEmpty>(_json, "underride", pod.underride); + addParam<IfNotEmpty>(_json, "content", pod.content); + addParam<IfNotEmpty>(_json, "override", pod.override); + addParam<IfNotEmpty>(_json, "room", pod.room); + addParam<IfNotEmpty>(_json, "sender", pod.sender); + addParam<IfNotEmpty>(_json, "underride", pod.underride); return _json; } diff --git a/lib/csapi/definitions/room_event_filter.cpp b/lib/csapi/definitions/room_event_filter.cpp index 68e56f4c..1702be22 100644 --- a/lib/csapi/definitions/room_event_filter.cpp +++ b/lib/csapi/definitions/room_event_filter.cpp @@ -9,9 +9,9 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const RoomEventFilter& pod) { QJsonObject _json; - addToJson<IfNotEmpty>(_json, "not_rooms", pod.notRooms); - addToJson<IfNotEmpty>(_json, "rooms", pod.rooms); - addToJson<IfNotEmpty>(_json, "contains_url", pod.containsUrl); + addParam<IfNotEmpty>(_json, "not_rooms", pod.notRooms); + addParam<IfNotEmpty>(_json, "rooms", pod.rooms); + addParam<IfNotEmpty>(_json, "contains_url", pod.containsUrl); return _json; } diff --git a/lib/csapi/definitions/sync_filter.cpp b/lib/csapi/definitions/sync_filter.cpp index 7ca389b4..2b5cf8be 100644 --- a/lib/csapi/definitions/sync_filter.cpp +++ b/lib/csapi/definitions/sync_filter.cpp @@ -9,13 +9,13 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const RoomFilter& pod) { QJsonObject _json; - addToJson<IfNotEmpty>(_json, "not_rooms", pod.notRooms); - addToJson<IfNotEmpty>(_json, "rooms", pod.rooms); - addToJson<IfNotEmpty>(_json, "ephemeral", pod.ephemeral); - addToJson<IfNotEmpty>(_json, "include_leave", pod.includeLeave); - addToJson<IfNotEmpty>(_json, "state", pod.state); - addToJson<IfNotEmpty>(_json, "timeline", pod.timeline); - addToJson<IfNotEmpty>(_json, "account_data", pod.accountData); + addParam<IfNotEmpty>(_json, "not_rooms", pod.notRooms); + addParam<IfNotEmpty>(_json, "rooms", pod.rooms); + addParam<IfNotEmpty>(_json, "ephemeral", pod.ephemeral); + addParam<IfNotEmpty>(_json, "include_leave", pod.includeLeave); + addParam<IfNotEmpty>(_json, "state", pod.state); + addParam<IfNotEmpty>(_json, "timeline", pod.timeline); + addParam<IfNotEmpty>(_json, "account_data", pod.accountData); return _json; } @@ -44,11 +44,11 @@ RoomFilter FromJson<RoomFilter>::operator()(const QJsonValue& jv) QJsonObject QMatrixClient::toJson(const SyncFilter& pod) { QJsonObject _json; - addToJson<IfNotEmpty>(_json, "event_fields", pod.eventFields); - addToJson<IfNotEmpty>(_json, "event_format", pod.eventFormat); - addToJson<IfNotEmpty>(_json, "presence", pod.presence); - addToJson<IfNotEmpty>(_json, "account_data", pod.accountData); - addToJson<IfNotEmpty>(_json, "room", pod.room); + addParam<IfNotEmpty>(_json, "event_fields", pod.eventFields); + addParam<IfNotEmpty>(_json, "event_format", pod.eventFormat); + addParam<IfNotEmpty>(_json, "presence", pod.presence); + addParam<IfNotEmpty>(_json, "account_data", pod.accountData); + addParam<IfNotEmpty>(_json, "room", pod.room); return _json; } |