-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
54 lines (46 loc) · 1.55 KB
/
auth.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import NextAuth, { DefaultSession } from 'next-auth';
import KeycloakProvider from 'next-auth/providers/keycloak';
import { DefaultJWT } from '@auth/core/jwt';
import { jwtDecode } from 'jwt-decode';
import Keycloak from 'next-auth/providers/keycloak';
declare module 'next-auth' {
// Extend user to reveal access_token
interface User {
access_token: string | null;
}
// Extend session to hold the access_token
interface Session {
token: (string & DefaultSession) | any;
}
// Extend token to hold the access_token before it gets put into session
interface JWT {
access_token: string & DefaultJWT;
}
}
export const { auth, handlers, signIn, signOut } = NextAuth({
providers: [Keycloak],
callbacks: {
jwt: async ({ token, user, account }) => {
if (account && account.access_token) {
// set access_token to the token payload
token.accessToken = account.access_token;
}
return token;
},
session: async ({ session, token, user }) => {
// Next Auth shenanigans :(
// add userId from decoding the jwt and the sub value cause the sub was a different id
let userId: string | undefined = '';
if (token?.accessToken) {
const decodedToken = jwtDecode(token.accessToken as string);
userId = decodedToken.sub;
}
// add user token for backend requests and add user id in the user object to use it in client-side logic
return {
...session,
token: token.accessToken,
user: { ...session.user, id: userId },
};
},
},
});