2019-05-29 22:48:16 +00:00
|
|
|
#ifndef SecuritySettingsService_h
|
|
|
|
#define SecuritySettingsService_h
|
|
|
|
|
2020-06-09 20:57:44 +00:00
|
|
|
#include <Features.h>
|
2019-05-29 22:48:16 +00:00
|
|
|
#include <SecurityManager.h>
|
2020-05-14 22:23:45 +00:00
|
|
|
#include <HttpEndpoint.h>
|
|
|
|
#include <FSPersistence.h>
|
2019-05-29 22:48:16 +00:00
|
|
|
|
2020-05-19 23:32:49 +00:00
|
|
|
#ifndef FACTORY_ADMIN_USERNAME
|
|
|
|
#define FACTORY_ADMIN_USERNAME "admin"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_ADMIN_PASSWORD
|
|
|
|
#define FACTORY_ADMIN_PASSWORD "admin"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_GUEST_USERNAME
|
|
|
|
#define FACTORY_GUEST_USERNAME "guest"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_GUEST_PASSWORD
|
|
|
|
#define FACTORY_GUEST_PASSWORD "guest"
|
|
|
|
#endif
|
2019-12-29 17:54:12 +00:00
|
|
|
|
2019-05-29 22:48:16 +00:00
|
|
|
#define SECURITY_SETTINGS_FILE "/config/securitySettings.json"
|
|
|
|
#define SECURITY_SETTINGS_PATH "/rest/securitySettings"
|
|
|
|
|
2020-06-09 20:57:44 +00:00
|
|
|
#if FT_ENABLED(FT_SECURITY)
|
|
|
|
|
2020-02-01 08:44:26 +00:00
|
|
|
class SecuritySettings {
|
|
|
|
public:
|
|
|
|
String jwtSecret;
|
|
|
|
std::list<User> users;
|
2020-05-14 22:23:45 +00:00
|
|
|
|
2020-05-29 19:18:43 +00:00
|
|
|
static void read(SecuritySettings& settings, JsonObject& root) {
|
2020-05-14 22:23:45 +00:00
|
|
|
// secret
|
|
|
|
root["jwt_secret"] = settings.jwtSecret;
|
|
|
|
|
|
|
|
// users
|
|
|
|
JsonArray users = root.createNestedArray("users");
|
|
|
|
for (User user : settings.users) {
|
|
|
|
JsonObject userRoot = users.createNestedObject();
|
|
|
|
userRoot["username"] = user.username;
|
|
|
|
userRoot["password"] = user.password;
|
|
|
|
userRoot["admin"] = user.admin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:18:43 +00:00
|
|
|
static StateUpdateResult update(JsonObject& root, SecuritySettings& settings) {
|
2020-05-14 22:23:45 +00:00
|
|
|
// secret
|
2020-05-19 23:32:49 +00:00
|
|
|
settings.jwtSecret = root["jwt_secret"] | FACTORY_JWT_SECRET;
|
2020-05-14 22:23:45 +00:00
|
|
|
|
|
|
|
// users
|
|
|
|
settings.users.clear();
|
|
|
|
if (root["users"].is<JsonArray>()) {
|
|
|
|
for (JsonVariant user : root["users"].as<JsonArray>()) {
|
|
|
|
settings.users.push_back(User(user["username"], user["password"], user["admin"]));
|
|
|
|
}
|
|
|
|
} else {
|
2020-05-19 23:32:49 +00:00
|
|
|
settings.users.push_back(User(FACTORY_ADMIN_USERNAME, FACTORY_ADMIN_PASSWORD, true));
|
|
|
|
settings.users.push_back(User(FACTORY_GUEST_USERNAME, FACTORY_GUEST_PASSWORD, false));
|
2020-05-14 22:23:45 +00:00
|
|
|
}
|
2020-05-29 19:18:43 +00:00
|
|
|
return StateUpdateResult::CHANGED;
|
2020-05-14 22:23:45 +00:00
|
|
|
}
|
2020-02-01 08:44:26 +00:00
|
|
|
};
|
|
|
|
|
2020-05-14 22:23:45 +00:00
|
|
|
class SecuritySettingsService : public StatefulService<SecuritySettings>, public SecurityManager {
|
2019-12-03 23:16:06 +00:00
|
|
|
public:
|
|
|
|
SecuritySettingsService(AsyncWebServer* server, FS* fs);
|
2020-05-14 22:23:45 +00:00
|
|
|
|
|
|
|
void begin();
|
2019-05-29 22:48:16 +00:00
|
|
|
|
2020-02-01 08:44:26 +00:00
|
|
|
// Functions to implement SecurityManager
|
2020-05-21 07:42:21 +00:00
|
|
|
Authentication authenticate(const String& username, const String& password);
|
2020-02-01 08:44:26 +00:00
|
|
|
Authentication authenticateRequest(AsyncWebServerRequest* request);
|
|
|
|
String generateJWT(User* user);
|
2020-05-14 22:23:45 +00:00
|
|
|
ArRequestFilterFunction filterRequest(AuthenticationPredicate predicate);
|
2020-02-01 08:44:26 +00:00
|
|
|
ArRequestHandlerFunction wrapRequest(ArRequestHandlerFunction onRequest, AuthenticationPredicate predicate);
|
2020-05-14 22:23:45 +00:00
|
|
|
ArJsonRequestHandlerFunction wrapCallback(ArJsonRequestHandlerFunction callback, AuthenticationPredicate predicate);
|
2020-02-01 08:44:26 +00:00
|
|
|
|
|
|
|
private:
|
2020-05-14 22:23:45 +00:00
|
|
|
HttpEndpoint<SecuritySettings> _httpEndpoint;
|
|
|
|
FSPersistence<SecuritySettings> _fsPersistence;
|
2020-05-21 22:41:29 +00:00
|
|
|
ArduinoJsonJWT _jwtHandler;
|
2020-02-01 08:44:26 +00:00
|
|
|
|
2020-05-14 22:23:45 +00:00
|
|
|
void configureJWTHandler();
|
|
|
|
|
2020-02-01 08:44:26 +00:00
|
|
|
/*
|
|
|
|
* Lookup the user by JWT
|
|
|
|
*/
|
2020-05-14 22:23:45 +00:00
|
|
|
Authentication authenticateJWT(String& jwt);
|
2020-02-01 08:44:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Verify the payload is correct
|
|
|
|
*/
|
|
|
|
boolean validatePayload(JsonObject& parsedPayload, User* user);
|
2019-05-29 22:48:16 +00:00
|
|
|
};
|
|
|
|
|
2020-06-09 20:57:44 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
class SecuritySettingsService : public SecurityManager {
|
|
|
|
public:
|
|
|
|
SecuritySettingsService(AsyncWebServer* server, FS* fs);
|
|
|
|
~SecuritySettingsService();
|
|
|
|
|
|
|
|
// minimal set of functions to support framework with security settings disabled
|
|
|
|
Authentication authenticateRequest(AsyncWebServerRequest* request);
|
|
|
|
ArRequestFilterFunction filterRequest(AuthenticationPredicate predicate);
|
|
|
|
ArRequestHandlerFunction wrapRequest(ArRequestHandlerFunction onRequest, AuthenticationPredicate predicate);
|
|
|
|
ArJsonRequestHandlerFunction wrapCallback(ArJsonRequestHandlerFunction onRequest, AuthenticationPredicate predicate);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end FT_ENABLED(FT_SECURITY)
|
|
|
|
#endif // end SecuritySettingsService_h
|