PeerTube/server/middlewares/auth.ts

82 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2018-12-26 10:36:24 +01:00
import { Socket } from 'socket.io'
import { getAccessToken } from '@server/lib/auth/oauth-model'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '../../shared/models/http/http-error-codes'
import { logger } from '../helpers/logger'
import { handleOAuthAuthenticate } from '../lib/auth/oauth'
2016-03-21 11:56:33 +01:00
function authenticate (req: express.Request, res: express.Response, next: express.NextFunction) {
handleOAuthAuthenticate(req, res)
.then((token: any) => {
res.locals.oauth = { token }
res.locals.authenticated = true
return next()
})
.catch(err => {
logger.info('Cannot authenticate.', { err })
return res.fail({
status: err.status,
message: 'Token is invalid',
type: err.name
})
})
}
2018-12-26 10:36:24 +01:00
function authenticateSocket (socket: Socket, next: (err?: any) => void) {
2020-11-19 08:58:34 +01:00
const accessToken = socket.handshake.query['accessToken']
2018-12-26 10:36:24 +01:00
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'))
2021-03-03 15:22:38 +01:00
if (typeof accessToken !== 'string') return next(new Error('Access token is invalid'))
2019-04-23 09:50:57 +02:00
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.'))
}
2021-03-03 15:22:38 +01:00
socket.handshake.auth.user = tokenDB.User
2018-12-26 10:36:24 +01:00
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
}
function authenticatePromise (req: express.Request, res: express.Response) {
2021-02-03 09:33:05 +01:00
return new Promise<void>(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.fail({
status: HttpStatusCode.UNAUTHORIZED_401,
message: 'Not authenticated'
})
}
authenticate(req, res, () => resolve())
})
}
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,
2022-06-22 14:03:50 +02:00
authenticatePromise,
2020-04-22 16:07:04 +02:00
optionalAuthenticate
2017-05-15 22:22:03 +02:00
}