2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
2018-12-26 10:36:24 +01:00
|
|
|
import { Socket } from 'socket.io'
|
2020-04-23 11:36:50 +02:00
|
|
|
import { oAuthServer } from '@server/lib/auth'
|
2020-11-19 08:58:34 +01:00
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { getAccessToken } from '../lib/oauth-model'
|
2020-12-07 14:32:36 +01:00
|
|
|
import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
|
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 => {
|
2016-04-14 22:06:11 +02:00
|
|
|
if (err) {
|
2018-04-19 11:01:34 +02:00
|
|
|
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
|
|
|
}
|
2016-04-14 22:06:11 +02:00
|
|
|
|
2020-12-04 22:13:11 +01:00
|
|
|
res.locals.authenticated = true
|
|
|
|
|
2016-04-14 22:06:11 +02:00
|
|
|
return next()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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'))
|
|
|
|
|
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.'))
|
|
|
|
}
|
|
|
|
|
2020-11-19 08:58:34 +01:00
|
|
|
socket.handshake.query['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
|
|
|
}
|
|
|
|
|
2019-12-03 10:41:23 +01:00
|
|
|
function authenticatePromiseIfNeeded (req: express.Request, res: express.Response, authenticateInQuery = false) {
|
2018-11-16 15:02:48 +01:00
|
|
|
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()
|
2018-11-16 15:02:48 +01:00
|
|
|
|
2020-12-07 14:32:36 +01:00
|
|
|
if (res.locals.authenticated === false) return res.sendStatus(HttpStatusCode.UNAUTHORIZED_401)
|
2018-11-16 15:02:48 +01:00
|
|
|
|
2019-12-03 10:41:23 +01:00
|
|
|
authenticate(req, res, () => resolve(), authenticateInQuery)
|
2018-11-16 15:02:48 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-04-19 11:01:34 +02:00
|
|
|
function optionalAuthenticate (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
if (req.header('authorization')) return authenticate(req, res, next)
|
|
|
|
|
2018-11-16 15:02:48 +01:00
|
|
|
res.locals.authenticated = false
|
|
|
|
|
2018-04-19 11:01:34 +02:00
|
|
|
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,
|
2018-11-16 15:02:48 +01:00
|
|
|
authenticatePromiseIfNeeded,
|
2020-04-22 16:07:04 +02:00
|
|
|
optionalAuthenticate
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|