@node-red/editor-api 2.1.4 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright JS Foundation and other contributors, http://js.foundation
1
+ Copyright OpenJS Foundation and other contributors, https://openjsf.org/
2
2
 
3
3
  Apache License
4
4
  Version 2.0, January 2004
@@ -146,7 +146,7 @@ function authenticateUserToken(req) {
146
146
  } else {
147
147
  reject();
148
148
  }
149
- });
149
+ }).catch(reject);
150
150
  } else {
151
151
  reject();
152
152
  }
@@ -163,6 +163,9 @@ TokensStrategy.prototype.authenticate = function(req) {
163
163
  authenticateUserToken(req).then(user => {
164
164
  this.success(user,{scope:user.permissions});
165
165
  }).catch(err => {
166
+ if (err) {
167
+ log.trace("token authentication failure: "+err.stack?err.stack:err)
168
+ }
166
169
  this.fail(401);
167
170
  });
168
171
  }
@@ -122,6 +122,7 @@ module.exports = {
122
122
  }
123
123
 
124
124
  if (req.body.active) {
125
+ opts.clearContext = req.body.hasOwnProperty('clearContext')?req.body.clearContext:true
125
126
  runtimeAPI.projects.setActiveProject(opts).then(function() {
126
127
  listProjects(req,res);
127
128
  }).catch(function(err) {
package/lib/index.js CHANGED
@@ -90,6 +90,8 @@ function init(settings,_server,storage,runtimeAPI) {
90
90
  auth.getToken,
91
91
  auth.errorHandler
92
92
  );
93
+ } else if (settings.adminAuth.tokens) {
94
+ adminApp.use(passport.initialize());
93
95
  }
94
96
  adminApp.post("/auth/revoke",auth.needsPermission(""),auth.revoke,apiUtil.errorHandler);
95
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-api",
3
- "version": "2.1.4",
3
+ "version": "2.2.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./lib/index.js",
6
6
  "repository": {
@@ -16,23 +16,23 @@
16
16
  }
17
17
  ],
18
18
  "dependencies": {
19
- "@node-red/util": "2.1.4",
20
- "@node-red/editor-client": "2.1.4",
19
+ "@node-red/util": "2.2.0",
20
+ "@node-red/editor-client": "2.2.0",
21
21
  "bcryptjs": "2.4.3",
22
- "body-parser": "1.19.0",
22
+ "body-parser": "1.19.1",
23
23
  "clone": "2.1.2",
24
24
  "cors": "2.8.5",
25
25
  "express-session": "1.17.2",
26
- "express": "4.17.1",
26
+ "express": "4.17.2",
27
27
  "memorystore": "1.6.6",
28
- "mime": "2.5.2",
29
- "multer": "1.4.3",
28
+ "mime": "3.0.0",
29
+ "multer": "1.4.4",
30
30
  "mustache": "4.2.0",
31
31
  "oauth2orize": "1.11.1",
32
32
  "passport-http-bearer": "1.0.1",
33
33
  "passport-oauth2-client-password": "0.1.2",
34
- "passport": "0.5.0",
35
- "ws": "7.5.1"
34
+ "passport": "0.5.2",
35
+ "ws": "7.5.6"
36
36
  },
37
37
  "optionalDependencies": {
38
38
  "bcrypt": "5.0.1"