135 lines
3.9 KiB
C++
135 lines
3.9 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2022-2023 Thomas Basler and others
|
|
*/
|
|
#include "WebApi_power.h"
|
|
#include "WebApi.h"
|
|
#include "WebApi_errors.h"
|
|
#include <AsyncJson.h>
|
|
#include <Hoymiles.h>
|
|
|
|
void WebApiPowerClass::init(AsyncWebServer& server)
|
|
{
|
|
using std::placeholders::_1;
|
|
|
|
_server = &server;
|
|
|
|
_server->on("/api/power/status", HTTP_GET, std::bind(&WebApiPowerClass::onPowerStatus, this, _1));
|
|
_server->on("/api/power/config", HTTP_POST, std::bind(&WebApiPowerClass::onPowerPost, this, _1));
|
|
}
|
|
|
|
void WebApiPowerClass::loop()
|
|
{
|
|
}
|
|
|
|
void WebApiPowerClass::onPowerStatus(AsyncWebServerRequest* request)
|
|
{
|
|
if (!WebApi.checkCredentialsReadonly(request)) {
|
|
return;
|
|
}
|
|
|
|
AsyncJsonResponse* response = new AsyncJsonResponse();
|
|
auto& root = response->getRoot();
|
|
|
|
for (uint8_t i = 0; i < Hoymiles.getNumInverters(); i++) {
|
|
auto inv = Hoymiles.getInverterByPos(i);
|
|
|
|
LastCommandSuccess status = inv->PowerCommand()->getLastPowerCommandSuccess();
|
|
String limitStatus = "Unknown";
|
|
if (status == LastCommandSuccess::CMD_OK) {
|
|
limitStatus = "Ok";
|
|
} else if (status == LastCommandSuccess::CMD_NOK) {
|
|
limitStatus = "Failure";
|
|
} else if (status == LastCommandSuccess::CMD_PENDING) {
|
|
limitStatus = "Pending";
|
|
}
|
|
root[inv->serialString()]["power_set_status"] = limitStatus;
|
|
}
|
|
|
|
response->setLength();
|
|
request->send(response);
|
|
}
|
|
|
|
void WebApiPowerClass::onPowerPost(AsyncWebServerRequest* request)
|
|
{
|
|
if (!WebApi.checkCredentials(request)) {
|
|
return;
|
|
}
|
|
|
|
AsyncJsonResponse* response = new AsyncJsonResponse();
|
|
auto& retMsg = response->getRoot();
|
|
retMsg["type"] = "warning";
|
|
|
|
if (!request->hasParam("data", true)) {
|
|
retMsg["message"] = "No values found!";
|
|
retMsg["code"] = WebApiError::GenericNoValueFound;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
const String json = request->getParam("data", true)->value();
|
|
|
|
if (json.length() > 1024) {
|
|
retMsg["message"] = "Data too large!";
|
|
retMsg["code"] = WebApiError::GenericDataTooLarge;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
DynamicJsonDocument root(1024);
|
|
const DeserializationError error = deserializeJson(root, json);
|
|
|
|
if (error) {
|
|
retMsg["message"] = "Failed to parse data!";
|
|
retMsg["code"] = WebApiError::GenericParseError;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
if (!(root.containsKey("serial")
|
|
&& (root.containsKey("power")
|
|
|| root.containsKey("restart")))) {
|
|
retMsg["message"] = "Values are missing!";
|
|
retMsg["code"] = WebApiError::GenericValueMissing;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
if (root["serial"].as<uint64_t>() == 0) {
|
|
retMsg["message"] = "Serial must be a number > 0!";
|
|
retMsg["code"] = WebApiError::PowerSerialZero;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
uint64_t serial = strtoll(root["serial"].as<String>().c_str(), NULL, 16);
|
|
auto inv = Hoymiles.getInverterBySerial(serial);
|
|
if (inv == nullptr) {
|
|
retMsg["message"] = "Invalid inverter specified!";
|
|
retMsg["code"] = WebApiError::PowerInvalidInverter;
|
|
response->setLength();
|
|
request->send(response);
|
|
return;
|
|
}
|
|
|
|
if (root.containsKey("power")) {
|
|
uint16_t power = root["power"].as<bool>();
|
|
inv->sendPowerControlRequest(power);
|
|
} else {
|
|
if (root["restart"].as<bool>()) {
|
|
inv->sendRestartControlRequest();
|
|
}
|
|
}
|
|
|
|
retMsg["type"] = "success";
|
|
retMsg["message"] = "Settings saved!";
|
|
retMsg["code"] = WebApiError::GenericSuccess;
|
|
|
|
response->setLength();
|
|
request->send(response);
|
|
} |