PeerTube/server/middlewares/oauth.ts

75 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import * as express from 'express'
import { logger } from '../helpers/logger'
2018-12-26 10:36:24 +01:00
import { Socket } from 'socket.io'
import { getAccessToken } from '../lib/oauth-model'
import { oAuthServer } from '@server/lib/auth'
2016-03-21 11:56:33 +01:00
2019-12-03 10:41:23 +01:00
function authenticate (req: express.Request, res: express.Response, next: express.NextFunction, authenticateInQuery = false) {
const options = authenticateInQuery ? { allowBearerTokensInQueryString: true } : {}
oAuthServer.authenticate(options)(req, res, err => {
if (err) {
logger.warn('Cannot authenticate.', { err })
2017-12-28 14:40:11 +01:00
return res.status(err.status)
.json({
2017-12-28 16:45:32 +01:00
error: 'Token is invalid.',
2017-12-28 14:40:11 +01:00
code: err.name
})
.end()
2017-12-28 14:29:57 +01:00
}
return next()
})
}
2018-12-26 10:36:24 +01:00
function authenticateSocket (socket: Socket, next: (err?: any) => void) {
const accessToken = socket.handshake.query.accessToken
logger.debug('Checking socket access token %s.', accessToken)
2019-04-23 09:50:57 +02:00
if (!accessToken) return next(new Error('No access token provided'))
2018-12-26 10:36:24 +01:00
getAccessToken(accessToken)
.then(tokenDB => {
const now = new Date()
if (!tokenDB || tokenDB.accessTokenExpiresAt < now || tokenDB.refreshTokenExpiresAt < now) {
return next(new Error('Invalid access token.'))
}
socket.handshake.query.user = tokenDB.User
return next()
})
2020-01-31 16:56:52 +01:00
.catch(err => logger.error('Cannot get access token.', { err }))
2018-12-26 10:36:24 +01:00
}
2019-12-03 10:41:23 +01:00
function authenticatePromiseIfNeeded (req: express.Request, res: express.Response, authenticateInQuery = false) {
return new Promise(resolve => {
// Already authenticated? (or tried to)
2020-06-17 10:55:40 +02:00
if (res.locals.oauth?.token.User) return resolve()
if (res.locals.authenticated === false) return res.sendStatus(401)
2019-12-03 10:41:23 +01:00
authenticate(req, res, () => resolve(), authenticateInQuery)
})
}
function optionalAuthenticate (req: express.Request, res: express.Response, next: express.NextFunction) {
if (req.header('authorization')) return authenticate(req, res, next)
res.locals.authenticated = false
return next()
}
2016-03-21 11:56:33 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
authenticate,
2018-12-26 10:36:24 +01:00
authenticateSocket,
authenticatePromiseIfNeeded,
2020-04-22 16:07:04 +02:00
optionalAuthenticate
2017-05-15 22:22:03 +02:00
}