mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import type { Adapter } from "@auth/core/adapters";
|
|
import { DrizzleAdapter } from "@auth/drizzle-adapter";
|
|
|
|
import type { Database } from "@homarr/db";
|
|
import { and, eq } from "@homarr/db";
|
|
import { accounts, sessions, users } from "@homarr/db/schema";
|
|
import type { SupportedAuthProvider } from "@homarr/definitions";
|
|
|
|
export const createAdapter = (db: Database, provider: SupportedAuthProvider | "unknown"): Adapter => {
|
|
const drizzleAdapter = DrizzleAdapter(db, { usersTable: users, sessionsTable: sessions, accountsTable: accounts });
|
|
|
|
return {
|
|
...drizzleAdapter,
|
|
// We override the default implementation as we want to have a provider
|
|
// flag in the user instead of the account to not intermingle users from different providers
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
getUserByEmail: async (email) => {
|
|
if (provider === "unknown") {
|
|
throw new Error("Unable to get user by email for unknown provider");
|
|
}
|
|
|
|
const user = await db.query.users.findFirst({
|
|
where: and(eq(users.email, email), eq(users.provider, provider)),
|
|
columns: {
|
|
id: true,
|
|
name: true,
|
|
email: true,
|
|
emailVerified: true,
|
|
image: true,
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
...user,
|
|
// We allow null as email for credentials provider
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
email: user.email!,
|
|
};
|
|
},
|
|
};
|
|
};
|