Resolve some typos

Use nullptr over NULL
Fix confusing regexp
Fix issue with non-compliant JWT encoding
This commit is contained in:
Rick Watson 2019-06-02 23:15:56 +01:00
parent 5d9ccd3095
commit 9c680e8826
11 changed files with 134 additions and 136 deletions

View File

@ -65,7 +65,7 @@ class APSettingsForm extends React.Component {
isAPEnabled(apSettings.provision_mode) && isAPEnabled(apSettings.provision_mode) &&
<Fragment> <Fragment>
<TextValidator <TextValidator
validators={['required', 'matchRegexp:^.{0,32}$']} validators={['required', 'matchRegexp:^.{1,32}$']}
errorMessages={['Access Point SSID is required', 'Access Point SSID must be 32 characeters or less']} errorMessages={['Access Point SSID is required', 'Access Point SSID must be 32 characeters or less']}
name="ssid" name="ssid"
label="Access Point SSID" label="Access Point SSID"
@ -75,7 +75,7 @@ class APSettingsForm extends React.Component {
margin="normal" margin="normal"
/> />
<PasswordValidator <PasswordValidator
validators={['required', 'matchRegexp:^.{0,64}$']} validators={['required', 'matchRegexp:^.{1,64}$']}
errorMessages={['Access Point Password is required', 'Access Point Password must be 64 characters or less']} errorMessages={['Access Point Password is required', 'Access Point Password must be 64 characters or less']}
name="password" name="password"
label="Access Point Password" label="Access Point Password"

View File

@ -85,7 +85,7 @@ class OTASettingsForm extends React.Component {
/> />
<PasswordValidator <PasswordValidator
validators={['required', 'matchRegexp:^.{0,64}$']} validators={['required', 'matchRegexp:^.{1,64}$']}
errorMessages={['OTA Password is required', 'OTA Point Password must be 64 characters or less']} errorMessages={['OTA Password is required', 'OTA Point Password must be 64 characters or less']}
name="password" name="password"
label="Password" label="Password"

View File

@ -49,7 +49,7 @@ class SecuritySettingsForm extends React.Component {
securitySettings ? securitySettings ?
<ValidatorForm onSubmit={this.onSubmit} ref="SecuritySettingsForm"> <ValidatorForm onSubmit={this.onSubmit} ref="SecuritySettingsForm">
<PasswordValidator <PasswordValidator
validators={['required', 'matchRegexp:^.{0,64}$']} validators={['required', 'matchRegexp:^.{1,64}$']}
errorMessages={['JWT Secret Required', 'JWT Secret must be 64 characters or less']} errorMessages={['JWT Secret Required', 'JWT Secret must be 64 characters or less']}
name="jwt_secret" name="jwt_secret"
label="JWT Secret" label="JWT Secret"

View File

@ -48,7 +48,7 @@ class UserForm extends React.Component {
<DialogContent dividers={true}> <DialogContent dividers={true}>
<TextValidator <TextValidator
validators={creating ? ['required', 'uniqueUsername', 'matchRegexp:^[a-zA-Z0-9_\\.]{1,24}$'] : []} validators={creating ? ['required', 'uniqueUsername', 'matchRegexp:^[a-zA-Z0-9_\\.]{1,24}$'] : []}
errorMessages={creating ? ['Username is required', "Username already exists", "Must be 1-24 characters: alpha numberic, '_' or '.'"] : []} errorMessages={creating ? ['Username is required', "Username already exists", "Must be 1-24 characters: alpha numeric, '_' or '.'"] : []}
name="username" name="username"
label="Username" label="Username"
className={classes.textField} className={classes.textField}
@ -58,7 +58,7 @@ class UserForm extends React.Component {
margin="normal" margin="normal"
/> />
<PasswordValidator <PasswordValidator
validators={['required', 'matchRegexp:^.{0,64}$']} validators={['required', 'matchRegexp:^.{1,64}$']}
errorMessages={['Password is required', 'Password must be 64 characters or less']} errorMessages={['Password is required', 'Password must be 64 characters or less']}
name="password" name="password"
label="Password" label="Password"

View File

@ -99,7 +99,7 @@ class WiFiSettingsForm extends React.Component {
{ {
selectedNetwork ? this.renderSelectedNetwork() : selectedNetwork ? this.renderSelectedNetwork() :
<TextValidator <TextValidator
validators={['required', 'matchRegexp:^.{0,32}$']} validators={['required', 'matchRegexp:^.{1,32}$']}
errorMessages={['SSID is required', 'SSID must be 32 characeters or less']} errorMessages={['SSID is required', 'SSID must be 32 characeters or less']}
name="ssid" name="ssid"
label="SSID" label="SSID"

View File

@ -46,7 +46,7 @@ void APSettingsService::stopAP() {
Serial.println("Stopping captive portal"); Serial.println("Stopping captive portal");
_dnsServer->stop(); _dnsServer->stop();
delete _dnsServer; delete _dnsServer;
_dnsServer = NULL; _dnsServer = nullptr;
} }
Serial.println("Stopping software access point"); Serial.println("Stopping software access point");
WiFi.softAPdisconnect(true); WiFi.softAPdisconnect(true);

View File

@ -69,14 +69,14 @@ void ArduinoJsonJWT::parseJWT(String jwt, JsonDocument &jsonDocument) {
return; return;
} }
// must have signature of correct length // must have signature of correct length
int signatureDelimieterIndex = jwt.length() - JWT_SIG_SIZE - 1; int signatureDelimiterIndex = jwt.length() - JWT_SIG_SIZE - 1;
if (jwt.lastIndexOf('.') != signatureDelimieterIndex) { if (jwt.lastIndexOf('.') != signatureDelimiterIndex) {
return; return;
} }
// signature must be correct // signature must be correct
String signature = jwt.substring(signatureDelimieterIndex + 1); String signature = jwt.substring(signatureDelimiterIndex + 1);
jwt = jwt.substring(0, signatureDelimieterIndex); jwt = jwt.substring(0, signatureDelimiterIndex);
if (sign(jwt) != signature){ if (sign(jwt) != signature){
return; return;
} }
@ -115,7 +115,7 @@ String ArduinoJsonJWT::encode(const char *cstr, int inputLen) {
String value = String(buffer); String value = String(buffer);
// remove padding and convert to URL safe form // remove padding and convert to URL safe form
while (value.charAt(value.length() - 1) == '='){ while (value.length() > 0 && value.charAt(value.length() - 1) == '='){
value.remove(value.length() - 1); value.remove(value.length() - 1);
} }
value.replace('+', '-'); value.replace('+', '-');

View File

@ -109,7 +109,7 @@ public:
} }
virtual void handleRequest(AsyncWebServerRequest *request) override final { virtual void handleRequest(AsyncWebServerRequest *request) override final {
if(_onRequest) { if(_onRequest) {
if (request->_tempObject != NULL) { if (request->_tempObject != nullptr) {
DynamicJsonDocument _jsonDocument(_maxContentLength); DynamicJsonDocument _jsonDocument(_maxContentLength);
DeserializationError err = deserializeJson(_jsonDocument, (uint8_t*)(request->_tempObject)); DeserializationError err = deserializeJson(_jsonDocument, (uint8_t*)(request->_tempObject));
if (err == DeserializationError::Ok) { if (err == DeserializationError::Ok) {
@ -127,10 +127,10 @@ public:
virtual void handleBody(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) override final { virtual void handleBody(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) override final {
if (_onRequest) { if (_onRequest) {
_contentLength = total; _contentLength = total;
if (total > 0 && request->_tempObject == NULL && total < _maxContentLength) { if (total > 0 && request->_tempObject == nullptr && total < _maxContentLength) {
request->_tempObject = malloc(total); request->_tempObject = malloc(total);
} }
if (request->_tempObject != NULL) { if (request->_tempObject != nullptr) {
memcpy((uint8_t*)(request->_tempObject) + index, data, len); memcpy((uint8_t*)(request->_tempObject) + index, data, len);
} }
} }

View File

@ -31,7 +31,7 @@ class AsyncJsonWebHandler: public AsyncWebHandler {
AsyncJsonWebHandler() : AsyncJsonWebHandler() :
_method(HTTP_POST|HTTP_PUT|HTTP_PATCH), _method(HTTP_POST|HTTP_PUT|HTTP_PATCH),
_onRequest(NULL), _onRequest(nullptr),
_maxContentLength(ASYNC_JSON_REQUEST_DEFAULT_MAX_SIZE), _maxContentLength(ASYNC_JSON_REQUEST_DEFAULT_MAX_SIZE),
_uri() {} _uri() {}

View File

@ -40,7 +40,7 @@ void OTASettingsService::writeToJsonObject(JsonObject& root) {
void OTASettingsService::configureArduinoOTA() { void OTASettingsService::configureArduinoOTA() {
if (_arduinoOTA){ if (_arduinoOTA){
delete _arduinoOTA; delete _arduinoOTA;
_arduinoOTA = NULL; _arduinoOTA = nullptr;
} }
if (_enabled) { if (_enabled) {
Serial.println("Starting OTA Update Service"); Serial.println("Starting OTA Update Service");

View File

@ -37,12 +37,10 @@ class Authentication {
boolean _authenticated; boolean _authenticated;
public: public:
Authentication(User& user): _user(new User(user)), _authenticated(true) {} Authentication(User& user): _user(new User(user)), _authenticated(true) {}
Authentication() : _user(NULL), _authenticated(false) {} Authentication() : _user(nullptr), _authenticated(false) {}
~Authentication() { ~Authentication() {
if (_user != NULL){
delete(_user); delete(_user);
} }
}
User* getUser() { User* getUser() {
return _user; return _user;
} }