-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.ts
71 lines (67 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import NextAuth from "next-auth";
import bcrypt from "bcrypt";
import { DrizzleAdapter } from "@auth/drizzle-adapter";
import { databaseDrizzle } from "./db/database";
import { authConfig } from "./auth.config";
import GoogleProvider, { GoogleProfile } from "next-auth/providers/google";
import CredentialsProvider from "next-auth/providers/credentials";
import type { Provider } from "next-auth/providers";
import {
users,
sessions,
accounts,
verificationTokens,
} from "./db/schemas/users";
import { signInSchema } from "./schema/user";
const providers: Provider[] = [
CredentialsProvider({
name: "Sign in With...",
credentials: {
email: { label: "email", type: "text", placeholder: "Email" },
password: {
label: "Password",
type: "password",
placeholder: "Password",
},
},
authorize: async (credentials) => {
try {
const { email, password } = await signInSchema.parseAsync(credentials);
const user = await databaseDrizzle.query.users.findFirst({
where: (u, opt) => opt.eq(u.email, email),
});
if (!user) {
throw new Error("User not found.");
}
if (!user || !user.hashedPassword) return null;
const passwordMatch = await bcrypt.compare(
password,
user.hashedPassword,
);
return passwordMatch ? user : null;
} catch (error) {
return null;
}
},
}),
GoogleProvider({
profile(profile: GoogleProfile) {
return {
id: profile.sub,
name: profile.name,
email: profile.email,
image: profile.picture,
};
},
}),
];
export const { handlers, signIn, signOut, auth } = NextAuth({
...authConfig,
adapter: DrizzleAdapter(databaseDrizzle, {
usersTable: users,
accountsTable: accounts,
sessionsTable: sessions,
verificationTokensTable: verificationTokens,
}),
providers,
});