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-11-12 14:21:39 +01:00
|
|
|
var tokens = require("./tokens");
|
2014-11-06 23:59:48 +01:00
|
|
|
|
|
|
|
var settings = require("../../settings");
|
|
|
|
|
|
|
|
passport.use(strategies.bearerStrategy.BearerStrategy);
|
|
|
|
passport.use(strategies.clientPasswordStrategy.ClientPasswordStrategy);
|
|
|
|
|
|
|
|
var server = oauth2orize.createServer();
|
|
|
|
|
|
|
|
server.exchange(oauth2orize.exchange.password(strategies.passwordTokenExchange));
|
|
|
|
|
|
|
|
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 {
|
|
|
|
return passport.authenticate('bearer', { session: false })(req,res,next);
|
|
|
|
}
|
|
|
|
} 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;
|
|
|
|
tokens.revoke(token).then(function() {
|
|
|
|
res.send(200);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-11-06 23:59:48 +01:00
|
|
|
module.exports = {
|
|
|
|
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
|
|
|
}
|