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'
|
2021-03-12 15:20:46 +01:00
|
|
|
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'
|
2021-03-12 15:20:46 +01:00
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { handleOAuthAuthenticate } from '../lib/auth/oauth'
|
2016-03-21 11:56:33 +01:00
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
function authenticate (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
handleOAuthAuthenticate(req, res)
|
2021-03-12 15:20:46 +01:00
|
|
|
.then((token: any) => {
|
|
|
|
res.locals.oauth = { token }
|
|
|
|
res.locals.authenticated = true
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2022-07-13 10:04:22 +02:00
|
|
|
logger.info('Cannot authenticate.', { err })
|
2018-04-19 11:01:34 +02:00
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
return res.fail({
|
|
|
|
status: err.status,
|
|
|
|
message: 'Token is invalid',
|
|
|
|
type: err.name
|
|
|
|
})
|
2021-03-12 15:20:46 +01:00
|
|
|
})
|
2016-04-14 22:06:11 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
function authenticatePromise (req: express.Request, res: express.Response) {
|
2021-02-03 09:33:05 +01:00
|
|
|
return new Promise<void>(resolve => {
|
2018-11-16 15:02:48 +01:00
|
|
|
// 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
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
if (res.locals.authenticated === false) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.UNAUTHORIZED_401,
|
|
|
|
message: 'Not authenticated'
|
|
|
|
})
|
|
|
|
}
|
2018-11-16 15:02:48 +01:00
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
authenticate(req, res, () => resolve())
|
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,
|
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
|
|
|
}
|