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