-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.config.ts
30 lines (27 loc) · 1.97 KB
/
auth.config.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
import type { NextAuthConfig } from "next-auth";
/**
* 导出一个auth的配置类,在其他地方引用
*/
export const authConfig = {
pages: {
signIn: "/login", // 指定登录页面,当用户没有登录时,重定向到这个页面
},
callbacks: {
//它在请求完成之前调用
authorized({ auth, request: { nextUrl } }) {
//!! 用于将任意值转换为布尔值 ,第一个 !(感叹号)将值转换为布尔值并`取反`。例如,!value 会将 value 转换为布尔值,并将其取反。如果 value 是 true,!value 就是 false;如果 value 是 false,!value 就是 true
//第二个 ! 再次取反,这样结果就会是原始布尔值
//?.(可选链操作符):这是一个用来安全地访问对象的嵌套属性的操作符。它的作用是,如果对象或属性为 null 或 undefined,则返回 undefined,而不会导致错误。这样可以避免访问不存在的属性时抛出异常。
const isLoggedIn = !!auth?.user; // 判断用户是否已登录
const isOnDashboard = nextUrl.pathname.startsWith("/dashboard"); // 检查用户是否在访问 "/dashboard" 路由,避免无脑重定向
if (isOnDashboard) {
if (isLoggedIn) return true; // 如果已登录并访问 Dashboard,则允许访问
return false; // Redirect unauthenticated users to login page ,如果未登录,则禁止访问 Dashboard,通常会重定向到登录页面
} else if (isLoggedIn) {
return Response.redirect(new URL("/dashboard", nextUrl)); // 已登录用户访问非 Dashboard 页面,重定向到 Dashboard
}
return true;
},
},
providers: [], // Add providers with an empty array for now
} satisfies NextAuthConfig; // satisfies 字段 表示 authConfig 至少需要包含 NextAuthConfig 中的字段,并且这些字段的类型必须与 NextAuthConfig 类型相匹配,同时允许 authConfig 定义其他非 NextAuthConfig 的字段(如果有的话)。