@lobehub/lobehub 2.0.0-next.355 → 2.0.0-next.357

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/.env.desktop +0 -1
  2. package/.env.example +16 -20
  3. package/.env.example.development +1 -4
  4. package/.github/workflows/e2e.yml +10 -11
  5. package/CHANGELOG.md +60 -0
  6. package/Dockerfile +28 -4
  7. package/changelog/v1.json +18 -0
  8. package/docker-compose/local/docker-compose.yml +2 -2
  9. package/docker-compose/local/grafana/docker-compose.yml +2 -2
  10. package/docker-compose/local/logto/docker-compose.yml +2 -2
  11. package/docker-compose/local/zitadel/.env.example +2 -2
  12. package/docker-compose/local/zitadel/.env.zh-CN.example +2 -2
  13. package/docker-compose/production/grafana/docker-compose.yml +2 -2
  14. package/docker-compose/production/logto/.env.example +2 -2
  15. package/docker-compose/production/logto/.env.zh-CN.example +2 -2
  16. package/docker-compose/production/zitadel/.env.example +2 -2
  17. package/docker-compose/production/zitadel/.env.zh-CN.example +2 -2
  18. package/docs/development/basic/add-new-authentication-providers.mdx +144 -136
  19. package/docs/development/basic/add-new-authentication-providers.zh-CN.mdx +146 -136
  20. package/docs/self-hosting/advanced/auth/legacy.mdx +4 -0
  21. package/docs/self-hosting/advanced/auth/legacy.zh-CN.mdx +4 -0
  22. package/docs/self-hosting/advanced/auth/nextauth-to-betterauth.mdx +326 -0
  23. package/docs/self-hosting/advanced/auth/nextauth-to-betterauth.zh-CN.mdx +323 -0
  24. package/docs/self-hosting/advanced/auth.mdx +43 -16
  25. package/docs/self-hosting/advanced/auth.zh-CN.mdx +44 -16
  26. package/docs/self-hosting/advanced/redis/upstash.mdx +69 -0
  27. package/docs/self-hosting/advanced/redis/upstash.zh-CN.mdx +69 -0
  28. package/docs/self-hosting/advanced/redis.mdx +128 -0
  29. package/docs/self-hosting/advanced/redis.zh-CN.mdx +126 -0
  30. package/docs/self-hosting/environment-variables/auth.mdx +15 -1
  31. package/docs/self-hosting/environment-variables/auth.zh-CN.mdx +15 -1
  32. package/docs/self-hosting/environment-variables/basic.mdx +13 -0
  33. package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +13 -0
  34. package/docs/self-hosting/environment-variables/redis.mdx +68 -0
  35. package/docs/self-hosting/environment-variables/redis.zh-CN.mdx +67 -0
  36. package/docs/self-hosting/migration/v2/breaking-changes.mdx +23 -23
  37. package/docs/self-hosting/migration/v2/breaking-changes.zh-CN.mdx +23 -23
  38. package/docs/self-hosting/server-database/docker-compose.mdx +4 -4
  39. package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +4 -4
  40. package/e2e/CLAUDE.md +5 -6
  41. package/e2e/docs/local-setup.md +9 -12
  42. package/e2e/scripts/setup.ts +9 -15
  43. package/e2e/src/support/webServer.ts +6 -5
  44. package/package.json +4 -6
  45. package/packages/database/src/schemas/nextauth.ts +7 -2
  46. package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +370 -0
  47. package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +18 -5
  48. package/packages/utils/src/server/__tests__/auth.test.ts +1 -63
  49. package/packages/utils/src/server/auth.ts +8 -24
  50. package/scripts/_shared/checkDeprecatedAuth.js +99 -0
  51. package/scripts/clerk-to-betterauth/index.ts +8 -3
  52. package/scripts/nextauth-to-betterauth/_internal/config.ts +41 -0
  53. package/scripts/nextauth-to-betterauth/_internal/db.ts +32 -0
  54. package/scripts/nextauth-to-betterauth/_internal/env.ts +6 -0
  55. package/scripts/nextauth-to-betterauth/index.ts +226 -0
  56. package/scripts/nextauth-to-betterauth/verify.ts +188 -0
  57. package/scripts/prebuild.mts +66 -13
  58. package/scripts/serverLauncher/startServer.js +5 -5
  59. package/src/app/(backend)/api/auth/[...all]/route.ts +5 -23
  60. package/src/app/(backend)/api/webhooks/casdoor/route.ts +5 -5
  61. package/src/app/(backend)/api/webhooks/logto/route.ts +8 -8
  62. package/src/app/(backend)/middleware/auth/index.test.ts +8 -1
  63. package/src/app/(backend)/middleware/auth/index.ts +6 -15
  64. package/src/app/(backend)/middleware/auth/utils.test.ts +0 -32
  65. package/src/app/(backend)/middleware/auth/utils.ts +3 -8
  66. package/src/app/(backend)/webapi/chat/[provider]/route.test.ts +8 -1
  67. package/src/app/(backend)/webapi/create-image/comfyui/route.ts +0 -1
  68. package/src/app/(backend)/webapi/models/[provider]/route.test.ts +8 -1
  69. package/src/app/[variants]/(auth)/signin/SignInEmailStep.tsx +1 -1
  70. package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +4 -17
  71. package/src/app/[variants]/(main)/agent/cron/[cronId]/features/CronJobContentEditor.tsx +34 -21
  72. package/src/app/[variants]/(main)/settings/profile/features/SSOProvidersList/index.tsx +12 -19
  73. package/src/app/[variants]/(main)/settings/profile/index.tsx +8 -14
  74. package/src/components/{NextAuth/AuthIcons.tsx → AuthIcons.tsx} +8 -10
  75. package/src/envs/auth.ts +12 -51
  76. package/src/envs/email.ts +3 -0
  77. package/src/envs/redis.ts +12 -54
  78. package/src/features/ChatInput/ChatInputProvider.tsx +22 -2
  79. package/src/features/ChatInput/InputEditor/index.tsx +14 -3
  80. package/src/features/ChatInput/store/initialState.ts +2 -0
  81. package/src/features/EditorCanvas/DiffAllToolbar.tsx +4 -5
  82. package/src/features/EditorCanvas/DocumentIdMode.tsx +21 -1
  83. package/src/features/User/__tests__/PanelContent.test.tsx +0 -11
  84. package/src/features/User/__tests__/UserAvatar.test.tsx +1 -16
  85. package/src/layout/AuthProvider/index.tsx +1 -6
  86. package/src/layout/GlobalProvider/StoreInitialization.tsx +2 -4
  87. package/src/libs/better-auth/define-config.ts +2 -0
  88. package/src/libs/better-auth/plugins/email-whitelist.test.ts +120 -0
  89. package/src/libs/better-auth/plugins/email-whitelist.ts +62 -0
  90. package/src/libs/next/config/define-config.ts +13 -1
  91. package/src/libs/next/proxy/define-config.ts +2 -75
  92. package/src/libs/oidc-provider/provider.test.ts +0 -4
  93. package/src/libs/redis/index.ts +0 -1
  94. package/src/libs/redis/manager.test.ts +9 -45
  95. package/src/libs/redis/manager.ts +2 -16
  96. package/src/libs/redis/redis.test.ts +2 -4
  97. package/src/libs/redis/redis.ts +2 -4
  98. package/src/libs/redis/types.ts +2 -24
  99. package/src/libs/redis/utils.test.ts +0 -10
  100. package/src/libs/redis/utils.ts +0 -19
  101. package/src/libs/trpc/lambda/context.test.ts +0 -13
  102. package/src/libs/trpc/lambda/context.ts +21 -59
  103. package/src/libs/trpc/middleware/userAuth.ts +1 -7
  104. package/src/libs/trusted-client/getSessionUser.ts +15 -35
  105. package/src/server/globalConfig/index.ts +1 -3
  106. package/src/server/routers/lambda/__tests__/user.test.ts +0 -48
  107. package/src/server/routers/lambda/user.ts +1 -12
  108. package/src/server/services/email/impls/nodemailer/index.ts +2 -2
  109. package/src/server/services/webhookUser/index.ts +88 -0
  110. package/src/services/user/index.test.ts +0 -14
  111. package/src/services/user/index.ts +0 -4
  112. package/src/store/document/slices/document/action.ts +1 -0
  113. package/src/store/user/slices/auth/action.test.ts +22 -126
  114. package/src/store/user/slices/auth/action.ts +32 -65
  115. package/src/store/user/slices/auth/initialState.ts +0 -3
  116. package/src/store/user/slices/auth/selectors.ts +0 -3
  117. package/tests/setup.ts +10 -0
  118. package/scripts/_shared/checkDeprecatedClerkEnv.js +0 -42
  119. package/src/app/(backend)/api/auth/adapter/route.ts +0 -137
  120. package/src/app/[variants]/(auth)/next-auth/error/AuthErrorPage.tsx +0 -40
  121. package/src/app/[variants]/(auth)/next-auth/error/page.tsx +0 -11
  122. package/src/app/[variants]/(auth)/next-auth/signin/AuthSignInBox.tsx +0 -167
  123. package/src/app/[variants]/(auth)/next-auth/signin/page.tsx +0 -11
  124. package/src/app/[variants]/(auth)/reset-password/layout.tsx +0 -12
  125. package/src/app/[variants]/(auth)/signin/layout.tsx +0 -12
  126. package/src/app/[variants]/(auth)/verify-email/layout.tsx +0 -12
  127. package/src/envs/auth.test.ts +0 -47
  128. package/src/layout/AuthProvider/NextAuth/UserUpdater.tsx +0 -44
  129. package/src/layout/AuthProvider/NextAuth/index.tsx +0 -17
  130. package/src/libs/next-auth/adapter/index.ts +0 -177
  131. package/src/libs/next-auth/auth.config.ts +0 -64
  132. package/src/libs/next-auth/index.ts +0 -20
  133. package/src/libs/next-auth/sso-providers/auth0.ts +0 -24
  134. package/src/libs/next-auth/sso-providers/authelia.ts +0 -39
  135. package/src/libs/next-auth/sso-providers/authentik.ts +0 -25
  136. package/src/libs/next-auth/sso-providers/casdoor.ts +0 -50
  137. package/src/libs/next-auth/sso-providers/cloudflare-zero-trust.ts +0 -34
  138. package/src/libs/next-auth/sso-providers/cognito.ts +0 -8
  139. package/src/libs/next-auth/sso-providers/feishu.ts +0 -83
  140. package/src/libs/next-auth/sso-providers/generic-oidc.ts +0 -38
  141. package/src/libs/next-auth/sso-providers/github.ts +0 -23
  142. package/src/libs/next-auth/sso-providers/google.ts +0 -18
  143. package/src/libs/next-auth/sso-providers/index.ts +0 -35
  144. package/src/libs/next-auth/sso-providers/keycloak.ts +0 -22
  145. package/src/libs/next-auth/sso-providers/logto.ts +0 -48
  146. package/src/libs/next-auth/sso-providers/microsoft-entra-id-helper.ts +0 -29
  147. package/src/libs/next-auth/sso-providers/microsoft-entra-id.ts +0 -19
  148. package/src/libs/next-auth/sso-providers/okta.ts +0 -22
  149. package/src/libs/next-auth/sso-providers/sso.config.ts +0 -8
  150. package/src/libs/next-auth/sso-providers/wechat.ts +0 -36
  151. package/src/libs/next-auth/sso-providers/zitadel.ts +0 -21
  152. package/src/libs/redis/upstash.test.ts +0 -158
  153. package/src/libs/redis/upstash.ts +0 -136
  154. package/src/server/services/nextAuthUser/index.ts +0 -318
  155. package/src/server/services/nextAuthUser/utils.ts +0 -62
  156. package/src/types/next-auth.d.ts +0 -26
@@ -3,7 +3,7 @@ import { NextResponse } from 'next/server';
3
3
  import { serverDB } from '@/database/server';
4
4
  import { authEnv } from '@/envs/auth';
5
5
  import { pino } from '@/libs/logger';
6
- import { NextAuthUserService } from '@/server/services/nextAuthUser';
6
+ import { WebhookUserService } from '@/server/services/webhookUser';
7
7
 
8
8
  import { validateRequest } from './validateRequest';
9
9
 
@@ -19,13 +19,13 @@ export const POST = async (req: Request): Promise<NextResponse> => {
19
19
 
20
20
  const { action, object } = payload;
21
21
 
22
- const nextAuthUserService = new NextAuthUserService(serverDB);
22
+ const webhookUserService = new WebhookUserService(serverDB);
23
23
  switch (action) {
24
24
  case 'update-user': {
25
- return nextAuthUserService.safeUpdateUser(
25
+ return webhookUserService.safeUpdateUser(
26
26
  {
27
- provider: 'casdoor',
28
- providerAccountId: object.id,
27
+ accountId: object.id,
28
+ providerId: 'casdoor',
29
29
  },
30
30
  {
31
31
  avatar: object?.avatar,
@@ -3,7 +3,7 @@ import { NextResponse } from 'next/server';
3
3
  import { serverDB } from '@/database/server';
4
4
  import { authEnv } from '@/envs/auth';
5
5
  import { pino } from '@/libs/logger';
6
- import { NextAuthUserService } from '@/server/services/nextAuthUser';
6
+ import { WebhookUserService } from '@/server/services/webhookUser';
7
7
 
8
8
  import { validateRequest } from './validateRequest';
9
9
 
@@ -21,13 +21,13 @@ export const POST = async (req: Request): Promise<NextResponse> => {
21
21
 
22
22
  pino.trace(`logto webhook payload: ${{ data, event }}`);
23
23
 
24
- const nextAuthUserService = new NextAuthUserService(serverDB);
24
+ const webhookUserService = new WebhookUserService(serverDB);
25
25
  switch (event) {
26
26
  case 'User.Data.Updated': {
27
- return nextAuthUserService.safeUpdateUser(
27
+ return webhookUserService.safeUpdateUser(
28
28
  {
29
- provider: 'logto',
30
- providerAccountId: data.id,
29
+ accountId: data.id,
30
+ providerId: 'logto',
31
31
  },
32
32
  {
33
33
  avatar: data?.avatar,
@@ -38,9 +38,9 @@ export const POST = async (req: Request): Promise<NextResponse> => {
38
38
  }
39
39
  case 'User.SuspensionStatus.Updated': {
40
40
  if (data.isSuspended) {
41
- return nextAuthUserService.safeSignOutUser({
42
- provider: 'logto',
43
- providerAccountId: data.id,
41
+ return webhookUserService.safeSignOutUser({
42
+ accountId: data.id,
43
+ providerId: 'logto',
44
44
  });
45
45
  }
46
46
  return NextResponse.json({ message: 'user reactivated', success: true }, { status: 200 });
@@ -24,10 +24,17 @@ vi.mock('@/envs/auth', async (importOriginal) => {
24
24
  const actual = await importOriginal<typeof import('@/envs/auth')>();
25
25
  return {
26
26
  ...actual,
27
- enableBetterAuth: false,
28
27
  };
29
28
  });
30
29
 
30
+ vi.mock('@/auth', () => ({
31
+ auth: {
32
+ api: {
33
+ getSession: vi.fn().mockResolvedValue(null),
34
+ },
35
+ },
36
+ }));
37
+
31
38
  describe('checkAuth', () => {
32
39
  const mockHandler: RequestHandler = vi.fn();
33
40
  const mockRequest = new Request('https://example.com');
@@ -6,14 +6,10 @@ import {
6
6
  import { ChatErrorType, type ClientSecretPayload } from '@lobechat/types';
7
7
  import { getXorPayload } from '@lobechat/utils/server';
8
8
 
9
+ import { auth } from '@/auth';
9
10
  import { getServerDB } from '@/database/core/db-adaptor';
10
11
  import { type LobeChatDatabase } from '@/database/type';
11
- import {
12
- LOBE_CHAT_AUTH_HEADER,
13
- LOBE_CHAT_OIDC_AUTH_HEADER,
14
- OAUTH_AUTHORIZED,
15
- enableBetterAuth,
16
- } from '@/envs/auth';
12
+ import { LOBE_CHAT_AUTH_HEADER, LOBE_CHAT_OIDC_AUTH_HEADER, OAUTH_AUTHORIZED } from '@/envs/auth';
17
13
  import { validateOIDCJWT } from '@/libs/oidc-provider/jwt';
18
14
  import { createErrorResponse } from '@/utils/errorResponse';
19
15
 
@@ -58,18 +54,13 @@ export const checkAuth =
58
54
  // get Authorization from header
59
55
  const authorization = req.headers.get(LOBE_CHAT_AUTH_HEADER);
60
56
  const oauthAuthorized = !!req.headers.get(OAUTH_AUTHORIZED);
61
- let betterAuthAuthorized = false;
62
57
 
63
58
  // better auth handler
64
- if (enableBetterAuth) {
65
- const { auth: betterAuth } = await import('@/auth');
66
-
67
- const session = await betterAuth.api.getSession({
68
- headers: req.headers,
69
- });
59
+ const session = await auth.api.getSession({
60
+ headers: req.headers,
61
+ });
70
62
 
71
- betterAuthAuthorized = !!session?.user?.id;
72
- }
63
+ const betterAuthAuthorized = !!session?.user?.id;
73
64
 
74
65
  if (!authorization) throw AgentRuntimeError.createError(ChatErrorType.Unauthorized);
75
66
 
@@ -2,49 +2,17 @@ import { beforeEach, describe, expect, it, vi } from 'vitest';
2
2
 
3
3
  import { checkAuthMethod } from './utils';
4
4
 
5
- let enableNextAuthMock = false;
6
- let enableBetterAuthMock = false;
7
-
8
- vi.mock('@/envs/auth', async (importOriginal) => {
9
- const data = await importOriginal();
10
-
11
- return {
12
- ...(data as any),
13
- get enableBetterAuth() {
14
- return enableBetterAuthMock;
15
- },
16
- get enableNextAuth() {
17
- return enableNextAuthMock;
18
- },
19
- };
20
- });
21
-
22
5
  describe('checkAuthMethod', () => {
23
6
  beforeEach(() => {
24
7
  vi.clearAllMocks();
25
8
  });
26
9
 
27
- it('should pass with valid Next auth', () => {
28
- enableNextAuthMock = true;
29
- expect(() =>
30
- checkAuthMethod({
31
- nextAuthAuthorized: true,
32
- }),
33
- ).not.toThrow();
34
-
35
- enableNextAuthMock = false;
36
- });
37
-
38
10
  it('should pass with valid Better Auth session', () => {
39
- enableBetterAuthMock = true;
40
-
41
11
  expect(() =>
42
12
  checkAuthMethod({
43
13
  betterAuthAuthorized: true,
44
14
  }),
45
15
  ).not.toThrow();
46
-
47
- enableBetterAuthMock = false;
48
16
  });
49
17
 
50
18
  it('should pass with valid API key', () => {
@@ -1,5 +1,3 @@
1
- import { enableBetterAuth, enableNextAuth } from '@/envs/auth';
2
-
3
1
  interface CheckAuthParams {
4
2
  apiKey?: string;
5
3
  betterAuthAuthorized?: boolean;
@@ -11,16 +9,13 @@ interface CheckAuthParams {
11
9
  * @param {CheckAuthParams} params - Authentication parameters extracted from headers.
12
10
  * @param {string} [params.apiKey] - The user API key.
13
11
  * @param {boolean} [params.betterAuthAuthorized] - Whether the Better Auth session exists.
14
- * @param {boolean} [params.nextAuthAuthorized] - Whether the OAuth 2 header is provided.
12
+ * @param {boolean} [params.nextAuthAuthorized] - Whether the OAuth 2 header is provided (legacy, kept for compatibility).
15
13
  */
16
14
  export const checkAuthMethod = (params: CheckAuthParams) => {
17
- const { apiKey, betterAuthAuthorized, nextAuthAuthorized } = params;
15
+ const { apiKey, betterAuthAuthorized } = params;
18
16
 
19
17
  // if better auth session exists
20
- if (enableBetterAuth && betterAuthAuthorized) return;
21
-
22
- // if next auth handler is provided
23
- if (enableNextAuth && nextAuthAuthorized) return;
18
+ if (betterAuthAuthorized) return;
24
19
 
25
20
  // if apiKey exist
26
21
  if (apiKey) return;
@@ -27,10 +27,17 @@ vi.mock('@/envs/auth', async (importOriginal) => {
27
27
  const actual = await importOriginal<typeof import('@/envs/auth')>();
28
28
  return {
29
29
  ...actual,
30
- enableBetterAuth: false,
31
30
  };
32
31
  });
33
32
 
33
+ vi.mock('@/auth', () => ({
34
+ auth: {
35
+ api: {
36
+ getSession: vi.fn().mockResolvedValue(null),
37
+ },
38
+ },
39
+ }));
40
+
34
41
  // 模拟请求和响应
35
42
  let request: Request;
36
43
  beforeEach(() => {
@@ -21,7 +21,6 @@ const handler = async (req: Request, { jwtPayload }: { jwtPayload?: any }) => {
21
21
 
22
22
  const caller = createCaller({
23
23
  jwtPayload,
24
- nextAuth: undefined, // WebAPI routes don't have nextAuth session
25
24
  userId: jwtPayload?.userId, // Required for userAuth middleware
26
25
  });
27
26
 
@@ -21,10 +21,17 @@ vi.mock('@/envs/auth', async (importOriginal) => {
21
21
  const actual = await importOriginal<typeof import('@/envs/auth')>();
22
22
  return {
23
23
  ...actual,
24
- enableBetterAuth: false,
25
24
  };
26
25
  });
27
26
 
27
+ vi.mock('@/auth', () => ({
28
+ auth: {
29
+ api: {
30
+ getSession: vi.fn().mockResolvedValue(null),
31
+ },
32
+ },
33
+ }));
34
+
28
35
  vi.mock('@/server/modules/ModelRuntime', () => ({
29
36
  initModelRuntimeFromDB: vi.fn(),
30
37
  }));
@@ -7,7 +7,7 @@ import { ChevronRight, Mail } from 'lucide-react';
7
7
  import { useEffect, useRef } from 'react';
8
8
  import { Trans, useTranslation } from 'react-i18next';
9
9
 
10
- import AuthIcons from '@/components/NextAuth/AuthIcons';
10
+ import AuthIcons from '@/components/AuthIcons';
11
11
  import { PRIVACY_URL, TERMS_URL } from '@/const/url';
12
12
 
13
13
  import AuthCard from '../../../../features/AuthCard';
@@ -1,5 +1,3 @@
1
- import { enableBetterAuth } from '@/envs/auth';
2
- import { notFound } from '@/libs/next/navigation';
3
1
  import { metadataModule } from '@/server/metadata';
4
2
  import { translation } from '@/server/translation';
5
3
  import { type DynamicLayoutProps } from '@/types/next';
@@ -9,28 +7,17 @@ import BetterAuthSignUpForm from './BetterAuthSignUpForm';
9
7
 
10
8
  export const generateMetadata = async (props: DynamicLayoutProps) => {
11
9
  const locale = await RouteVariants.getLocale(props);
12
-
13
- if (enableBetterAuth) {
14
- const { t } = await translation('auth', locale);
15
- return metadataModule.generate({
16
- description: t('betterAuth.signup.subtitle'),
17
- title: t('betterAuth.signup.title'),
18
- url: '/signup',
19
- });
20
- }
10
+ const { t } = await translation('auth', locale);
21
11
 
22
12
  return metadataModule.generate({
23
- title: 'Sign Up',
13
+ description: t('betterAuth.signup.subtitle'),
14
+ title: t('betterAuth.signup.title'),
24
15
  url: '/signup',
25
16
  });
26
17
  };
27
18
 
28
19
  const Page = () => {
29
- if (enableBetterAuth) {
30
- return <BetterAuthSignUpForm />;
31
- }
32
-
33
- return notFound();
20
+ return <BetterAuthSignUpForm />;
34
21
  };
35
22
 
36
23
  export default Page;
@@ -11,7 +11,7 @@ import { Editor, useEditor } from '@lobehub/editor/react';
11
11
  import { Flexbox, Icon, Text } from '@lobehub/ui';
12
12
  import { Card } from 'antd';
13
13
  import { Clock } from 'lucide-react';
14
- import { memo, useCallback, useEffect, useRef } from 'react';
14
+ import { type RefObject, memo, useCallback, useEffect, useRef } from 'react';
15
15
  import { useTranslation } from 'react-i18next';
16
16
 
17
17
  interface CronJobContentEditorProps {
@@ -20,8 +20,12 @@ interface CronJobContentEditorProps {
20
20
  onChange: (value: string) => void;
21
21
  }
22
22
 
23
- const CronJobContentEditor = memo<CronJobContentEditorProps>(
24
- ({ enableRichRender, initialValue, onChange }) => {
23
+ interface CronJobContentEditorInnerProps extends CronJobContentEditorProps {
24
+ contentRef: RefObject<string>;
25
+ }
26
+
27
+ const CronJobContentEditorInner = memo<CronJobContentEditorInnerProps>(
28
+ ({ enableRichRender, initialValue, onChange, contentRef }) => {
25
29
  const { t } = useTranslation('setting');
26
30
  const editor = useEditor();
27
31
  const currentValueRef = useRef(initialValue);
@@ -31,23 +35,6 @@ const CronJobContentEditor = memo<CronJobContentEditorProps>(
31
35
  currentValueRef.current = initialValue;
32
36
  }, [initialValue]);
33
37
 
34
- // Initialize editor content when editor is ready
35
- useEffect(() => {
36
- if (!editor) return;
37
- try {
38
- setTimeout(() => {
39
- if (initialValue) {
40
- editor.setDocument(enableRichRender ? 'markdown' : 'text', initialValue);
41
- }
42
- }, 100);
43
- } catch (error) {
44
- console.error('[CronJobContentEditor] Failed to initialize editor content:', error);
45
- setTimeout(() => {
46
- editor.setDocument(enableRichRender ? 'markdown' : 'text', initialValue);
47
- }, 100);
48
- }
49
- }, [editor, enableRichRender, initialValue]);
50
-
51
38
  // Handle content changes
52
39
  const handleContentChange = useCallback(
53
40
  (e: any) => {
@@ -57,13 +44,18 @@ const CronJobContentEditor = memo<CronJobContentEditorProps>(
57
44
 
58
45
  const finalContent = nextContent || '';
59
46
 
47
+ // Save to parent ref for restoration
48
+ if (contentRef) {
49
+ (contentRef as { current: string }).current = finalContent;
50
+ }
51
+
60
52
  // Only call onChange if content actually changed
61
53
  if (finalContent !== currentValueRef.current) {
62
54
  currentValueRef.current = finalContent;
63
55
  onChange(finalContent);
64
56
  }
65
57
  },
66
- [enableRichRender, onChange],
58
+ [enableRichRender, onChange, contentRef],
67
59
  );
68
60
 
69
61
  return (
@@ -82,6 +74,14 @@ const CronJobContentEditor = memo<CronJobContentEditorProps>(
82
74
  content={''}
83
75
  editor={editor}
84
76
  lineEmptyPlaceholder={t('agentCronJobs.form.content.placeholder')}
77
+ onInit={(editor) => {
78
+ // Restore content from parent ref when editor re-initializes
79
+ if (contentRef?.current) {
80
+ editor.setDocument(enableRichRender ? 'markdown' : 'text', contentRef.current);
81
+ } else if (initialValue) {
82
+ editor.setDocument(enableRichRender ? 'markdown' : 'text', initialValue);
83
+ }
84
+ }}
85
85
  onTextChange={handleContentChange}
86
86
  placeholder={t('agentCronJobs.form.content.placeholder')}
87
87
  plugins={
@@ -108,4 +108,17 @@ const CronJobContentEditor = memo<CronJobContentEditorProps>(
108
108
  },
109
109
  );
110
110
 
111
+ const CronJobContentEditor = (props: CronJobContentEditorProps) => {
112
+ // Ref to persist content across re-mounts when enableRichRender changes
113
+ const contentRef = useRef<string>(props.initialValue);
114
+
115
+ return (
116
+ <CronJobContentEditorInner
117
+ contentRef={contentRef}
118
+ key={`editor-${props.enableRichRender}`}
119
+ {...props}
120
+ />
121
+ );
122
+ };
123
+
111
124
  export default CronJobContentEditor;
@@ -5,8 +5,7 @@ import { type CSSProperties, memo, useMemo } from 'react';
5
5
  import { useTranslation } from 'react-i18next';
6
6
 
7
7
  import { modal, notification } from '@/components/AntdStaticMethods';
8
- import AuthIcons from '@/components/NextAuth/AuthIcons';
9
- import { userService } from '@/services/user';
8
+ import AuthIcons from '@/components/AuthIcons';
10
9
  import { useServerConfigStore } from '@/store/serverConfig';
11
10
  import { serverConfigSelectors } from '@/store/serverConfig/selectors';
12
11
  import { useUserStore } from '@/store/user';
@@ -17,7 +16,7 @@ const providerNameStyle: CSSProperties = {
17
16
  };
18
17
 
19
18
  export const SSOProvidersList = memo(() => {
20
- const isLoginWithBetterAuth = useUserStore(authSelectors.isLoginWithBetterAuth);
19
+ const isLogin = useUserStore(authSelectors.isLogin);
21
20
  const providers = useUserStore(authSelectors.authProviders);
22
21
  const hasPasswordAccount = useUserStore(authSelectors.hasPasswordAccount);
23
22
  const refreshAuthProviders = useUserStore((s) => s.refreshAuthProviders);
@@ -26,7 +25,7 @@ export const SSOProvidersList = memo(() => {
26
25
 
27
26
  // Allow unlink if user has multiple SSO providers OR has email/password login
28
27
  const allowUnlink = providers.length > 1 || hasPasswordAccount;
29
- const enableBetterAuthActions = !isDesktop && isLoginWithBetterAuth;
28
+ const enableAuthActions = !isDesktop && isLogin;
30
29
 
31
30
  // Get linked provider IDs for filtering
32
31
  const linkedProviderIds = useMemo(() => {
@@ -38,9 +37,9 @@ export const SSOProvidersList = memo(() => {
38
37
  return (oAuthSSOProviders || []).filter((provider) => !linkedProviderIds.has(provider));
39
38
  }, [oAuthSSOProviders, linkedProviderIds]);
40
39
 
41
- const handleUnlinkSSO = async (provider: string, providerAccountId: string) => {
40
+ const handleUnlinkSSO = async (provider: string) => {
42
41
  // Better-auth link/unlink operations are not available on desktop
43
- if (isDesktop && isLoginWithBetterAuth) return;
42
+ if (isDesktop) return;
44
43
 
45
44
  // Prevent unlink if this is the only login method
46
45
  if (!allowUnlink) {
@@ -55,14 +54,8 @@ export const SSOProvidersList = memo(() => {
55
54
  danger: true,
56
55
  },
57
56
  onOk: async () => {
58
- if (isLoginWithBetterAuth) {
59
- // Use better-auth native API
60
- const { unlinkAccount } = await import('@/libs/better-auth/auth-client');
61
- await unlinkAccount({ providerId: provider });
62
- } else {
63
- // Fallback for NextAuth
64
- await userService.unlinkSSOProvider(provider, providerAccountId);
65
- }
57
+ const { unlinkAccount } = await import('@/libs/better-auth/auth-client');
58
+ await unlinkAccount({ providerId: provider });
66
59
  refreshAuthProviders();
67
60
  },
68
61
  title: <span style={providerNameStyle}>{t('profile.sso.unlink.title', { provider })}</span>,
@@ -70,7 +63,7 @@ export const SSOProvidersList = memo(() => {
70
63
  };
71
64
 
72
65
  const handleLinkSSO = async (provider: string) => {
73
- if (enableBetterAuthActions) {
66
+ if (enableAuthActions) {
74
67
  // Use better-auth native linkSocial API
75
68
  const { linkSocial } = await import('@/libs/better-auth/auth-client');
76
69
  await linkSocial({
@@ -107,19 +100,19 @@ export const SSOProvidersList = memo(() => {
107
100
  </Text>
108
101
  )}
109
102
  </Flexbox>
110
- {!(isDesktop && isLoginWithBetterAuth) && (
103
+ {!isDesktop && (
111
104
  <ActionIcon
112
105
  disabled={!allowUnlink}
113
106
  icon={Unlink}
114
- onClick={() => handleUnlinkSSO(item.provider, item.providerAccountId)}
107
+ onClick={() => handleUnlinkSSO(item.provider)}
115
108
  size={'small'}
116
109
  />
117
110
  )}
118
111
  </Flexbox>
119
112
  ))}
120
113
 
121
- {/* Link Account Button - Only show for Better-Auth users with available providers */}
122
- {enableBetterAuthActions && availableProviders.length > 0 && (
114
+ {/* Link Account Button - Only show for logged in users with available providers */}
115
+ {enableAuthActions && availableProviders.length > 0 && (
123
116
  <DropdownMenu items={linkMenuItems} popupProps={{ style: { maxWidth: '200px' } }}>
124
117
  <Flexbox align={'center'} gap={6} horizontal style={{ cursor: 'pointer', fontSize: 12 }}>
125
118
  <Plus size={14} />
@@ -51,10 +51,7 @@ interface ProfileSettingProps {
51
51
  }
52
52
 
53
53
  const ProfileSetting = ({ mobile }: ProfileSettingProps) => {
54
- const [isLoginWithNextAuth, isLoginWithBetterAuth] = useUserStore((s) => [
55
- authSelectors.isLoginWithNextAuth(s),
56
- authSelectors.isLoginWithBetterAuth(s),
57
- ]);
54
+ const isLogin = useUserStore(authSelectors.isLogin);
58
55
  const [userProfile, isUserLoaded] = useUserStore((s) => [
59
56
  userProfileSelectors.userProfile(s),
60
57
  s.isLoaded,
@@ -72,17 +69,14 @@ const ProfileSetting = ({ mobile }: ProfileSettingProps) => {
72
69
  // Fetch Klavis servers
73
70
  useFetchUserKlavisServers(enableKlavis);
74
71
 
75
- const isLoginWithAuth = isLoginWithNextAuth || isLoginWithBetterAuth;
76
72
  const isLoading =
77
- !isUserLoaded ||
78
- (isLoginWithAuth && !isLoadedAuthProviders) ||
79
- (enableKlavis && !isServersInit);
73
+ !isUserLoaded || (isLogin && !isLoadedAuthProviders) || (enableKlavis && !isServersInit);
80
74
 
81
75
  useEffect(() => {
82
- if (isLoginWithAuth) {
76
+ if (isLogin) {
83
77
  fetchAuthProviders();
84
78
  }
85
- }, [isLoginWithAuth, fetchAuthProviders]);
79
+ }, [isLogin, fetchAuthProviders]);
86
80
 
87
81
  const { t } = useTranslation('auth');
88
82
 
@@ -118,8 +112,8 @@ const ProfileSetting = ({ mobile }: ProfileSettingProps) => {
118
112
  {/* Interests Row - Editable */}
119
113
  <InterestsRow mobile={mobile} />
120
114
 
121
- {/* Password Row - For Better Auth users to change or set password */}
122
- {!isDesktop && isLoginWithBetterAuth && (
115
+ {/* Password Row - For logged in users to change or set password */}
116
+ {!isDesktop && isLogin && (
123
117
  <>
124
118
  <Divider style={{ margin: 0 }} />
125
119
  <PasswordRow mobile={mobile} />
@@ -127,7 +121,7 @@ const ProfileSetting = ({ mobile }: ProfileSettingProps) => {
127
121
  )}
128
122
 
129
123
  {/* Email Row - Read Only */}
130
- {isLoginWithAuth && userProfile?.email && (
124
+ {isLogin && userProfile?.email && (
131
125
  <>
132
126
  <Divider style={{ margin: 0 }} />
133
127
  <ProfileRow label={t('profile.email')} mobile={mobile}>
@@ -137,7 +131,7 @@ const ProfileSetting = ({ mobile }: ProfileSettingProps) => {
137
131
  )}
138
132
 
139
133
  {/* SSO Providers Row */}
140
- {isLoginWithAuth && (
134
+ {isLogin && (
141
135
  <>
142
136
  <Divider style={{ margin: 0 }} />
143
137
  <ProfileRow label={t('profile.sso.providers')} mobile={mobile}>
@@ -8,12 +8,10 @@ import {
8
8
  Github,
9
9
  Logto,
10
10
  MicrosoftEntra,
11
- NextAuth,
12
11
  Zitadel,
13
12
  } from '@lobehub/ui/icons';
14
- import React from 'react';
13
+ import { User } from 'lucide-react';
15
14
 
16
- // TODO: check this
17
15
  const iconComponents: { [key: string]: any } = {
18
16
  'apple': Apple,
19
17
  'auth0': Auth0,
@@ -22,7 +20,6 @@ const iconComponents: { [key: string]: any } = {
22
20
  'casdoor': Casdoor.Color,
23
21
  'cloudflare': Cloudflare.Color,
24
22
  'cognito': Aws.Color,
25
- 'default': NextAuth.Color,
26
23
  'github': Github,
27
24
  'google': Google.Color,
28
25
  'logto': Logto.Color,
@@ -32,14 +29,15 @@ const iconComponents: { [key: string]: any } = {
32
29
  };
33
30
 
34
31
  /**
35
- * Get the auth icons component for the given id
36
- * @param id
37
- * @param size default is 36
38
- * @returns
32
+ * Get the auth icons component for the given provider id
39
33
  */
40
34
  const AuthIcons = (id: string, size = 36) => {
41
- const IconComponent = iconComponents[id] || iconComponents.default;
42
- return <IconComponent size={size} />;
35
+ const IconComponent = iconComponents[id];
36
+ if (IconComponent) {
37
+ return <IconComponent size={size} />;
38
+ }
39
+ // Fallback to generic user icon for unknown providers
40
+ return <User size={size} />;
43
41
  };
44
42
 
45
43
  export default AuthIcons;