node-red/red/api/auth/index.js

88 lines
2.4 KiB
JavaScript
Raw Normal View History

2014-11-06 23:59:48 +01:00
/**
* Copyright 2014 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
var passport = require("passport");
var oauth2orize = require("oauth2orize");
var strategies = require("./strategies");
2014-12-10 15:16:07 +01:00
var Tokens = require("./tokens");
var Users = require("./users");
2014-11-06 23:59:48 +01:00
var settings = require("../../settings");
passport.use(strategies.bearerStrategy.BearerStrategy);
passport.use(strategies.clientPasswordStrategy.ClientPasswordStrategy);
2014-12-10 15:16:07 +01:00
passport.use(strategies.anonymousStrategy);
2014-11-06 23:59:48 +01:00
var server = oauth2orize.createServer();
server.exchange(oauth2orize.exchange.password(strategies.passwordTokenExchange));
2014-12-10 15:16:07 +01:00
function init() {
Users.init();
}
2014-11-06 23:59:48 +01:00
function authenticate(req,res,next) {
2014-11-12 21:58:48 +01:00
if (settings.adminAuth) {
2014-11-06 23:59:48 +01:00
if (/^\/auth\/.*/.test(req.originalUrl)) {
next();
} else {
2014-12-10 15:16:07 +01:00
return passport.authenticate(['bearer','anon'], { session: false })(req,res,next);
2014-11-06 23:59:48 +01:00
}
} else {
next();
}
}
function ensureClientSecret(req,res,next) {
if (!req.body.client_secret) {
req.body.client_secret = 'not_available';
}
next();
}
function authenticateClient(req,res,next) {
return passport.authenticate(['oauth2-client-password'], {session: false})(req,res,next);
}
function getToken(req,res,next) {
return server.token()(req,res,next);
}
2014-11-11 11:15:02 +01:00
function login(req,res) {
var response = {
"type":"credentials",
"prompts":[{id:"username",type:"text",label:"Username"},{id:"password",type:"password",label:"Password"}]
}
res.json(response);
}
2014-11-06 23:59:48 +01:00
2014-11-12 14:21:39 +01:00
function revoke(req,res) {
var token = req.body.token;
2014-12-10 15:16:07 +01:00
Tokens.revoke(token).then(function() {
2014-11-12 14:21:39 +01:00
res.send(200);
});
}
2014-11-06 23:59:48 +01:00
module.exports = {
2014-12-10 15:16:07 +01:00
init: init,
2014-11-06 23:59:48 +01:00
authenticate: authenticate,
ensureClientSecret: ensureClientSecret,
authenticateClient: authenticateClient,
getToken: getToken,
2014-11-11 11:15:02 +01:00
errorHandler: server.errorHandler(),
2014-11-12 14:21:39 +01:00
login: login,
revoke: revoke
2014-11-06 23:59:48 +01:00
}