bcfeef8004
Adds a webpack plugin to package interface as PROGMEM into a header file in the framework. Adds a build flag to optionally enable serving from PROGMEM or SPIFFS as required Adds documentation changes to describe changes
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#include <SecuritySettingsService.h>
|
|
|
|
SecuritySettingsService::SecuritySettingsService(AsyncWebServer* server, FS* fs) :
|
|
AdminSettingsService(server, fs, this, SECURITY_SETTINGS_PATH, SECURITY_SETTINGS_FILE),
|
|
SecurityManager() {
|
|
}
|
|
SecuritySettingsService::~SecuritySettingsService() {
|
|
}
|
|
|
|
void SecuritySettingsService::readFromJsonObject(JsonObject& root) {
|
|
// secret
|
|
_jwtHandler.setSecret(root["jwt_secret"] | DEFAULT_JWT_SECRET);
|
|
|
|
// users
|
|
_users.clear();
|
|
if (root["users"].is<JsonArray>()) {
|
|
for (JsonVariant user : root["users"].as<JsonArray>()) {
|
|
_users.push_back(User(user["username"], user["password"], user["admin"]));
|
|
}
|
|
} else {
|
|
_users.push_back(User(DEFAULT_ADMIN_USERNAME, DEFAULT_ADMIN_USERNAME, true));
|
|
_users.push_back(User(DEFAULT_GUEST_USERNAME, DEFAULT_GUEST_USERNAME, false));
|
|
}
|
|
}
|
|
|
|
void SecuritySettingsService::writeToJsonObject(JsonObject& root) {
|
|
// secret
|
|
root["jwt_secret"] = _jwtHandler.getSecret();
|
|
|
|
// users
|
|
JsonArray users = root.createNestedArray("users");
|
|
for (User _user : _users) {
|
|
JsonObject user = users.createNestedObject();
|
|
user["username"] = _user.getUsername();
|
|
user["password"] = _user.getPassword();
|
|
user["admin"] = _user.isAdmin();
|
|
}
|
|
}
|