I use next.js with next-auth. I use the AzureAD provider. Now I want to store the user data in my own database, since Azure AD sucks really hard in performance. When a user logs in the first time I want to store the name and the image in my database. To do so I add the prisma adapter for next-auth and added the function profile
to the azure provider which handles the returned data of the user. There I hand over the ID of the AzureProfile of this user. But prisma will always ignore the ID field and let the database create the ID.
All the other fields are no problem. They are stored in the database as I define them in the returned object. Only the ID is a problem.
Is there a way to define the ID of the newly created User in the database manually?
These are my nextAuthOptions:
import { type AuthOptions } from 'next-auth'
import type { User } from '@prisma/client'
import { originalPrisma } from 'lib/prisma'
// ...
export const authOptions: AuthOptions = {
adapter: PrismaAdapter(originalPrisma),
session: {
strategy: 'jwt',
},
providers: [
AzureADProvider({
clientId: process.env.AZURE_AD_CLIENT_ID!,
clientSecret: process.env.AZURE_AD_CLIENT_SECRET!,
tenantId: process.env.AZURE_AD_TENANT_ID!,
authorization: { params: { scope } },
idToken: true,
async profile(profile, tokens) {
const profileData: Pick<
User,
'id' | 'name' | 'email' | 'emailVerified' | 'image'
> = {
id: profile.oid!,
name: profile.name,
email: profile.email,
emailVerified: profile.email_verified || null,
image: null,
}
// ...
return profileData
},
}),
]
}