a1f4e57a21
* Update back end to add MQTT and WebSocket support * Update demo project to demonstrate MQTT and WebSockets * Update documentation to describe newly added and modified functionallity * Introduce separate MQTT pub/sub, HTTP get/post and WebSocket rx/tx classes * Significant reanaming - more accurate class names * Use PROGMEM_WWW as default * Update README documenting PROGMEM_WWW as default * Update README with API changes
26 lines
690 B
C++
26 lines
690 B
C++
#ifndef AuthenticationService_H_
|
|
#define AuthenticationService_H_
|
|
|
|
#include <AsyncJson.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <SecurityManager.h>
|
|
|
|
#define VERIFY_AUTHORIZATION_PATH "/rest/verifyAuthorization"
|
|
#define SIGN_IN_PATH "/rest/signIn"
|
|
|
|
#define MAX_AUTHENTICATION_SIZE 256
|
|
|
|
class AuthenticationService {
|
|
public:
|
|
AuthenticationService(AsyncWebServer* server, SecurityManager* securityManager);
|
|
|
|
private:
|
|
SecurityManager* _securityManager;
|
|
AsyncCallbackJsonWebHandler _signInHandler;
|
|
|
|
// endpoint functions
|
|
void signIn(AsyncWebServerRequest* request, JsonVariant& json);
|
|
void verifyAuthorization(AsyncWebServerRequest* request);
|
|
};
|
|
|
|
#endif // end SecurityManager_h
|