2019-05-18 18:35:27 +00:00
|
|
|
#ifndef AuthenticationService_H_
|
|
|
|
#define AuthenticationService_H_
|
|
|
|
|
|
|
|
#include <SecurityManager.h>
|
2019-05-29 22:48:16 +00:00
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
#include <AsyncJsonWebHandler.h>
|
2019-11-30 09:58:28 +00:00
|
|
|
#include <AsyncJson.h>
|
2019-05-18 18:35:27 +00:00
|
|
|
|
|
|
|
#define VERIFY_AUTHORIZATION_PATH "/rest/verifyAuthorization"
|
|
|
|
#define SIGN_IN_PATH "/rest/signIn"
|
|
|
|
|
|
|
|
#define MAX_AUTHENTICATION_SIZE 256
|
|
|
|
|
|
|
|
class AuthenticationService {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2019-09-28 20:29:46 +00:00
|
|
|
AuthenticationService(AsyncWebServer* server, SecurityManager* securityManager);
|
2019-05-18 18:35:27 +00:00
|
|
|
~AuthenticationService();
|
|
|
|
|
|
|
|
private:
|
2019-09-28 20:29:46 +00:00
|
|
|
|
2019-05-18 18:35:27 +00:00
|
|
|
SecurityManager* _securityManager;
|
|
|
|
AsyncJsonWebHandler _signInHandler;
|
|
|
|
|
|
|
|
// endpoint functions
|
|
|
|
void signIn(AsyncWebServerRequest *request, JsonDocument &jsonDocument);
|
|
|
|
void verifyAuthorization(AsyncWebServerRequest *request);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end SecurityManager_h
|