> Discover all available pages from the documentation index: https://mastra.zisheng.pro/llms.txt # 自定义身份验证 Provider 自定义身份验证 Provider 允许你为内置 Provider 未涵盖的身份系统实现身份验证。继承 `MastraAuthProvider` 基类即可与任意身份验证系统集成。 ## 概览 身份验证 Provider 负责处理传入请求的身份验证和授权: - 令牌验证和用户提取 - 用户授权逻辑 - 基于路径的访问控制(公开/受保护路由) 创建自定义身份验证 Provider 以支持: - 自托管身份系统 - 自定义令牌格式或验证逻辑 - 专用授权规则 - 企业 SSO 集成 ## 创建自定义身份验证 Provider 继承 `MastraAuthProvider` 类并实现必需的方法: ```typescript import { MastraAuthProvider } from '@mastra/core/server' import type { MastraAuthProviderOptions } from '@mastra/core/server' import type { HonoRequest } from 'hono' // Define your user type type MyUser = { id: string email: string roles: string[] } // Define options for your provider interface MyAuthOptions extends MastraAuthProviderOptions { apiUrl?: string apiKey?: string } export class MyAuthProvider extends MastraAuthProvider { protected apiUrl: string protected apiKey: string constructor(options?: MyAuthOptions) { // Call super with a name for logging/debugging super({ name: options?.name ?? 'my-auth' }) const apiUrl = options?.apiUrl ?? process.env.MY_AUTH_API_URL const apiKey = options?.apiKey ?? process.env.MY_AUTH_API_KEY if (!apiUrl || !apiKey) { throw new Error( 'Auth API URL and API key are required. Provide them in options or set MY_AUTH_API_URL and MY_AUTH_API_KEY environment variables.', ) } this.apiUrl = apiUrl this.apiKey = apiKey // Register any custom options (authorizeUser override, public/protected paths) this.registerOptions(options) } /** * Verify the token and return the user * Return null if authentication fails */ async authenticateToken(token: string, request: HonoRequest): Promise { try { const response = await fetch(`${this.apiUrl}/verify`, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-API-Key': this.apiKey, }, body: JSON.stringify({ token }), }) if (!response.ok) { return null } const user = await response.json() return user } catch (error) { console.error('Token verification failed:', error) return null } } /** * Check if the authenticated user is authorized * Return true to allow access, false to deny */ async authorizeUser(user: MyUser, request: HonoRequest): Promise { // Basic authorization: user must exist and have an ID return !!user?.id } } ``` ## 必需的方法 ### `authenticateToken()` 验证传入令牌;如果有效则返回用户对象,如果身份验证失败则返回 `null`。 ```typescript async authenticateToken(token: string, request: HonoRequest): Promise ``` | 参数 | 类型 | 描述 | | --------- | ------------- | ---------------------------------- | | `token` | `string` | 从 `Authorization` 标头中提取的 bearer 令牌 | | `request` | `HonoRequest` | 传入请求对象(可访问标头、Cookie 等) | **返回值**:身份验证成功时返回用户对象,失败时返回 `null`。 令牌会自动从 `Authorization: Bearer ` 标头中提取。如果需要访问其他标头或 Cookie,请使用 `request` 参数。 ### `authorizeUser()` 确定已通过身份验证的用户是否允许访问资源。 ```typescript async authorizeUser(user: TUser, request: HonoRequest): Promise | boolean ``` | 参数 | 类型 | 描述 | | --------- | ------------- | --------------------------- | | `user` | `TUser` | `authenticateToken` 返回的用户对象 | | `request` | `HonoRequest` | 传入请求对象 | **返回值**:返回 `true` 允许访问,返回 `false` 拒绝访问(返回 403 Forbidden)。 ## 配置选项 `MastraAuthProviderOptions` 接口支持以下选项: | 选项 | 类型 | 描述 | | --------------- | -------------------------------------------------------- | ---------------------- | | `name` | `string` | 用于日志记录/调试的 Provider 名称 | | `authorizeUser` | `(user, request) => Promise \| boolean` | 自定义授权函数 | | `protected` | `(RegExp \| string \| [string, Methods \| Methods[]])[]` | 需要身份验证的路径 | | `public` | `(RegExp \| string \| [string, Methods \| Methods[]])[]` | 绕过身份验证的路径 | ### 路径模式 使用模式匹配配置哪些路径需要身份验证: ```typescript const auth = new MyAuthProvider({ // Paths that require authentication protected: [ '/api/*', // Wildcard: all /api routes '/admin/*', // Wildcard: all /admin routes /^\/secure\/.*/, // Regex pattern ], // Paths that bypass authentication public: [ '/health', // Exact match '/api/status', // Exact match ['/api/webhook', 'POST'], // Only POST requests to /api/webhook ], }) ``` ## 使用身份验证 Provider 向 Mastra 实例注册自定义身份验证 Provider: ```typescript import { Mastra } from '@mastra/core' import { MyAuthProvider } from './my-auth-provider' export const mastra = new Mastra({ server: { auth: new MyAuthProvider({ apiUrl: process.env.MY_AUTH_API_URL, apiKey: process.env.MY_AUTH_API_KEY, }), }, }) ``` ## 辅助工具 `@mastra/auth` 包提供用于常见令牌验证模式的辅助工具: ### JWT 验证 ```typescript import { verifyHmac, verifyJwks, decodeToken, getTokenIssuer } from '@mastra/auth' // Verify HMAC-signed JWT const payload = await verifyHmac(token, 'your-secret-key') // Verify with JWKS (for OAuth providers) const payload = await verifyJwks(token, 'https://provider.com/.well-known/jwks.json') // Decode without verification (for inspection) const decoded = await decodeToken(token) // Get the issuer from a decoded token const issuer = getTokenIssuer(decoded) ``` ### 示例:基于 JWKS 的 Provider ```typescript import { MastraAuthProvider } from '@mastra/core/server' import type { MastraAuthProviderOptions } from '@mastra/core/server' import { verifyJwks } from '@mastra/auth' import type { JwtPayload } from '@mastra/auth' type MyUser = JwtPayload interface MyJwksAuthOptions extends MastraAuthProviderOptions { jwksUri?: string issuer?: string } export class MyJwksAuth extends MastraAuthProvider { protected jwksUri: string protected issuer: string constructor(options?: MyJwksAuthOptions) { super({ name: options?.name ?? 'my-jwks-auth' }) const jwksUri = options?.jwksUri ?? process.env.MY_JWKS_URI const issuer = options?.issuer ?? process.env.MY_AUTH_ISSUER if (!jwksUri) { throw new Error('JWKS URI is required') } this.jwksUri = jwksUri this.issuer = issuer ?? '' this.registerOptions(options) } async authenticateToken(token: string): Promise { try { const payload = await verifyJwks(token, this.jwksUri) // Optionally validate issuer if (this.issuer && payload.iss !== this.issuer) { return null } return payload } catch { return null } } async authorizeUser(user: MyUser): Promise { // Check token hasn't expired if (user.exp && user.exp * 1000 < Date.now()) { return false } return !!user.sub } } ``` ## 自定义授权逻辑 通过提供自定义 `authorizeUser` 函数覆盖默认授权: ```typescript const auth = new MyAuthProvider({ apiUrl: process.env.MY_AUTH_API_URL, apiKey: process.env.MY_AUTH_API_KEY, // Custom authorization: require admin role for all requests async authorizeUser(user, request) { return user.roles.includes('admin') }, }) ``` ### 基于角色的授权 ```typescript const auth = new MyAuthProvider({ async authorizeUser(user, request) { const path = request.url const method = request.method // Admin routes require admin role if (path.startsWith('/admin/')) { return user.roles.includes('admin') } // Write operations require write role if (['POST', 'PUT', 'PATCH', 'DELETE'].includes(method)) { return user.roles.includes('write') || user.roles.includes('admin') } // Read operations allowed for all authenticated users return true }, }) ``` ## 测试自定义身份验证 Provider 使用 Vitest 的测试结构示例: ```typescript import { describe, it, expect, vi, beforeEach } from 'vitest' import { MyAuthProvider } from './my-auth-provider' // Mock fetch for API calls global.fetch = vi.fn() describe('MyAuthProvider', () => { const mockOptions = { apiUrl: 'https://auth.example.com', apiKey: 'test-api-key', } beforeEach(() => { vi.clearAllMocks() }) describe('initialization', () => { it('should initialize with provided options', () => { const auth = new MyAuthProvider(mockOptions) expect(auth).toBeInstanceOf(MyAuthProvider) }) it('should throw error when required options are missing', () => { expect(() => new MyAuthProvider({})).toThrow('Auth API URL and API key are required') }) }) describe('authenticateToken', () => { it('should return user when token is valid', async () => { const mockUser = { id: 'user123', email: 'test@example.com', roles: ['read'] } ;(fetch as any).mockResolvedValue({ ok: true, json: () => Promise.resolve(mockUser), }) const auth = new MyAuthProvider(mockOptions) const result = await auth.authenticateToken('valid-token', {} as any) expect(fetch).toHaveBeenCalledWith( 'https://auth.example.com/verify', expect.objectContaining({ method: 'POST', body: JSON.stringify({ token: 'valid-token' }), }), ) expect(result).toEqual(mockUser) }) it('should return null when token is invalid', async () => { ;(fetch as any).mockResolvedValue({ ok: false }) const auth = new MyAuthProvider(mockOptions) const result = await auth.authenticateToken('invalid-token', {} as any) expect(result).toBeNull() }) }) describe('authorizeUser', () => { it('should return true when user has valid id', async () => { const auth = new MyAuthProvider(mockOptions) const result = await auth.authorizeUser( { id: 'user123', email: 'test@example.com', roles: [] }, {} as any, ) expect(result).toBe(true) }) it('should return false when user has no id', async () => { const auth = new MyAuthProvider(mockOptions) const result = await auth.authorizeUser( { id: '', email: 'test@example.com', roles: [] }, {} as any, ) expect(result).toBe(false) }) }) describe('custom authorization', () => { it('should use custom authorizeUser when provided', async () => { const auth = new MyAuthProvider({ ...mockOptions, authorizeUser: user => user.roles.includes('admin'), }) const adminUser = { id: 'user123', email: 'admin@example.com', roles: ['admin'] } const regularUser = { id: 'user456', email: 'user@example.com', roles: ['read'] } expect(await auth.authorizeUser(adminUser, {} as any)).toBe(true) expect(await auth.authorizeUser(regularUser, {} as any)).toBe(false) }) }) describe('route configuration', () => { it('should store public routes configuration', () => { const publicRoutes = ['/health', '/api/status'] const auth = new MyAuthProvider({ ...mockOptions, public: publicRoutes, }) expect(auth.public).toEqual(publicRoutes) }) it('should store protected routes configuration', () => { const protectedRoutes = ['/api/*', '/admin/*'] const auth = new MyAuthProvider({ ...mockOptions, protected: protectedRoutes, }) expect(auth.protected).toEqual(protectedRoutes) }) }) }) ``` ## 错误处理 为常见失败场景提供描述清晰的错误: ```typescript export class MyAuthProvider extends MastraAuthProvider { constructor(options?: MyAuthOptions) { super({ name: options?.name ?? 'my-auth' }) const apiUrl = options?.apiUrl ?? process.env.MY_AUTH_API_URL const apiKey = options?.apiKey ?? process.env.MY_AUTH_API_KEY if (!apiUrl) { throw new Error( 'Missing MY_AUTH_API_URL. Set the environment variable or pass apiUrl in options.', ) } if (!apiKey) { throw new Error( 'Missing MY_AUTH_API_KEY. Set the environment variable or pass apiKey in options.', ) } this.apiUrl = apiUrl this.apiKey = apiKey this.registerOptions(options) } async authenticateToken(token: string): Promise { if (!token || typeof token !== 'string') { return null // Immediate safe fail } try { const response = await fetch(`${this.apiUrl}/verify`, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-API-Key': this.apiKey, }, body: JSON.stringify({ token }), }) if (!response.ok) { return null } return await response.json() } catch (error) { // Log error for debugging, but don't expose details to client console.error('Auth verification error:', error) return null } } } ``` ## 内置 Provider Mastra 包含以下身份验证 Provider 作为参考实现: - **MastraJwtAuth**:使用 HMAC 密钥的简单 JWT 验证(`@mastra/auth`) - **MastraAuthClerk**:Clerk 身份验证(`@mastra/auth-clerk`) - **MastraAuthAuth0**:Auth0 身份验证(`@mastra/auth-auth0`) - **MastraAuthSupabase**:Supabase 身份验证(`@mastra/auth-supabase`) - **MastraAuthFirebase**:Firebase 身份验证(`@mastra/auth-firebase`) - **MastraAuthWorkOS**:WorkOS 身份验证(`@mastra/auth-workos`) - **MastraAuthBetterAuth**:Better Auth 集成(`@mastra/auth-better-auth`) - **SimpleAuth**:用于开发的令牌到用户映射(`@mastra/core/server`) 有关实现详情,请参阅[源代码](https://github.com/mastra-ai/mastra/tree/main/auth)。 ## 相关内容 - [身份验证概览](https://mastra.zisheng.pro/docs/server/auth):身份验证概念和配置 - [自定义 API 路由](https://mastra.zisheng.pro/docs/server/custom-api-routes):控制自定义端点的身份验证