create-windy 0.2.33 → 0.3.0
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.
- package/dist/cli.js +173 -17
- package/package.json +1 -1
- package/template/.agents/skills/windy-business-module/SKILL.md +10 -1
- package/template/.windy-template.json +2 -2
- package/template/AGENTS.md +9 -0
- package/template/README.md +3 -1
- package/template/apps/agent-server/Dockerfile +1 -0
- package/template/apps/agent-server/README.md +28 -5
- package/template/apps/agent-server/adk_web_agents/__init__.py +1 -0
- package/template/apps/agent-server/adk_web_agents/safe_debug/__init__.py +3 -0
- package/template/apps/agent-server/adk_web_agents/safe_debug/agent.py +40 -0
- package/template/apps/agent-server/pyproject.toml +1 -1
- package/template/apps/agent-server/src/southwind_agent_server/adk_adapter.py +191 -16
- package/template/apps/agent-server/src/southwind_agent_server/adk_failure.py +13 -0
- package/template/apps/agent-server/src/southwind_agent_server/adk_model.py +225 -0
- package/template/apps/agent-server/src/southwind_agent_server/adk_tools.py +76 -0
- package/template/apps/agent-server/src/southwind_agent_server/app.py +63 -3
- package/template/apps/agent-server/src/southwind_agent_server/contracts.py +35 -0
- package/template/apps/agent-server/src/southwind_agent_server/engine.py +2 -0
- package/template/apps/agent-server/src/southwind_agent_server/openai_engine.py +31 -3
- package/template/apps/agent-server/src/southwind_agent_server/openai_provider.py +22 -9
- package/template/apps/agent-server/src/southwind_agent_server/provider_audit.py +144 -0
- package/template/apps/agent-server/src/southwind_agent_server/provider_governance.py +227 -0
- package/template/apps/agent-server/src/southwind_agent_server/service.py +1 -0
- package/template/apps/agent-server/tests/test_adk_adapter.py +305 -0
- package/template/apps/agent-server/tests/test_adk_web_agent.py +12 -0
- package/template/apps/agent-server/tests/test_api.py +16 -1
- package/template/apps/agent-server/tests/test_openai_provider.py +79 -0
- package/template/apps/agent-server/tests/test_provider_governance.py +215 -0
- package/template/apps/server/package.json +4 -1
- package/template/apps/server/src/agent/provider-input-governance.test.ts +82 -0
- package/template/apps/server/src/agent/provider-input-governance.ts +140 -0
- package/template/apps/server/src/agent/remote-runtime.test.ts +22 -0
- package/template/apps/server/src/agent/remote-runtime.ts +1 -0
- package/template/apps/server/src/agent/run-contracts.ts +2 -0
- package/template/apps/server/src/agent/run-facade.test.ts +52 -2
- package/template/apps/server/src/agent/run-facade.ts +38 -9
- package/template/apps/server/src/agent/tool-registry.ts +2 -6
- package/template/apps/server/src/application-services.ts +50 -0
- package/template/apps/server/src/audit/drizzle-log-store.ts +25 -0
- package/template/apps/server/src/audit/search-summary.ts +2 -6
- package/template/apps/server/src/auth/credential-restriction.ts +1 -0
- package/template/apps/server/src/auth/password.ts +30 -21
- package/template/apps/server/src/auth/routes.test.ts +44 -3
- package/template/apps/server/src/auth/routes.ts +6 -1
- package/template/apps/server/src/auth/runtime.ts +4 -1
- package/template/apps/server/src/auth/service.ts +25 -7
- package/template/apps/server/src/configuration/bootstrap.ts +20 -1
- package/template/apps/server/src/configuration/definition.test.ts +71 -0
- package/template/apps/server/src/configuration/definition.ts +242 -12
- package/template/apps/server/src/configuration/drizzle-repository.ts +36 -2
- package/template/apps/server/src/configuration/repository.ts +27 -2
- package/template/apps/server/src/configuration/routes.ts +4 -1
- package/template/apps/server/src/configuration/service.test.ts +100 -0
- package/template/apps/server/src/configuration/service.ts +50 -10
- package/template/apps/server/src/data-access/scoped-repository.integration.test.ts +3 -2
- package/template/apps/server/src/data-governance/export/service.ts +2 -6
- package/template/apps/server/src/example-modules.ts +4 -1
- package/template/apps/server/src/guards.ts +18 -5
- package/template/apps/server/src/http/request-source.test.ts +85 -0
- package/template/apps/server/src/http/request-source.ts +90 -0
- package/template/apps/server/src/index.ts +45 -45
- package/template/apps/server/src/license/routes.ts +2 -0
- package/template/apps/server/src/license/runtime-service.ts +10 -11
- package/template/apps/server/src/module-bootstrap.ts +2 -2
- package/template/apps/server/src/module-host/initialize-contracts.ts +6 -0
- package/template/apps/server/src/module-host/initialize.ts +30 -44
- package/template/apps/server/src/module-host/request-context.ts +29 -23
- package/template/apps/server/src/module-host/resource-file-policies.test.ts +197 -0
- package/template/apps/server/src/module-host/resource-file-policies.ts +108 -0
- package/template/apps/server/src/module-host/route-declaration.ts +45 -0
- package/template/apps/server/src/module-host/route-installer.ts +27 -3
- package/template/apps/server/src/module-host/storage-port.test.ts +170 -1
- package/template/apps/server/src/module-host/storage-port.ts +134 -1
- package/template/apps/server/src/module-host/storage-scope.ts +89 -0
- package/template/apps/server/src/module-host/tool-handlers.test.ts +305 -0
- package/template/apps/server/src/module-host/tool-handlers.ts +38 -4
- package/template/apps/server/src/module-host/user-directory-composition.test.ts +126 -0
- package/template/apps/server/src/module-host/user-directory-port.test.ts +238 -0
- package/template/apps/server/src/module-host/user-directory-port.ts +139 -0
- package/template/apps/server/src/module-host.ts +4 -0
- package/template/apps/server/src/notification/channel-adapter.ts +46 -0
- package/template/apps/server/src/notification/delivery-policy.test.ts +59 -0
- package/template/apps/server/src/notification/delivery-policy.ts +37 -0
- package/template/apps/server/src/notification/delivery-repository.ts +198 -0
- package/template/apps/server/src/notification/delivery-worker.test.ts +87 -0
- package/template/apps/server/src/notification/delivery-worker.ts +88 -0
- package/template/apps/server/src/notification/drizzle-management.ts +180 -0
- package/template/apps/server/src/notification/drizzle-query.ts +160 -0
- package/template/apps/server/src/notification/drizzle-repository.integration.test.ts +301 -0
- package/template/apps/server/src/notification/drizzle-repository.ts +156 -90
- package/template/apps/server/src/notification/extension-routes.test.ts +119 -0
- package/template/apps/server/src/notification/extension-routes.ts +111 -0
- package/template/apps/server/src/notification/memory-delivery-repository.ts +137 -0
- package/template/apps/server/src/notification/memory-support.ts +72 -0
- package/template/apps/server/src/notification/preference-repository.ts +95 -0
- package/template/apps/server/src/notification/recipient-directory.ts +104 -0
- package/template/apps/server/src/notification/repository.test.ts +171 -0
- package/template/apps/server/src/notification/repository.ts +179 -32
- package/template/apps/server/src/notification/revision-routes.test.ts +186 -0
- package/template/apps/server/src/notification/route-support.ts +225 -0
- package/template/apps/server/src/notification/routes.test.ts +182 -0
- package/template/apps/server/src/notification/routes.ts +225 -132
- package/template/apps/server/src/notification/service.test.ts +104 -0
- package/template/apps/server/src/notification/service.ts +140 -0
- package/template/apps/server/src/notification/smtp-adapter.test.ts +65 -0
- package/template/apps/server/src/notification/smtp-adapter.ts +68 -0
- package/template/apps/server/src/persistence.integration.test.ts +41 -2
- package/template/apps/server/src/route-guards.ts +1 -0
- package/template/apps/server/src/runtime-audit-list.test.ts +39 -0
- package/template/apps/server/src/runtime-development.ts +2 -0
- package/template/apps/server/src/runtime.test.ts +23 -9
- package/template/apps/server/src/runtime.ts +39 -2
- package/template/apps/server/src/scheduler/audit.ts +2 -11
- package/template/apps/server/src/scheduler/definitions.test.ts +6 -0
- package/template/apps/server/src/scheduler/definitions.ts +7 -0
- package/template/apps/server/src/scheduler/recovery-service.ts +2 -11
- package/template/apps/server/src/scheduler/routes.ts +2 -7
- package/template/apps/server/src/search/opensearch-client.test.ts +45 -0
- package/template/apps/server/src/search/opensearch-client.ts +145 -0
- package/template/apps/server/src/search/service.ts +2 -6
- package/template/apps/server/src/settings/routes.ts +15 -3
- package/template/apps/server/src/settings/runtime.ts +10 -1
- package/template/apps/server/src/storage/runtime.ts +13 -0
- package/template/apps/server/src/system/audit-query.ts +33 -4
- package/template/apps/server/src/system/audit-routes.test.ts +58 -4
- package/template/apps/server/src/system/audit-routes.ts +6 -5
- package/template/apps/server/src/system/built-in-roles.ts +1 -0
- package/template/apps/server/src/system/department-organization.ts +320 -0
- package/template/apps/server/src/system/department-routes.test.ts +207 -48
- package/template/apps/server/src/system/department-routes.ts +114 -33
- package/template/apps/server/src/system/drizzle-repository.ts +15 -7
- package/template/apps/server/src/system/drizzle-scoped-repository.ts +5 -3
- package/template/apps/server/src/system/drizzle-system.ts +37 -9
- package/template/apps/server/src/system/drizzle-transaction-context.ts +14 -0
- package/template/apps/server/src/system/identity-route-config.ts +7 -2
- package/template/apps/server/src/system/mutation-runner.ts +23 -0
- package/template/apps/server/src/system/organization-postgres.integration.test.ts +176 -0
- package/template/apps/server/src/system/resource-access-response.ts +12 -6
- package/template/apps/server/src/system/role-department-scope-policy.ts +55 -0
- package/template/apps/server/src/system/route-helpers.ts +2 -5
- package/template/apps/server/src/system/route-types.ts +12 -3
- package/template/apps/server/src/system/routes-validation.test.ts +26 -0
- package/template/apps/server/src/system/routes.test.ts +10 -2
- package/template/apps/server/src/system/routes.ts +70 -36
- package/template/apps/server/src/system/seed.ts +7 -0
- package/template/apps/server/src/work-order/data-scope.integration.test.ts +9 -2
- package/template/apps/server/src/work-order/opensearch-index.test.ts +97 -0
- package/template/apps/server/src/work-order/opensearch-index.ts +313 -0
- package/template/apps/server/src/work-order/search-provider.ts +60 -1
- package/template/apps/server/src/work-order/service.ts +42 -10
- package/template/apps/web/src/app/error-pages.ts +9 -0
- package/template/apps/web/src/components/auth/PasswordChangeForm.vue +16 -11
- package/template/apps/web/src/components/auth/PasswordChangeForm.webtest.ts +14 -0
- package/template/apps/web/src/components/common/FormDialog.vue +16 -2
- package/template/apps/web/src/components/common/ModalLayout.webtest.ts +20 -1
- package/template/apps/web/src/composables/useGlobalSearch.ts +68 -0
- package/template/apps/web/src/composables/usePlatformSettings.ts +8 -7
- package/template/apps/web/src/layout/GlobalSearchResults.vue +58 -0
- package/template/apps/web/src/layout/NavigationSearchDialog.vue +42 -6
- package/template/apps/web/src/layout/NavigationSearchDialog.webtest.ts +71 -0
- package/template/apps/web/src/layout/NotificationMenu.vue +73 -31
- package/template/apps/web/src/layout/NotificationMenu.webtest.ts +44 -1
- package/template/apps/web/src/layout/NotificationMenuItem.vue +61 -0
- package/template/apps/web/src/layout/NotificationPreferencesDialog.vue +181 -0
- package/template/apps/web/src/layout/NotificationPreferencesDialog.webtest.ts +80 -0
- package/template/apps/web/src/lib/date-time.ts +22 -10
- package/template/apps/web/src/lib/date-time.webtest.ts +9 -1
- package/template/apps/web/src/main.ts +14 -1
- package/template/apps/web/src/pages/auth/ChangePasswordPage.vue +16 -1
- package/template/apps/web/src/pages/configuration/components/ModuleConfigVersionList.vue +1 -0
- package/template/apps/web/src/pages/configuration/components/ModuleConfigurationEditor.vue +10 -0
- package/template/apps/web/src/pages/configuration/components/ModuleConfigurationWorkbench.vue +37 -6
- package/template/apps/web/src/pages/errors/PlatformErrorPage.vue +115 -0
- package/template/apps/web/src/pages/errors/PlatformErrorPage.webtest.ts +44 -0
- package/template/apps/web/src/pages/errors/error-page-extension.ts +26 -0
- package/template/apps/web/src/pages/system/SystemNotificationsPage.vue +136 -68
- package/template/apps/web/src/pages/system/SystemNotificationsPage.webtest.ts +224 -12
- package/template/apps/web/src/pages/system/audit-log-presenter.ts +86 -0
- package/template/apps/web/src/pages/system/audit-time-range.ts +28 -0
- package/template/apps/web/src/pages/system/components/AuditActionCell.vue +10 -69
- package/template/apps/web/src/pages/system/components/AuditActionCell.webtest.ts +20 -27
- package/template/apps/web/src/pages/system/components/AuditLogDetailDialog.vue +134 -0
- package/template/apps/web/src/pages/system/components/AuditLogDetailDialog.webtest.ts +76 -0
- package/template/apps/web/src/pages/system/components/AuditLogFilters.vue +116 -52
- package/template/apps/web/src/pages/system/components/AuditLogFilters.webtest.ts +52 -15
- package/template/apps/web/src/pages/system/components/NotificationHistoryDialog.vue +129 -0
- package/template/apps/web/src/pages/system/components/NotificationManagementCard.vue +91 -0
- package/template/apps/web/src/pages/system/components/NotificationPublishDialog.vue +121 -0
- package/template/apps/web/src/pages/system/components/NotificationPublishForm.vue +162 -1
- package/template/apps/web/src/pages/system/components/SystemResourceActions.vue +68 -0
- package/template/apps/web/src/pages/system/components/SystemResourceEditor.vue +74 -0
- package/template/apps/web/src/pages/system/components/SystemResourceFilters.vue +3 -4
- package/template/apps/web/src/pages/system/components/SystemResourcePage.vue +91 -98
- package/template/apps/web/src/pages/system/components/SystemResourcePage.webtest.ts +68 -0
- package/template/apps/web/src/pages/system/components/SystemResourceTable.vue +20 -1
- package/template/apps/web/src/pages/system/components/SystemResourceTable.webtest.ts +28 -7
- package/template/apps/web/src/pages/system/components/department/DepartmentOrganizationForm.vue +210 -0
- package/template/apps/web/src/pages/system/components/department/DepartmentTransitionDialog.vue +112 -0
- package/template/apps/web/src/pages/system/components/user-account/UserAccountForm.vue +17 -4
- package/template/apps/web/src/pages/system/composables/useDepartmentTransitions.ts +79 -0
- package/template/apps/web/src/pages/system/composables/useNotificationPermissions.ts +14 -0
- package/template/apps/web/src/pages/system/composables/useSystemResource.ts +2 -0
- package/template/apps/web/src/pages/system/composables/useSystemResource.webtest.ts +15 -2
- package/template/apps/web/src/pages/system/resource-config.ts +12 -4
- package/template/apps/web/src/router/error-navigation.ts +50 -0
- package/template/apps/web/src/router/error-navigation.webtest.ts +106 -0
- package/template/apps/web/src/router/index.ts +71 -0
- package/template/apps/web/src/router/index.webtest.ts +29 -0
- package/template/apps/web/src/router/manifest-routes.webtest.ts +4 -0
- package/template/apps/web/src/router/shared-scaffold-neutrality.webtest.ts +12 -0
- package/template/apps/web/src/services/auth-api.ts +5 -0
- package/template/apps/web/src/services/http.ts +43 -6
- package/template/apps/web/src/services/http.webtest.ts +70 -0
- package/template/apps/web/src/services/notification-api.ts +85 -2
- package/template/apps/web/src/services/notification-api.webtest.ts +110 -0
- package/template/apps/web/src/services/search-api.ts +39 -0
- package/template/apps/web/src/services/system-api.ts +18 -0
- package/template/apps/web/vitest.config.ts +1 -0
- package/template/docker-compose.yml +68 -0
- package/template/docs/architecture/ai-egress.md +49 -7
- package/template/docs/architecture/ai-runtime.md +34 -6
- package/template/docs/architecture/data-scope-query-enforcement.md +4 -0
- package/template/docs/architecture/object-storage.md +22 -2
- package/template/docs/architecture/search-provider-protocol.md +38 -2
- package/template/docs/development/custom-error-pages.md +78 -0
- package/template/docs/development/custom-login-page.md +3 -3
- package/template/docs/platform/agent-runtime.md +76 -7
- package/template/docs/platform/audit-reliability.md +46 -2
- package/template/docs/platform/business-user-directory.md +82 -0
- package/template/docs/platform/module-configuration.md +13 -4
- package/template/docs/platform/notifications.md +67 -11
- package/template/docs/platform/organization-membership.md +17 -3
- package/template/docs/platform/system-crud-api.md +16 -0
- package/template/docs/platform/web-system-crud.md +6 -2
- package/template/package.json +4 -0
- package/template/packages/config/index.test.ts +45 -0
- package/template/packages/config/package.json +1 -1
- package/template/packages/config/src/platform.ts +169 -48
- package/template/packages/database/drizzle/0035_material_nightshade.sql +10 -0
- package/template/packages/database/drizzle/0036_hesitant_speed.sql +35 -0
- package/template/packages/database/drizzle/0037_absent_nick_fury.sql +2 -0
- package/template/packages/database/drizzle/0038_uneven_wasp.sql +38 -0
- package/template/packages/database/drizzle/meta/0035_snapshot.json +7331 -0
- package/template/packages/database/drizzle/meta/0036_snapshot.json +7436 -0
- package/template/packages/database/drizzle/meta/0037_snapshot.json +7457 -0
- package/template/packages/database/drizzle/meta/0038_snapshot.json +7749 -0
- package/template/packages/database/drizzle/meta/_journal.json +28 -0
- package/template/packages/database/package.json +1 -1
- package/template/packages/database/src/schema/identity.ts +7 -0
- package/template/packages/database/src/schema/notifications.ts +135 -0
- package/template/packages/database/src/schema-notification-delivery.test.ts +54 -0
- package/template/packages/database/src/schema-workflow-notification.test.ts +40 -1
- package/template/packages/modules/package.json +1 -1
- package/template/packages/modules/src/ai-operation-composition.test.ts +68 -0
- package/template/packages/modules/src/ai-operation-composition.ts +115 -0
- package/template/packages/modules/src/manifest.ts +26 -0
- package/template/packages/modules/src/provider-data-policy-composition.test.ts +74 -0
- package/template/packages/modules/src/system-api-permissions.ts +54 -0
- package/template/packages/modules/src/system-audit-actions.ts +15 -0
- package/template/packages/modules/src/system-features.ts +6 -1
- package/template/packages/modules/src/system-module-catalog.test.ts +16 -0
- package/template/packages/modules/src/system-module-catalog.ts +28 -4
- package/template/packages/modules/src/system-modules.test.ts +13 -1
- package/template/packages/modules/src/system-modules.ts +12 -0
- package/template/packages/modules/src/system-permissions.ts +11 -5
- package/template/packages/server-sdk/index.ts +11 -0
- package/template/packages/server-sdk/package.json +3 -2
- package/template/packages/server-sdk/src/ai-operation-registration.ts +2 -1
- package/template/packages/server-sdk/src/module-host.ts +8 -0
- package/template/packages/server-sdk/src/request-context.ts +2 -0
- package/template/packages/server-sdk/src/storage-port.ts +66 -0
- package/template/packages/server-sdk/src/tool-registration.ts +6 -0
- package/template/packages/server-sdk/src/user-directory-port.ts +42 -0
- package/template/packages/shared/package.json +1 -1
- package/template/packages/shared/src/audit.ts +25 -0
- package/template/packages/shared/src/module-configuration.ts +5 -0
- package/template/packages/shared/src/notification.ts +92 -1
- package/template/packages/shared/src/password.ts +7 -2
- package/template/packages/shared/src/platform-settings.ts +2 -0
- package/template/packages/storage/package.json +1 -1
- package/template/packages/storage/src/upload-service.test.ts +16 -0
- package/template/packages/storage/src/upload-service.ts +5 -1
- package/template/scripts/notification-postgres-regression.ts +27 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { describe, expect, test } from "bun:test";
|
|
2
|
+
import { createFoundationSnapshot } from "../foundation.js";
|
|
3
|
+
import { createServerRuntime } from "../runtime.js";
|
|
4
|
+
import { InMemoryNotificationDeliveryRepository } from "./memory-delivery-repository.js";
|
|
5
|
+
import { InMemoryNotificationPreferenceRepository } from "./preference-repository.js";
|
|
6
|
+
import type { NotificationRecipientDirectory } from "./recipient-directory.js";
|
|
7
|
+
import { InMemoryNotificationRepository } from "./repository.js";
|
|
8
|
+
import { registerNotificationRoutes } from "./routes.js";
|
|
9
|
+
import { NotificationService } from "./service.js";
|
|
10
|
+
|
|
11
|
+
class FakeRouteApp {
|
|
12
|
+
readonly handlers = new Map<string, (context: unknown) => unknown>();
|
|
13
|
+
get(path: string, handler: (context: unknown) => unknown) {
|
|
14
|
+
this.handlers.set(`GET ${path}`, handler);
|
|
15
|
+
}
|
|
16
|
+
post(path: string, handler: (context: unknown) => unknown) {
|
|
17
|
+
this.handlers.set(`POST ${path}`, handler);
|
|
18
|
+
}
|
|
19
|
+
put(path: string, handler: (context: unknown) => unknown) {
|
|
20
|
+
this.handlers.set(`PUT ${path}`, handler);
|
|
21
|
+
}
|
|
22
|
+
delete(path: string, handler: (context: unknown) => unknown) {
|
|
23
|
+
this.handlers.set(`DELETE ${path}`, handler);
|
|
24
|
+
}
|
|
25
|
+
invoke(method: string, path: string, context: unknown) {
|
|
26
|
+
const handler = this.handlers.get(`${method} ${path}`);
|
|
27
|
+
if (!handler) throw new Error(`未注册路由 ${method} ${path}`);
|
|
28
|
+
return handler(context);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const directory: NotificationRecipientDirectory = {
|
|
33
|
+
async options() {
|
|
34
|
+
return {
|
|
35
|
+
users: [{ id: "user_dev_admin", label: "开发管理员" }],
|
|
36
|
+
roles: [{ id: "role_admin", label: "管理员", code: "developer" }],
|
|
37
|
+
departments: [{ id: "dept_platform", label: "平台部", code: "PLATFORM" }],
|
|
38
|
+
};
|
|
39
|
+
},
|
|
40
|
+
async resolve() {
|
|
41
|
+
return [{ id: "user_dev_admin", email: "admin@example.com" }];
|
|
42
|
+
},
|
|
43
|
+
async address() {
|
|
44
|
+
return "admin@example.com";
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
describe("通知扩展 API", () => {
|
|
49
|
+
test("偏好、受众、定时发布和 outbox 均经过通知 Guard", async () => {
|
|
50
|
+
const runtime = createServerRuntime({ WINDY_DEV_ADMIN_TOKEN: "token_1" });
|
|
51
|
+
const repository = new InMemoryNotificationRepository();
|
|
52
|
+
const preferences = new InMemoryNotificationPreferenceRepository();
|
|
53
|
+
const deliveries = new InMemoryNotificationDeliveryRepository();
|
|
54
|
+
const service = new NotificationService(
|
|
55
|
+
repository,
|
|
56
|
+
preferences,
|
|
57
|
+
deliveries,
|
|
58
|
+
directory,
|
|
59
|
+
);
|
|
60
|
+
const app = new FakeRouteApp();
|
|
61
|
+
registerNotificationRoutes(
|
|
62
|
+
app,
|
|
63
|
+
repository,
|
|
64
|
+
runtime,
|
|
65
|
+
createFoundationSnapshot().features,
|
|
66
|
+
service,
|
|
67
|
+
);
|
|
68
|
+
const guardContext = await runtime.createGuardContext(
|
|
69
|
+
new Request("http://localhost/api/notifications/preferences", {
|
|
70
|
+
headers: { authorization: "Bearer token_1" },
|
|
71
|
+
}),
|
|
72
|
+
);
|
|
73
|
+
const context = { guardContext, params: {}, query: {} };
|
|
74
|
+
|
|
75
|
+
expect(
|
|
76
|
+
await app.invoke(
|
|
77
|
+
"GET",
|
|
78
|
+
"/system/notifications/audience-options",
|
|
79
|
+
context,
|
|
80
|
+
),
|
|
81
|
+
).toMatchObject({
|
|
82
|
+
users: [{ id: "user_dev_admin" }],
|
|
83
|
+
departments: [{ id: "dept_platform" }],
|
|
84
|
+
});
|
|
85
|
+
expect(
|
|
86
|
+
await app.invoke("PUT", "/notifications/preferences", {
|
|
87
|
+
...context,
|
|
88
|
+
body: {
|
|
89
|
+
enabledChannels: ["email"],
|
|
90
|
+
disabledCategories: ["营销"],
|
|
91
|
+
},
|
|
92
|
+
}),
|
|
93
|
+
).toMatchObject({
|
|
94
|
+
userId: "user_dev_admin",
|
|
95
|
+
enabledChannels: ["email"],
|
|
96
|
+
disabledCategories: ["营销"],
|
|
97
|
+
});
|
|
98
|
+
const published = (await app.invoke("POST", "/system/notifications", {
|
|
99
|
+
...context,
|
|
100
|
+
body: {
|
|
101
|
+
title: "定向通知",
|
|
102
|
+
summary: "摘要",
|
|
103
|
+
content: "正文",
|
|
104
|
+
category: "运营",
|
|
105
|
+
recipientUserIds: ["user_dev_admin"],
|
|
106
|
+
deliveryChannels: ["email"],
|
|
107
|
+
},
|
|
108
|
+
})) as { id: string };
|
|
109
|
+
expect(
|
|
110
|
+
await app.invoke("GET", "/system/notifications/:id/deliveries", {
|
|
111
|
+
...context,
|
|
112
|
+
params: { id: published.id },
|
|
113
|
+
}),
|
|
114
|
+
).toMatchObject([{ channel: "email", status: "pending" }]);
|
|
115
|
+
expect(runtime.auditSink.list().map(({ action }) => action)).toContain(
|
|
116
|
+
"notification.preference.update",
|
|
117
|
+
);
|
|
118
|
+
});
|
|
119
|
+
});
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { FeatureFlagDefinition, HttpMethod } from "@southwind-ai/shared";
|
|
2
|
+
import { evaluateRouteGuards } from "../route-guards.js";
|
|
3
|
+
import type { createServerRuntime } from "../runtime.js";
|
|
4
|
+
import type { NotificationRouteApp } from "./routes.js";
|
|
5
|
+
import {
|
|
6
|
+
notificationEvent,
|
|
7
|
+
parsePreferenceInput,
|
|
8
|
+
type NotificationRouteContext,
|
|
9
|
+
} from "./route-support.js";
|
|
10
|
+
import type { NotificationService } from "./service.js";
|
|
11
|
+
|
|
12
|
+
type ServerRuntime = ReturnType<typeof createServerRuntime>;
|
|
13
|
+
|
|
14
|
+
export function registerNotificationExtensionRoutes(
|
|
15
|
+
app: NotificationRouteApp,
|
|
16
|
+
service: NotificationService,
|
|
17
|
+
runtime: ServerRuntime,
|
|
18
|
+
feature: FeatureFlagDefinition | undefined,
|
|
19
|
+
) {
|
|
20
|
+
app.get("/notifications/preferences", (raw) =>
|
|
21
|
+
guarded(
|
|
22
|
+
raw,
|
|
23
|
+
"GET",
|
|
24
|
+
"/api/notifications/preferences",
|
|
25
|
+
"read",
|
|
26
|
+
feature,
|
|
27
|
+
runtime,
|
|
28
|
+
async (context) =>
|
|
29
|
+
(await service.getPreference(context.guardContext.actor.id)) || {
|
|
30
|
+
userId: context.guardContext.actor.id,
|
|
31
|
+
enabledChannels: [],
|
|
32
|
+
disabledCategories: [],
|
|
33
|
+
},
|
|
34
|
+
),
|
|
35
|
+
);
|
|
36
|
+
app.put("/notifications/preferences", (raw) =>
|
|
37
|
+
guarded(
|
|
38
|
+
raw,
|
|
39
|
+
"PUT",
|
|
40
|
+
"/api/notifications/preferences",
|
|
41
|
+
"read",
|
|
42
|
+
feature,
|
|
43
|
+
runtime,
|
|
44
|
+
async (context) => {
|
|
45
|
+
const input = parsePreferenceInput(context.body);
|
|
46
|
+
if (input instanceof Response) return input;
|
|
47
|
+
const preference = await service.savePreference(
|
|
48
|
+
context.guardContext.actor.id,
|
|
49
|
+
input,
|
|
50
|
+
context.guardContext.actor.id,
|
|
51
|
+
);
|
|
52
|
+
await runtime.auditSink.recordCriticalEvent(
|
|
53
|
+
notificationEvent(
|
|
54
|
+
context,
|
|
55
|
+
"notification.preference.update",
|
|
56
|
+
context.guardContext.actor.id,
|
|
57
|
+
),
|
|
58
|
+
);
|
|
59
|
+
return preference;
|
|
60
|
+
},
|
|
61
|
+
),
|
|
62
|
+
);
|
|
63
|
+
app.get("/system/notifications/audience-options", (raw) =>
|
|
64
|
+
guarded(
|
|
65
|
+
raw,
|
|
66
|
+
"GET",
|
|
67
|
+
"/api/system/notifications/audience-options",
|
|
68
|
+
"manage",
|
|
69
|
+
feature,
|
|
70
|
+
runtime,
|
|
71
|
+
() => service.audienceOptions(),
|
|
72
|
+
),
|
|
73
|
+
);
|
|
74
|
+
app.get("/system/notifications/:id/deliveries", (raw) =>
|
|
75
|
+
guarded(
|
|
76
|
+
raw,
|
|
77
|
+
"GET",
|
|
78
|
+
"/api/system/notifications/:id/deliveries",
|
|
79
|
+
"manage",
|
|
80
|
+
feature,
|
|
81
|
+
runtime,
|
|
82
|
+
(context) => service.listDeliveries(context.params.id || ""),
|
|
83
|
+
),
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
async function guarded(
|
|
88
|
+
raw: unknown,
|
|
89
|
+
method: HttpMethod,
|
|
90
|
+
path: string,
|
|
91
|
+
action: "read" | "manage",
|
|
92
|
+
feature: FeatureFlagDefinition | undefined,
|
|
93
|
+
runtime: ServerRuntime,
|
|
94
|
+
handler: (context: NotificationRouteContext) => unknown,
|
|
95
|
+
) {
|
|
96
|
+
const context = raw as NotificationRouteContext;
|
|
97
|
+
const decision = await evaluateRouteGuards(runtime, context.guardContext, {
|
|
98
|
+
permission: {
|
|
99
|
+
method,
|
|
100
|
+
path,
|
|
101
|
+
permissionKey: `system.notification.${action}`,
|
|
102
|
+
},
|
|
103
|
+
feature,
|
|
104
|
+
});
|
|
105
|
+
return decision.allowed
|
|
106
|
+
? handler(context)
|
|
107
|
+
: Response.json(
|
|
108
|
+
{ error: "FORBIDDEN", reason: decision.reason },
|
|
109
|
+
{ status: 403 },
|
|
110
|
+
);
|
|
111
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
NotificationDelivery,
|
|
3
|
+
NotificationDeliveryStatus,
|
|
4
|
+
} from "@southwind-ai/shared";
|
|
5
|
+
import type {
|
|
6
|
+
ClaimedNotificationDelivery,
|
|
7
|
+
NotificationDeliveryDraft,
|
|
8
|
+
NotificationDeliveryRepository,
|
|
9
|
+
} from "./delivery-repository.js";
|
|
10
|
+
|
|
11
|
+
interface MemoryDelivery extends NotificationDeliveryDraft {
|
|
12
|
+
id: string;
|
|
13
|
+
status: NotificationDeliveryStatus;
|
|
14
|
+
attemptCount: number;
|
|
15
|
+
nextAttemptAt: string;
|
|
16
|
+
leaseToken?: string;
|
|
17
|
+
leaseExpiresAt?: string;
|
|
18
|
+
deliveredAt?: string;
|
|
19
|
+
lastErrorCode?: string;
|
|
20
|
+
createdAt: string;
|
|
21
|
+
updatedAt: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export class InMemoryNotificationDeliveryRepository implements NotificationDeliveryRepository {
|
|
25
|
+
private readonly items = new Map<string, MemoryDelivery>();
|
|
26
|
+
private readonly uniqueKeys = new Set<string>();
|
|
27
|
+
|
|
28
|
+
constructor(private readonly leaseMs = 30_000) {}
|
|
29
|
+
|
|
30
|
+
async enqueue(drafts: NotificationDeliveryDraft[]) {
|
|
31
|
+
let inserted = 0;
|
|
32
|
+
const now = new Date().toISOString();
|
|
33
|
+
for (const draft of drafts) {
|
|
34
|
+
const key = `${draft.notificationId}:${draft.userId}:${draft.channel}`;
|
|
35
|
+
if (this.uniqueKeys.has(key)) continue;
|
|
36
|
+
const id = Bun.randomUUIDv7();
|
|
37
|
+
this.items.set(id, {
|
|
38
|
+
id,
|
|
39
|
+
...draft,
|
|
40
|
+
status: "pending",
|
|
41
|
+
attemptCount: 0,
|
|
42
|
+
nextAttemptAt: now,
|
|
43
|
+
createdAt: now,
|
|
44
|
+
updatedAt: now,
|
|
45
|
+
});
|
|
46
|
+
this.uniqueKeys.add(key);
|
|
47
|
+
inserted += 1;
|
|
48
|
+
}
|
|
49
|
+
return inserted;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
async claim(now: Date, limit: number) {
|
|
53
|
+
const claimed: ClaimedNotificationDelivery[] = [];
|
|
54
|
+
for (const item of this.items.values()) {
|
|
55
|
+
const due =
|
|
56
|
+
((item.status === "pending" || item.status === "retrying") &&
|
|
57
|
+
item.nextAttemptAt <= now.toISOString()) ||
|
|
58
|
+
(item.status === "processing" &&
|
|
59
|
+
Boolean(
|
|
60
|
+
item.leaseExpiresAt && item.leaseExpiresAt <= now.toISOString(),
|
|
61
|
+
));
|
|
62
|
+
if (!due || claimed.length >= limit) continue;
|
|
63
|
+
const leaseToken = Bun.randomUUIDv7();
|
|
64
|
+
item.status = "processing";
|
|
65
|
+
item.attemptCount += 1;
|
|
66
|
+
item.leaseToken = leaseToken;
|
|
67
|
+
item.leaseExpiresAt = new Date(
|
|
68
|
+
now.getTime() + this.leaseMs,
|
|
69
|
+
).toISOString();
|
|
70
|
+
item.updatedAt = now.toISOString();
|
|
71
|
+
claimed.push({
|
|
72
|
+
id: item.id,
|
|
73
|
+
notificationId: item.notificationId,
|
|
74
|
+
userId: item.userId,
|
|
75
|
+
channel: item.channel,
|
|
76
|
+
subject: item.subject,
|
|
77
|
+
content: item.content,
|
|
78
|
+
attemptCount: item.attemptCount,
|
|
79
|
+
leaseToken,
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
return claimed;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
async complete(id: string, leaseToken: string) {
|
|
86
|
+
const item = this.activeLease(id, leaseToken);
|
|
87
|
+
if (!item) return false;
|
|
88
|
+
item.status = "delivered";
|
|
89
|
+
item.deliveredAt = new Date().toISOString();
|
|
90
|
+
item.updatedAt = item.deliveredAt;
|
|
91
|
+
item.leaseToken = undefined;
|
|
92
|
+
item.leaseExpiresAt = undefined;
|
|
93
|
+
item.lastErrorCode = undefined;
|
|
94
|
+
return true;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
async fail(id: string, leaseToken: string, code: string, retryAt?: Date) {
|
|
98
|
+
const item = this.activeLease(id, leaseToken);
|
|
99
|
+
if (!item) return false;
|
|
100
|
+
item.status = retryAt ? "retrying" : "dead";
|
|
101
|
+
item.nextAttemptAt = (retryAt || new Date()).toISOString();
|
|
102
|
+
item.lastErrorCode = code;
|
|
103
|
+
item.updatedAt = new Date().toISOString();
|
|
104
|
+
item.leaseToken = undefined;
|
|
105
|
+
item.leaseExpiresAt = undefined;
|
|
106
|
+
return true;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
async list(notificationId: string) {
|
|
110
|
+
return [...this.items.values()]
|
|
111
|
+
.filter((item) => item.notificationId === notificationId)
|
|
112
|
+
.map(toDelivery);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
private activeLease(id: string, leaseToken: string) {
|
|
116
|
+
const item = this.items.get(id);
|
|
117
|
+
return item?.status === "processing" && item.leaseToken === leaseToken
|
|
118
|
+
? item
|
|
119
|
+
: undefined;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
function toDelivery(item: MemoryDelivery): NotificationDelivery {
|
|
124
|
+
return {
|
|
125
|
+
id: item.id,
|
|
126
|
+
notificationId: item.notificationId,
|
|
127
|
+
userId: item.userId,
|
|
128
|
+
channel: item.channel,
|
|
129
|
+
status: item.status,
|
|
130
|
+
attemptCount: item.attemptCount,
|
|
131
|
+
nextAttemptAt: item.nextAttemptAt,
|
|
132
|
+
deliveredAt: item.deliveredAt,
|
|
133
|
+
lastErrorCode: item.lastErrorCode,
|
|
134
|
+
createdAt: item.createdAt,
|
|
135
|
+
updatedAt: item.updatedAt,
|
|
136
|
+
};
|
|
137
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
NotificationRevision,
|
|
3
|
+
PageResult,
|
|
4
|
+
PlatformNotification,
|
|
5
|
+
UpdateNotificationInput,
|
|
6
|
+
} from "@southwind-ai/shared";
|
|
7
|
+
import type { RequestActor } from "../guards.js";
|
|
8
|
+
|
|
9
|
+
export function visibleTo(
|
|
10
|
+
item: PlatformNotification,
|
|
11
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
12
|
+
) {
|
|
13
|
+
const roles = item.recipientRoleCodes || [];
|
|
14
|
+
const userIds = item.recipientUserIds || [];
|
|
15
|
+
const departmentIds = item.recipientDepartmentIds || [];
|
|
16
|
+
return (
|
|
17
|
+
(!item.recipientUserId &&
|
|
18
|
+
!userIds.length &&
|
|
19
|
+
!roles.length &&
|
|
20
|
+
!departmentIds.length) ||
|
|
21
|
+
item.recipientUserId === actor.id ||
|
|
22
|
+
userIds.includes(actor.id) ||
|
|
23
|
+
Boolean(
|
|
24
|
+
actor.scopeContext?.departmentId &&
|
|
25
|
+
departmentIds.includes(actor.scopeContext.departmentId),
|
|
26
|
+
) ||
|
|
27
|
+
roles.some((role) => actor.roleCodes.includes(role))
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function sameContent(
|
|
32
|
+
notification: PlatformNotification,
|
|
33
|
+
input: UpdateNotificationInput,
|
|
34
|
+
) {
|
|
35
|
+
return (
|
|
36
|
+
notification.title === input.title &&
|
|
37
|
+
notification.summary === input.summary &&
|
|
38
|
+
notification.content === input.content &&
|
|
39
|
+
notification.category === input.category
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function toRevision(
|
|
44
|
+
notification: PlatformNotification,
|
|
45
|
+
editedAt: string,
|
|
46
|
+
editedBy: string,
|
|
47
|
+
): NotificationRevision {
|
|
48
|
+
return {
|
|
49
|
+
notificationId: notification.id,
|
|
50
|
+
revision: notification.revision,
|
|
51
|
+
title: notification.title,
|
|
52
|
+
summary: notification.summary,
|
|
53
|
+
content: notification.content,
|
|
54
|
+
category: notification.category,
|
|
55
|
+
editedAt,
|
|
56
|
+
editedBy,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function pageResult<T>(
|
|
61
|
+
items: T[],
|
|
62
|
+
page: number,
|
|
63
|
+
pageSize: number,
|
|
64
|
+
): PageResult<T> {
|
|
65
|
+
const start = (page - 1) * pageSize;
|
|
66
|
+
return {
|
|
67
|
+
items: items.slice(start, start + pageSize),
|
|
68
|
+
total: items.length,
|
|
69
|
+
page,
|
|
70
|
+
pageSize,
|
|
71
|
+
};
|
|
72
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { notificationPreferences } from "@southwind-ai/database";
|
|
2
|
+
import type {
|
|
3
|
+
NotificationPreference,
|
|
4
|
+
UpdateNotificationPreferenceInput,
|
|
5
|
+
} from "@southwind-ai/shared";
|
|
6
|
+
import { eq } from "drizzle-orm";
|
|
7
|
+
import type { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
8
|
+
|
|
9
|
+
export interface NotificationPreferenceRepository {
|
|
10
|
+
get(userId: string): Promise<NotificationPreference | undefined>;
|
|
11
|
+
save(
|
|
12
|
+
userId: string,
|
|
13
|
+
input: UpdateNotificationPreferenceInput,
|
|
14
|
+
actorId: string,
|
|
15
|
+
): Promise<NotificationPreference>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export class InMemoryNotificationPreferenceRepository implements NotificationPreferenceRepository {
|
|
19
|
+
private readonly preferences = new Map<string, NotificationPreference>();
|
|
20
|
+
|
|
21
|
+
async get(userId: string) {
|
|
22
|
+
return this.preferences.get(userId);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
async save(
|
|
26
|
+
userId: string,
|
|
27
|
+
input: UpdateNotificationPreferenceInput,
|
|
28
|
+
actorId: string,
|
|
29
|
+
) {
|
|
30
|
+
const preference = {
|
|
31
|
+
userId,
|
|
32
|
+
enabledChannels: unique(input.enabledChannels),
|
|
33
|
+
disabledCategories: unique(input.disabledCategories),
|
|
34
|
+
updatedAt: new Date().toISOString(),
|
|
35
|
+
};
|
|
36
|
+
this.preferences.set(userId, preference);
|
|
37
|
+
void actorId;
|
|
38
|
+
return preference;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export class DrizzleNotificationPreferenceRepository implements NotificationPreferenceRepository {
|
|
43
|
+
constructor(private readonly db: NodePgDatabase) {}
|
|
44
|
+
|
|
45
|
+
async get(userId: string) {
|
|
46
|
+
const [row] = await this.db
|
|
47
|
+
.select()
|
|
48
|
+
.from(notificationPreferences)
|
|
49
|
+
.where(eq(notificationPreferences.userId, userId))
|
|
50
|
+
.limit(1);
|
|
51
|
+
return row ? toPreference(row) : undefined;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async save(
|
|
55
|
+
userId: string,
|
|
56
|
+
input: UpdateNotificationPreferenceInput,
|
|
57
|
+
actorId: string,
|
|
58
|
+
) {
|
|
59
|
+
const now = new Date();
|
|
60
|
+
const [row] = await this.db
|
|
61
|
+
.insert(notificationPreferences)
|
|
62
|
+
.values({
|
|
63
|
+
userId,
|
|
64
|
+
enabledChannels: unique(input.enabledChannels),
|
|
65
|
+
disabledCategories: unique(input.disabledCategories),
|
|
66
|
+
updatedAt: now,
|
|
67
|
+
updatedBy: actorId,
|
|
68
|
+
})
|
|
69
|
+
.onConflictDoUpdate({
|
|
70
|
+
target: notificationPreferences.userId,
|
|
71
|
+
set: {
|
|
72
|
+
enabledChannels: unique(input.enabledChannels),
|
|
73
|
+
disabledCategories: unique(input.disabledCategories),
|
|
74
|
+
updatedAt: now,
|
|
75
|
+
updatedBy: actorId,
|
|
76
|
+
},
|
|
77
|
+
})
|
|
78
|
+
.returning();
|
|
79
|
+
if (!row) throw new Error("通知偏好保存未返回记录");
|
|
80
|
+
return toPreference(row);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
function toPreference(row: typeof notificationPreferences.$inferSelect) {
|
|
85
|
+
return {
|
|
86
|
+
userId: row.userId,
|
|
87
|
+
enabledChannels: row.enabledChannels,
|
|
88
|
+
disabledCategories: row.disabledCategories,
|
|
89
|
+
updatedAt: row.updatedAt.toISOString(),
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function unique<T>(values: T[]) {
|
|
94
|
+
return [...new Set(values)];
|
|
95
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ExternalNotificationChannel,
|
|
3
|
+
NotificationAudienceOptions,
|
|
4
|
+
PublishNotificationInput,
|
|
5
|
+
} from "@southwind-ai/shared";
|
|
6
|
+
import type { SystemRepositories } from "../system/seed.js";
|
|
7
|
+
|
|
8
|
+
export interface NotificationRecipient {
|
|
9
|
+
id: string;
|
|
10
|
+
email?: string;
|
|
11
|
+
phone?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface NotificationRecipientDirectory {
|
|
15
|
+
options(): Promise<NotificationAudienceOptions>;
|
|
16
|
+
resolve(input: PublishNotificationInput): Promise<NotificationRecipient[]>;
|
|
17
|
+
address(
|
|
18
|
+
userId: string,
|
|
19
|
+
channel: ExternalNotificationChannel,
|
|
20
|
+
): Promise<string | undefined>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export class SystemNotificationRecipientDirectory implements NotificationRecipientDirectory {
|
|
24
|
+
constructor(private readonly repositories: SystemRepositories) {}
|
|
25
|
+
|
|
26
|
+
async options(): Promise<NotificationAudienceOptions> {
|
|
27
|
+
const [users, roles, departments] = await Promise.all([
|
|
28
|
+
this.repositories.users.all({ status: "active" }),
|
|
29
|
+
this.repositories.roles.all({ status: "active" }),
|
|
30
|
+
this.repositories.departments.all({ status: "active" }),
|
|
31
|
+
]);
|
|
32
|
+
return {
|
|
33
|
+
users: users.map((user) => ({ id: user.id, label: user.displayName })),
|
|
34
|
+
roles: roles.map((role) => ({
|
|
35
|
+
id: role.id,
|
|
36
|
+
label: role.name,
|
|
37
|
+
code: role.code,
|
|
38
|
+
})),
|
|
39
|
+
departments: departments.map((department) => ({
|
|
40
|
+
id: department.id,
|
|
41
|
+
label: department.name,
|
|
42
|
+
code: department.code,
|
|
43
|
+
})),
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async resolve(input: PublishNotificationInput) {
|
|
48
|
+
const [users, roles, departments] = await Promise.all([
|
|
49
|
+
this.repositories.users.all({ status: "active" }),
|
|
50
|
+
this.repositories.roles.all({ status: "active" }),
|
|
51
|
+
this.repositories.departments.all({ status: "active" }),
|
|
52
|
+
]);
|
|
53
|
+
const userIds = new Set([
|
|
54
|
+
...(input.recipientUserIds || []),
|
|
55
|
+
...(input.recipientUserId ? [input.recipientUserId] : []),
|
|
56
|
+
]);
|
|
57
|
+
const roleIds = new Set(
|
|
58
|
+
roles
|
|
59
|
+
.filter((role) => input.recipientRoleCodes?.includes(role.code))
|
|
60
|
+
.map((role) => role.id),
|
|
61
|
+
);
|
|
62
|
+
const departmentIds = new Set(input.recipientDepartmentIds || []);
|
|
63
|
+
if (input.includeChildDepartments) {
|
|
64
|
+
includeDescendants(departmentIds, departments);
|
|
65
|
+
}
|
|
66
|
+
const targeted =
|
|
67
|
+
userIds.size > 0 || roleIds.size > 0 || departmentIds.size > 0;
|
|
68
|
+
return users
|
|
69
|
+
.filter(
|
|
70
|
+
(user) =>
|
|
71
|
+
!targeted ||
|
|
72
|
+
userIds.has(user.id) ||
|
|
73
|
+
user.roleIds.some((roleId) => roleIds.has(roleId)) ||
|
|
74
|
+
Boolean(user.departmentId && departmentIds.has(user.departmentId)),
|
|
75
|
+
)
|
|
76
|
+
.map(({ id, email, phone }) => ({ id, email, phone }));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
async address(userId: string, channel: ExternalNotificationChannel) {
|
|
80
|
+
const user = await this.repositories.users.get(userId);
|
|
81
|
+
if (!user || user.status !== "active") return undefined;
|
|
82
|
+
return channel === "email" ? user.email : user.phone;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function includeDescendants(
|
|
87
|
+
targetIds: Set<string>,
|
|
88
|
+
departments: Array<{ id: string; parentId?: string }>,
|
|
89
|
+
) {
|
|
90
|
+
let changed = true;
|
|
91
|
+
while (changed) {
|
|
92
|
+
changed = false;
|
|
93
|
+
for (const department of departments) {
|
|
94
|
+
if (
|
|
95
|
+
department.parentId &&
|
|
96
|
+
targetIds.has(department.parentId) &&
|
|
97
|
+
!targetIds.has(department.id)
|
|
98
|
+
) {
|
|
99
|
+
targetIds.add(department.id);
|
|
100
|
+
changed = true;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|