2016-03-21 05:56:33 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-04-27 15:11:48 -05:00
|
|
|
const config = require('config')
|
2016-07-01 09:03:53 -05:00
|
|
|
const mongoose = require('mongoose')
|
2016-04-14 15:06:11 -05:00
|
|
|
const express = require('express')
|
2016-07-01 09:16:40 -05:00
|
|
|
|
2016-07-01 09:03:53 -05:00
|
|
|
const oAuth = require('../../../middlewares').oauth
|
2016-03-21 05:56:33 -05:00
|
|
|
|
2016-07-01 09:03:53 -05:00
|
|
|
const Client = mongoose.model('OAuthClient')
|
2016-03-21 05:56:33 -05:00
|
|
|
|
|
|
|
const router = express.Router()
|
|
|
|
|
2016-05-13 09:13:00 -05:00
|
|
|
router.get('/client', getAngularClient)
|
2016-07-01 09:03:53 -05:00
|
|
|
router.post('/token', oAuth.token, success)
|
2016-07-20 09:23:58 -05:00
|
|
|
// TODO: Once https://github.com/oauthjs/node-oauth2-server/pull/289 is merged,, implement revoke token route
|
2016-03-21 05:56:33 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = router
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-04-27 15:11:48 -05:00
|
|
|
function getAngularClient (req, res, next) {
|
2016-05-11 14:19:34 -05:00
|
|
|
const serverHost = config.get('webserver.host')
|
|
|
|
const serverPort = config.get('webserver.port')
|
|
|
|
let headerHostShouldBe = serverHost
|
|
|
|
if (serverPort !== 80 && serverPort !== 443) {
|
|
|
|
headerHostShouldBe += ':' + serverPort
|
2016-04-27 15:11:48 -05:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:44:15 -05:00
|
|
|
// Don't make this check if this is a test instance
|
|
|
|
if (process.env.NODE_ENV !== 'test' && req.get('host') !== headerHostShouldBe) {
|
|
|
|
return res.type('json').status(403).end()
|
|
|
|
}
|
2016-04-27 15:11:48 -05:00
|
|
|
|
2016-07-01 09:03:53 -05:00
|
|
|
Client.loadFirstClient(function (err, client) {
|
2016-04-27 15:11:48 -05:00
|
|
|
if (err) return next(err)
|
|
|
|
if (!client) return next(new Error('No client available.'))
|
|
|
|
|
|
|
|
res.json({
|
|
|
|
client_id: client._id,
|
|
|
|
client_secret: client.clientSecret
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-03-21 05:56:33 -05:00
|
|
|
function success (req, res, next) {
|
|
|
|
res.end()
|
|
|
|
}
|