mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-25 03:00:12 +00:00
110 lines
2.8 KiB
TypeScript
110 lines
2.8 KiB
TypeScript
import { DrizzleAdapter } from "@auth/drizzle-adapter";
|
|
import CredentialsProvider from "next-auth/providers/credentials";
|
|
import {
|
|
getServerSession,
|
|
type DefaultSession,
|
|
type NextAuthOptions,
|
|
} from "next-auth";
|
|
import { type Adapter } from "next-auth/adapters";
|
|
import { omit } from "lodash";
|
|
|
|
import { env } from "@/env";
|
|
import { db } from "@/server/db";
|
|
import {
|
|
accounts,
|
|
sessions,
|
|
users,
|
|
verificationTokens,
|
|
} from "@/server/db/schema";
|
|
import { confirmPassword } from "@/lib/crypt";
|
|
|
|
/**
|
|
* Module augmentation for `next-auth` types. Allows us to add custom properties to the `session`
|
|
* object and keep type safety.
|
|
*
|
|
* @see https://next-auth.js.org/getting-started/typescript#module-augmentation
|
|
*/
|
|
declare module "next-auth" {
|
|
interface Session extends DefaultSession {
|
|
user: {
|
|
id: string;
|
|
// ...other properties
|
|
// role: UserRole;
|
|
} & DefaultSession["user"];
|
|
}
|
|
|
|
// interface User {
|
|
// // ...other properties
|
|
// // role: UserRole;
|
|
// }
|
|
}
|
|
|
|
/**
|
|
* Options for NextAuth.js used to configure adapters, providers, callbacks, etc.
|
|
*
|
|
* @see https://next-auth.js.org/configuration/options
|
|
*/
|
|
export const authOptions: NextAuthOptions = {
|
|
callbacks: {
|
|
session: ({ session, user }) => ({
|
|
...session,
|
|
user: {
|
|
...session.user,
|
|
id: user.id,
|
|
},
|
|
}),
|
|
},
|
|
adapter: DrizzleAdapter(db, {
|
|
usersTable: users,
|
|
accountsTable: accounts,
|
|
sessionsTable: sessions,
|
|
verificationTokensTable: verificationTokens,
|
|
}) as Adapter,
|
|
providers: [
|
|
CredentialsProvider({
|
|
type: "credentials",
|
|
credentials: {
|
|
email: { label: "Email", type: "email" },
|
|
password: { label: "Password", type: "password" },
|
|
},
|
|
authorize: async (credentials, request) => {
|
|
if (!credentials) {
|
|
return null;
|
|
}
|
|
// const user = await prisma.users.findUnique({
|
|
// where: { email: credentials.email },
|
|
// select: {
|
|
// id: true,
|
|
// email: true,
|
|
// password: true,
|
|
// },
|
|
// });
|
|
// if (user && user.password) {
|
|
// const hashed = await confirmPassword(
|
|
// credentials.password,
|
|
// user.password,
|
|
// );
|
|
// if (hashed) {
|
|
// return omit(user, "password");
|
|
// }
|
|
// }
|
|
return null;
|
|
},
|
|
}),
|
|
],
|
|
pages: {
|
|
signIn: "/auth/signin",
|
|
signOut: "/auth/signout",
|
|
error: "/auth/error",
|
|
verifyRequest: "/auth/verify-request",
|
|
newUser: "/auth/new-user",
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Wrapper for `getServerSession` so that you don't need to import the `authOptions` in every file.
|
|
*
|
|
* @see https://next-auth.js.org/configuration/nextjs
|
|
*/
|
|
export const getServerAuthSession = () => getServerSession(authOptions);
|