2020-05-14 22:23:45 +00:00
|
|
|
#ifndef HttpEndpoint_h
|
|
|
|
#define HttpEndpoint_h
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include <AsyncJson.h>
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
|
|
|
|
#include <SecurityManager.h>
|
|
|
|
#include <StatefulService.h>
|
|
|
|
#include <JsonSerializer.h>
|
|
|
|
#include <JsonDeserializer.h>
|
|
|
|
|
|
|
|
#define HTTP_ENDPOINT_ORIGIN_ID "http"
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class HttpGetEndpoint {
|
|
|
|
public:
|
|
|
|
HttpGetEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
|
|
|
const String& servicePath,
|
|
|
|
SecurityManager* securityManager,
|
2020-05-22 18:26:12 +00:00
|
|
|
AuthenticationPredicate authenticationPredicate = AuthenticationPredicates::IS_ADMIN,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
|
|
|
_jsonSerializer(jsonSerializer), _statefulService(statefulService), _bufferSize(bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
server->on(servicePath.c_str(),
|
|
|
|
HTTP_GET,
|
|
|
|
securityManager->wrapRequest(std::bind(&HttpGetEndpoint::fetchSettings, this, std::placeholders::_1),
|
|
|
|
authenticationPredicate));
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpGetEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
2020-05-22 18:26:12 +00:00
|
|
|
const String& servicePath,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
|
|
|
_jsonSerializer(jsonSerializer), _statefulService(statefulService), _bufferSize(bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
server->on(servicePath.c_str(), HTTP_GET, std::bind(&HttpGetEndpoint::fetchSettings, this, std::placeholders::_1));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
JsonSerializer<T> _jsonSerializer;
|
|
|
|
StatefulService<T>* _statefulService;
|
2020-05-22 18:26:12 +00:00
|
|
|
size_t _bufferSize;
|
2020-05-14 22:23:45 +00:00
|
|
|
|
|
|
|
void fetchSettings(AsyncWebServerRequest* request) {
|
2020-05-22 18:26:12 +00:00
|
|
|
AsyncJsonResponse* response = new AsyncJsonResponse(false, _bufferSize);
|
2020-05-14 22:23:45 +00:00
|
|
|
JsonObject jsonObject = response->getRoot().to<JsonObject>();
|
|
|
|
_statefulService->read(jsonObject, _jsonSerializer);
|
|
|
|
|
|
|
|
response->setLength();
|
|
|
|
request->send(response);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class HttpPostEndpoint {
|
|
|
|
public:
|
|
|
|
HttpPostEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
JsonDeserializer<T> jsonDeserializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
|
|
|
const String& servicePath,
|
|
|
|
SecurityManager* securityManager,
|
2020-05-22 18:26:12 +00:00
|
|
|
AuthenticationPredicate authenticationPredicate = AuthenticationPredicates::IS_ADMIN,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
2020-05-14 22:23:45 +00:00
|
|
|
_jsonSerializer(jsonSerializer),
|
|
|
|
_jsonDeserializer(jsonDeserializer),
|
|
|
|
_statefulService(statefulService),
|
|
|
|
_updateHandler(
|
|
|
|
servicePath,
|
|
|
|
securityManager->wrapCallback(
|
|
|
|
std::bind(&HttpPostEndpoint::updateSettings, this, std::placeholders::_1, std::placeholders::_2),
|
2020-05-22 18:26:12 +00:00
|
|
|
authenticationPredicate),
|
|
|
|
bufferSize),
|
|
|
|
_bufferSize(bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
_updateHandler.setMethod(HTTP_POST);
|
|
|
|
server->addHandler(&_updateHandler);
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpPostEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
JsonDeserializer<T> jsonDeserializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
2020-05-22 18:26:12 +00:00
|
|
|
const String& servicePath,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
2020-05-14 22:23:45 +00:00
|
|
|
_jsonSerializer(jsonSerializer),
|
|
|
|
_jsonDeserializer(jsonDeserializer),
|
|
|
|
_statefulService(statefulService),
|
|
|
|
_updateHandler(servicePath,
|
2020-05-22 18:26:12 +00:00
|
|
|
std::bind(&HttpPostEndpoint::updateSettings, this, std::placeholders::_1, std::placeholders::_2),
|
|
|
|
bufferSize),
|
|
|
|
_bufferSize(bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
_updateHandler.setMethod(HTTP_POST);
|
|
|
|
server->addHandler(&_updateHandler);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
JsonSerializer<T> _jsonSerializer;
|
|
|
|
JsonDeserializer<T> _jsonDeserializer;
|
|
|
|
StatefulService<T>* _statefulService;
|
|
|
|
AsyncCallbackJsonWebHandler _updateHandler;
|
2020-05-22 18:26:12 +00:00
|
|
|
size_t _bufferSize;
|
2020-05-14 22:23:45 +00:00
|
|
|
|
|
|
|
void updateSettings(AsyncWebServerRequest* request, JsonVariant& json) {
|
|
|
|
if (json.is<JsonObject>()) {
|
2020-05-22 18:26:12 +00:00
|
|
|
AsyncJsonResponse* response = new AsyncJsonResponse(false, _bufferSize);
|
2020-05-14 22:23:45 +00:00
|
|
|
|
|
|
|
// use callback to update the settings once the response is complete
|
|
|
|
request->onDisconnect([this]() { _statefulService->callUpdateHandlers(HTTP_ENDPOINT_ORIGIN_ID); });
|
|
|
|
|
|
|
|
// update the settings, deferring the call to the update handlers to when the response is complete
|
|
|
|
_statefulService->updateWithoutPropagation([&](T& settings) {
|
|
|
|
JsonObject jsonObject = json.as<JsonObject>();
|
|
|
|
_jsonDeserializer(jsonObject, settings);
|
|
|
|
jsonObject = response->getRoot().to<JsonObject>();
|
|
|
|
_jsonSerializer(settings, jsonObject);
|
|
|
|
});
|
|
|
|
|
|
|
|
// write the response to the client
|
|
|
|
response->setLength();
|
|
|
|
request->send(response);
|
|
|
|
} else {
|
|
|
|
request->send(400);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class HttpEndpoint : public HttpGetEndpoint<T>, public HttpPostEndpoint<T> {
|
|
|
|
public:
|
|
|
|
HttpEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
JsonDeserializer<T> jsonDeserializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
|
|
|
const String& servicePath,
|
|
|
|
SecurityManager* securityManager,
|
2020-05-22 18:26:12 +00:00
|
|
|
AuthenticationPredicate authenticationPredicate = AuthenticationPredicates::IS_ADMIN,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
2020-05-14 22:23:45 +00:00
|
|
|
HttpGetEndpoint<T>(jsonSerializer,
|
|
|
|
statefulService,
|
|
|
|
server,
|
|
|
|
servicePath,
|
|
|
|
securityManager,
|
2020-05-22 18:26:12 +00:00
|
|
|
authenticationPredicate,
|
|
|
|
bufferSize),
|
2020-05-14 22:23:45 +00:00
|
|
|
HttpPostEndpoint<T>(jsonSerializer,
|
|
|
|
jsonDeserializer,
|
|
|
|
statefulService,
|
|
|
|
server,
|
|
|
|
servicePath,
|
|
|
|
securityManager,
|
2020-05-22 18:26:12 +00:00
|
|
|
authenticationPredicate,
|
|
|
|
bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HttpEndpoint(JsonSerializer<T> jsonSerializer,
|
|
|
|
JsonDeserializer<T> jsonDeserializer,
|
|
|
|
StatefulService<T>* statefulService,
|
|
|
|
AsyncWebServer* server,
|
2020-05-22 18:26:12 +00:00
|
|
|
const String& servicePath,
|
|
|
|
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
|
|
|
|
HttpGetEndpoint<T>(jsonSerializer, statefulService, server, servicePath, bufferSize),
|
|
|
|
HttpPostEndpoint<T>(jsonSerializer, jsonDeserializer, statefulService, server, servicePath, bufferSize) {
|
2020-05-14 22:23:45 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end HttpEndpoint
|