2016-03-21 11:56:33 +01:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const OAuthServer = require('express-oauth-server')
|
|
|
|
|
2016-07-20 16:23:58 +02:00
|
|
|
const constants = require('../initializers/constants')
|
2016-04-14 22:06:11 +02:00
|
|
|
const logger = require('../helpers/logger')
|
|
|
|
|
|
|
|
const oAuthServer = new OAuthServer({
|
2016-07-20 16:23:58 +02:00
|
|
|
accessTokenLifetime: constants.OAUTH_LIFETIME.ACCESS_TOKEN,
|
|
|
|
refreshTokenLifetime: constants.OAUTH_LIFETIME.REFRESH_TOKEN,
|
2016-07-01 16:03:53 +02:00
|
|
|
model: require('../lib/oauth-model')
|
2016-03-21 11:56:33 +01:00
|
|
|
})
|
|
|
|
|
2016-07-01 16:03:53 +02:00
|
|
|
const oAuth = {
|
2016-04-14 22:06:11 +02:00
|
|
|
authenticate: authenticate,
|
|
|
|
token: token
|
|
|
|
}
|
|
|
|
|
|
|
|
function authenticate (req, res, next) {
|
|
|
|
oAuthServer.authenticate()(req, res, function (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot authenticate.', { error: err })
|
|
|
|
return res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.statusCode === 401 || res.statusCode === 400) return res.end()
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function token (req, res, next) {
|
|
|
|
return oAuthServer.token()(req, res, next)
|
|
|
|
}
|
|
|
|
|
2016-03-21 11:56:33 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-07-01 16:03:53 +02:00
|
|
|
module.exports = oAuth
|