PeerTube/server/middlewares/oauth.ts

35 lines
862 B
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as OAuthServer from 'express-oauth-server'
2016-03-21 11:56:33 +01:00
2017-05-22 20:58:25 +02:00
import { OAUTH_LIFETIME } from '../initializers'
import { logger } from '../helpers'
const oAuthServer = new OAuthServer({
2017-05-22 20:58:25 +02:00
accessTokenLifetime: OAUTH_LIFETIME.ACCESS_TOKEN,
refreshTokenLifetime: OAUTH_LIFETIME.REFRESH_TOKEN,
model: require('../lib/oauth-model')
2016-03-21 11:56:33 +01:00
})
function authenticate (req, res, next) {
oAuthServer.authenticate()(req, res, function (err) {
if (err) {
logger.error('Cannot authenticate.', { error: err })
return res.sendStatus(500)
}
2016-09-20 22:45:14 +02:00
if (res.statusCode === 401 || res.statusCode === 400 || res.statusCode === 503) return res.end()
return next()
})
}
function token (req, res, next) {
return oAuthServer.token()(req, res, next)
}
2016-03-21 11:56:33 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
authenticate,
token
}