mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-06 01:15:28 +02:00
https://linear.app/unleash/issue/2-579/improve-user-like-behaviour-for-service-accounts-accounts-concept Builds on top of https://github.com/Unleash/unleash/pull/2917 by moving the responsibility of handling both account types from `users` to `accounts`. Ideally: - `users` - Should only handle users; - `service-accounts` - Should only handle service accounts; - `accounts` - Should handle any type of account; This should hopefully also provide a good building block in case we later decide to refactor this further down the `accounts` path.
31 lines
959 B
TypeScript
31 lines
959 B
TypeScript
import { IUnleashConfig } from '../types';
|
|
import { IAuthRequest } from '../routes/unleash-types';
|
|
|
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
const patMiddleware = (
|
|
{ getLogger }: Pick<IUnleashConfig, 'getLogger'>,
|
|
{ accountService }: any,
|
|
): any => {
|
|
const logger = getLogger('/middleware/pat-middleware.ts');
|
|
logger.debug('Enabling PAT middleware');
|
|
|
|
return async (req: IAuthRequest, res, next) => {
|
|
try {
|
|
const apiToken = req.header('authorization');
|
|
if (apiToken?.startsWith('user:')) {
|
|
const user =
|
|
await accountService.getAccountByPersonalAccessToken(
|
|
apiToken,
|
|
);
|
|
req.user = user;
|
|
accountService.addPATSeen(apiToken);
|
|
}
|
|
} catch (error) {
|
|
logger.error(error);
|
|
}
|
|
next();
|
|
};
|
|
};
|
|
|
|
export default patMiddleware;
|