mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
e8d542af0f
* refactor: remove unused API definition routes * feat: add support for proxy keys * feat: support listening for any event * feat: embed proxy endpoints * refactor: add an experimental flag for the embedded proxy
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import { Application } from 'express';
|
|
import AuthenticationRequired from '../types/authentication-required';
|
|
import { IUnleashServices } from '../types/services';
|
|
import { IUnleashConfig } from '../types/option';
|
|
import ApiUser from '../types/api-user';
|
|
import { ApiTokenType } from '../types/models/api-token';
|
|
|
|
function demoAuthentication(
|
|
app: Application,
|
|
basePath: string = '', // eslint-disable-line
|
|
{ userService }: Pick<IUnleashServices, 'userService'>,
|
|
{ authentication }: Pick<IUnleashConfig, 'authentication'>,
|
|
): void {
|
|
app.post(`${basePath}/auth/demo/login`, async (req, res) => {
|
|
const { email } = req.body;
|
|
try {
|
|
const user = await userService.loginUserWithoutPassword(
|
|
email,
|
|
true,
|
|
);
|
|
// @ts-expect-error
|
|
req.session.user = user;
|
|
return res.status(200).json(user);
|
|
} catch (e) {
|
|
res.status(400)
|
|
.json({ error: `Could not sign in with ${email}` })
|
|
.end();
|
|
}
|
|
});
|
|
|
|
app.use(`${basePath}/api/admin/`, (req, res, next) => {
|
|
// @ts-expect-error
|
|
if (req.session.user && req.session.user.email) {
|
|
// @ts-expect-error
|
|
req.user = req.session.user;
|
|
}
|
|
next();
|
|
});
|
|
|
|
app.use(`${basePath}/api/client`, (req, res, next) => {
|
|
// @ts-expect-error
|
|
if (!authentication.enableApiToken && !req.user) {
|
|
// @ts-expect-error
|
|
req.user = new ApiUser({
|
|
username: 'unauthed-default-client',
|
|
permissions: [],
|
|
environment: 'default',
|
|
type: ApiTokenType.CLIENT,
|
|
project: '*',
|
|
secret: 'a',
|
|
});
|
|
}
|
|
next();
|
|
});
|
|
|
|
app.use(`${basePath}/api`, (req, res, next) => {
|
|
// @ts-expect-error
|
|
if (req.user) {
|
|
return next();
|
|
}
|
|
return res
|
|
.status(401)
|
|
.json(
|
|
new AuthenticationRequired({
|
|
path: `${basePath}/auth/demo/login`,
|
|
type: 'demo',
|
|
message:
|
|
'You have to identify yourself in order to use Unleash.',
|
|
}),
|
|
)
|
|
.end();
|
|
});
|
|
}
|
|
|
|
export default demoAuthentication;
|