Skip to content

Commit 97f95f8

Browse files
committed
avoid deprecated containsKey() method of ArduinoJson 7.2.0
1 parent 38726b9 commit 97f95f8

5 files changed

+19
-19
lines changed

src/WebApi_Huawei.cpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void WebApiHuaweiClass::onPost(AsyncWebServerRequest* request)
8383

8484
auto& retMsg = response->getRoot();
8585

86-
if (root.containsKey("online")) {
86+
if (root["online"].is<bool>()) {
8787
online = root["online"].as<bool>();
8888
if (online) {
8989
minimal_voltage = HUAWEI_MINIMAL_ONLINE_VOLTAGE;
@@ -98,7 +98,7 @@ void WebApiHuaweiClass::onPost(AsyncWebServerRequest* request)
9898
return;
9999
}
100100

101-
if (root.containsKey("voltage_valid")) {
101+
if (root["voltage_valid"].is<bool>()) {
102102
if (root["voltage_valid"].as<bool>()) {
103103
if (root["voltage"].as<float>() < minimal_voltage || root["voltage"].as<float>() > 58) {
104104
retMsg["message"] = "voltage not in range between 42 (online)/48 (offline and 58V !";
@@ -119,7 +119,7 @@ void WebApiHuaweiClass::onPost(AsyncWebServerRequest* request)
119119
}
120120
}
121121

122-
if (root.containsKey("current_valid")) {
122+
if (root["current_valid"].is<bool>()) {
123123
if (root["current_valid"].as<bool>()) {
124124
if (root["current"].as<float>() < 0 || root["current"].as<float>() > 60) {
125125
retMsg["message"] = "current must be in range between 0 and 60!";
@@ -186,13 +186,13 @@ void WebApiHuaweiClass::onAdminPost(AsyncWebServerRequest* request)
186186

187187
auto& retMsg = response->getRoot();
188188

189-
if (!(root.containsKey("enabled")) ||
190-
!(root.containsKey("can_controller_frequency")) ||
191-
!(root.containsKey("auto_power_enabled")) ||
192-
!(root.containsKey("emergency_charge_enabled")) ||
193-
!(root.containsKey("voltage_limit")) ||
194-
!(root.containsKey("lower_power_limit")) ||
195-
!(root.containsKey("upper_power_limit"))) {
189+
if (!(root["enabled"].is<bool>()) ||
190+
!(root["can_controller_frequency"].is<uint32_t>()) ||
191+
!(root["auto_power_enabled"].is<bool>()) ||
192+
!(root["emergency_charge_enabled"].is<bool>()) ||
193+
!(root["voltage_limit"].is<float>()) ||
194+
!(root["lower_power_limit"].is<float>()) ||
195+
!(root["upper_power_limit"].is<float>())) {
196196
retMsg["message"] = "Values are missing!";
197197
retMsg["code"] = WebApiError::GenericValueMissing;
198198
response->setLength();

src/WebApi_battery.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void WebApiBatteryClass::onAdminPost(AsyncWebServerRequest* request)
6363

6464
auto& retMsg = response->getRoot();
6565

66-
if (!root.containsKey("enabled") || !root.containsKey("provider")) {
66+
if (!root["enabled"].is<bool>() || !root["provider"].is<uint8_t>()) {
6767
retMsg["message"] = "Values are missing!";
6868
retMsg["code"] = WebApiError::GenericValueMissing;
6969
WebApi.sendJsonResponse(request, response, __FUNCTION__, __LINE__);

src/WebApi_powerlimiter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void WebApiPowerLimiterClass::onAdminPost(AsyncWebServerRequest* request)
137137
// anyways to always include the keys accessed below. if we wanted to
138138
// support a simpler API, like only sending the "enabled" key which only
139139
// changes that key, we need to refactor all of the code below.
140-
if (!root.containsKey("enabled")) {
140+
if (!root["enabled"].is<bool>()) {
141141
retMsg["message"] = "Values are missing!";
142142
retMsg["code"] = WebApiError::GenericValueMissing;
143143
response->setLength();

src/WebApi_powermeter.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ void WebApiPowerMeterClass::onAdminPost(AsyncWebServerRequest* request)
8282

8383
auto& retMsg = response->getRoot();
8484

85-
if (!(root.containsKey("enabled") && root.containsKey("source"))) {
85+
if (!(root["enabled"].is<bool>() && root["source"].is<uint32_t>())) {
8686
retMsg["message"] = "Values are missing!";
8787
response->setLength();
8888
request->send(response);
8989
return;
9090
}
9191

9292
auto checkHttpConfig = [&](JsonObject const& cfg) -> bool {
93-
if (!cfg.containsKey("url")
93+
if (!cfg["url"].is<String>()
9494
|| (!cfg["url"].as<String>().startsWith("http://")
9595
&& !cfg["url"].as<String>().startsWith("https://"))) {
9696
retMsg["message"] = "URL must either start with http:// or https://!";
@@ -107,7 +107,7 @@ void WebApiPowerMeterClass::onAdminPost(AsyncWebServerRequest* request)
107107
return false;
108108
}
109109

110-
if (!cfg.containsKey("timeout")
110+
if (!cfg["timeout"].is<uint16_t>()
111111
|| cfg["timeout"].as<uint16_t>() <= 0) {
112112
retMsg["message"] = "Timeout must be greater than 0 ms!";
113113
response->setLength();
@@ -134,7 +134,7 @@ void WebApiPowerMeterClass::onAdminPost(AsyncWebServerRequest* request)
134134
}
135135
}
136136

137-
if (!valueConfig.containsKey("json_path")
137+
if (!valueConfig["json_path"].is<String>()
138138
|| valueConfig["json_path"].as<String>().length() == 0) {
139139
retMsg["message"] = "Json path must not be empty!";
140140
response->setLength();

src/WebApi_vedirect.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ void WebApiVedirectClass::onVedirectAdminPost(AsyncWebServerRequest* request)
7373

7474
auto& retMsg = response->getRoot();
7575

76-
if (!root.containsKey("vedirect_enabled") ||
77-
!root.containsKey("verbose_logging") ||
78-
!root.containsKey("vedirect_updatesonly") ) {
76+
if (!root["vedirect_enabled"].is<bool>() ||
77+
!root["verbose_logging"].is<bool>() ||
78+
!root["vedirect_updatesonly"].is<bool>() ) {
7979
retMsg["message"] = "Values are missing!";
8080
retMsg["code"] = WebApiError::GenericValueMissing;
8181
response->setLength();

0 commit comments

Comments
 (0)