0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(core): add session check (#1453)

add session check
This commit is contained in:
simeng-li 2022-07-08 10:38:24 +08:00 committed by GitHub
parent f0c85d5e52
commit 78e06d5c7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -46,6 +46,7 @@ export default function sessionRoutes<T extends AnonymousRouter>(router: T, prov
}),
}),
async (ctx, next) => {
await provider.interactionDetails(ctx.req, ctx.res);
const { username, password } = ctx.guard.body;
const type = 'SignInUsernamePassword';
ctx.log(type, { username });

View file

@ -40,6 +40,7 @@ export default function sessionSocialRoutes<T extends AnonymousRouter>(
}),
}),
async (ctx, next) => {
await provider.interactionDetails(ctx.req, ctx.res);
const { connectorId, state, redirectUri } = ctx.guard.body;
assertThat(state && redirectUri, 'session.insufficient_info');
const connector = await getSocialConnectorInstanceById(connectorId);
@ -60,6 +61,8 @@ export default function sessionSocialRoutes<T extends AnonymousRouter>(
}),
}),
async (ctx, next) => {
await provider.interactionDetails(ctx.req, ctx.res);
const { connectorId, data } = ctx.guard.body;
const type = 'SignInSocial';
ctx.log(type, { connectorId, data });