diff options
author | MinusGix <minusgix@gmail.com> | 2018-09-30 21:41:28 +0200 |
---|---|---|
committer | MinusGix <minusgix@gmail.com> | 2018-09-30 21:41:28 +0200 |
commit | e7724e24fd97015b58c89d23c4478a01b6851c9f (patch) | |
tree | ca9ebbee3dff1c271695412b3e800d8f25b49b10 /server/src/managers | |
parent | Made Admin password saved as a trip. (diff) | |
download | hackchat-e7724e24fd97015b58c89d23c4478a01b6851c9f.tar.gz hackchat-e7724e24fd97015b58c89d23c4478a01b6851c9f.zip |
Made admin pass stored as trip and handled by trip. Admin can now be an admin as long as they use the same password
Diffstat (limited to 'server/src/managers')
-rw-r--r-- | server/src/managers/config.js | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/server/src/managers/config.js b/server/src/managers/config.js index 26d4ba2..97961ce 100644 --- a/server/src/managers/config.js +++ b/server/src/managers/config.js @@ -50,6 +50,8 @@ class ConfigManager { * @param {Object} optionalConfigs optional (non-core) module config */ getQuestions (currentConfig, optionalConfigs) { + let salt = null; // this is so it can be accessed from adminTrip. + // core server setup questions const questions = { properties: { @@ -59,6 +61,10 @@ class ConfigManager { default: currentConfig.tripSalt, hidden: true, replace: '*', + before: value => { + salt = value; + return salt; + } }, adminName: { pattern: /^"?[a-zA-Z0-9_]+"?$/, @@ -68,13 +74,14 @@ class ConfigManager { default: currentConfig.adminName, before: value => value.replace(/"/g, '') }, - adminPass: { + adminTrip: { type: 'string', - required: !currentConfig.adminPass, - default: currentConfig.adminPass, + required: !currentConfig.adminTrip, + default: currentConfig.adminTrip, hidden: true, replace: '*', - before: value => hash(value) + description: 'adminPass', + before: value => hash(value + salt) }, websocketPort: { type: 'number', |