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,301 @@
|
|
|
1
|
+
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
|
2
|
+
import { resolve } from "node:path";
|
|
3
|
+
import { drizzle } from "drizzle-orm/node-postgres";
|
|
4
|
+
import { migrate } from "drizzle-orm/node-postgres/migrator";
|
|
5
|
+
import type { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
6
|
+
import { Pool } from "pg";
|
|
7
|
+
import type { RequestActor } from "../guards.js";
|
|
8
|
+
import { buildActorScopeContexts } from "../data-access/context.js";
|
|
9
|
+
import { DrizzleNotificationDeliveryRepository } from "./delivery-repository.js";
|
|
10
|
+
import { DrizzleNotificationPreferenceRepository } from "./preference-repository.js";
|
|
11
|
+
import { DrizzleNotificationRepository } from "./drizzle-repository.js";
|
|
12
|
+
|
|
13
|
+
const databaseUrl = process.env.NOTIFICATION_TEST_DATABASE_URL;
|
|
14
|
+
const describePostgres = databaseUrl ? describe : describe.skip;
|
|
15
|
+
|
|
16
|
+
describePostgres("PostgreSQL 通知 Repository", () => {
|
|
17
|
+
let pool: Pool;
|
|
18
|
+
let db: NodePgDatabase;
|
|
19
|
+
let repository: DrizzleNotificationRepository;
|
|
20
|
+
let rootDepartmentId: string;
|
|
21
|
+
|
|
22
|
+
beforeAll(async () => {
|
|
23
|
+
pool = new Pool({ connectionString: databaseUrl });
|
|
24
|
+
db = drizzle(pool);
|
|
25
|
+
await migrate(db, {
|
|
26
|
+
migrationsFolder: resolve(
|
|
27
|
+
import.meta.dir,
|
|
28
|
+
"../../../../packages/database/drizzle",
|
|
29
|
+
),
|
|
30
|
+
migrationsSchema: "public",
|
|
31
|
+
migrationsTable: "__notification_test_migrations",
|
|
32
|
+
});
|
|
33
|
+
await pool.query(
|
|
34
|
+
"truncate table notification_delivery_outbox, notification_preferences, notification_favorites, notification_reads, notification_revisions, platform_notifications",
|
|
35
|
+
);
|
|
36
|
+
await pool.query(`insert into users (
|
|
37
|
+
id, username, display_name, status, created_by, updated_by
|
|
38
|
+
) values
|
|
39
|
+
('notification-user-a', 'notification-user-a', '通知用户 A', 'active', 'test', 'test'),
|
|
40
|
+
('notification-user-b', 'notification-user-b', '通知用户 B', 'active', 'test', 'test')
|
|
41
|
+
on conflict (id) do nothing`);
|
|
42
|
+
const root = await pool.query<{ id: string }>(
|
|
43
|
+
"select id from departments where parent_id is null and deleted_at is null limit 1",
|
|
44
|
+
);
|
|
45
|
+
rootDepartmentId = root.rows[0]?.id || "notification-root";
|
|
46
|
+
if (root.rows.length === 0) {
|
|
47
|
+
await pool.query(
|
|
48
|
+
`insert into departments
|
|
49
|
+
(id, name, code, "order", status, created_by, updated_by)
|
|
50
|
+
values ($1, '通知测试根部门', 'NOTIFICATION_ROOT', 1, 'active', 'test', 'test')`,
|
|
51
|
+
[rootDepartmentId],
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
await pool.query(
|
|
55
|
+
`insert into departments
|
|
56
|
+
(id, parent_id, name, code, "order", status, created_by, updated_by)
|
|
57
|
+
values
|
|
58
|
+
('notification-child', $1, '通知测试子部门', 'NOTIFICATION_CHILD', 1, 'active', 'test', 'test')
|
|
59
|
+
on conflict (id) do update set parent_id = excluded.parent_id`,
|
|
60
|
+
[rootDepartmentId],
|
|
61
|
+
);
|
|
62
|
+
await pool.query(
|
|
63
|
+
"update users set department_id = 'notification-child' where id = 'notification-user-a'",
|
|
64
|
+
);
|
|
65
|
+
repository = new DrizzleNotificationRepository(db);
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
afterAll(async () => {
|
|
69
|
+
await pool?.end();
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
test("组合筛选与 total 使用同一 Actor 可见范围", async () => {
|
|
73
|
+
await repository.publish(notice("季度安全提醒", "安全"), admin);
|
|
74
|
+
const selected = await repository.publish(
|
|
75
|
+
notice("安全维护窗口", "安全"),
|
|
76
|
+
admin,
|
|
77
|
+
);
|
|
78
|
+
await repository.publish(notice("产品更新", "产品"), admin);
|
|
79
|
+
await repository.publish(
|
|
80
|
+
{
|
|
81
|
+
...notice("其他用户维护通知", "安全"),
|
|
82
|
+
recipientUserId: userB.id,
|
|
83
|
+
},
|
|
84
|
+
admin,
|
|
85
|
+
);
|
|
86
|
+
await repository.markRead(selected.id, userA);
|
|
87
|
+
await repository.setFavorite(selected.id, true, userA);
|
|
88
|
+
|
|
89
|
+
const result = await repository.listInbox(userA, 1, 1, {
|
|
90
|
+
q: "维护",
|
|
91
|
+
category: "安全",
|
|
92
|
+
read: "read",
|
|
93
|
+
favorite: true,
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
expect(result).toMatchObject({ total: 1, page: 1, pageSize: 1 });
|
|
97
|
+
expect(result.items[0]).toMatchObject({
|
|
98
|
+
id: selected.id,
|
|
99
|
+
read: true,
|
|
100
|
+
favorite: true,
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
test("收藏跨 Repository 持久化、按 Actor 隔离且不改变已读", async () => {
|
|
105
|
+
const published = await repository.publish(
|
|
106
|
+
notice("持久化收藏测试", "系统"),
|
|
107
|
+
admin,
|
|
108
|
+
);
|
|
109
|
+
const favorites = await Promise.all([
|
|
110
|
+
repository.setFavorite(published.id, true, userA),
|
|
111
|
+
repository.setFavorite(published.id, true, userA),
|
|
112
|
+
]);
|
|
113
|
+
expect(favorites.filter((result) => result?.changed)).toHaveLength(1);
|
|
114
|
+
|
|
115
|
+
const restarted = new DrizzleNotificationRepository(drizzle(pool));
|
|
116
|
+
expect((await restarted.listInbox(userA, 1, 10)).items).toContainEqual(
|
|
117
|
+
expect.objectContaining({
|
|
118
|
+
id: published.id,
|
|
119
|
+
favorite: true,
|
|
120
|
+
read: false,
|
|
121
|
+
}),
|
|
122
|
+
);
|
|
123
|
+
expect((await restarted.listInbox(userB, 1, 10)).items).toContainEqual(
|
|
124
|
+
expect.objectContaining({
|
|
125
|
+
id: published.id,
|
|
126
|
+
favorite: false,
|
|
127
|
+
read: false,
|
|
128
|
+
}),
|
|
129
|
+
);
|
|
130
|
+
|
|
131
|
+
await restarted.markRead(published.id, userA);
|
|
132
|
+
const removals = await Promise.all([
|
|
133
|
+
restarted.setFavorite(published.id, false, userA),
|
|
134
|
+
restarted.setFavorite(published.id, false, userA),
|
|
135
|
+
]);
|
|
136
|
+
expect(removals.filter((result) => result?.changed)).toHaveLength(1);
|
|
137
|
+
expect((await restarted.listInbox(userA, 1, 10)).items).toContainEqual(
|
|
138
|
+
expect.objectContaining({
|
|
139
|
+
id: published.id,
|
|
140
|
+
favorite: false,
|
|
141
|
+
read: true,
|
|
142
|
+
}),
|
|
143
|
+
);
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
test("不可见通知的收藏和取消收藏统一拒绝", async () => {
|
|
147
|
+
const targeted = await repository.publish(
|
|
148
|
+
{
|
|
149
|
+
...notice("仅用户 A 可见", "审批"),
|
|
150
|
+
recipientUserId: userA.id,
|
|
151
|
+
},
|
|
152
|
+
admin,
|
|
153
|
+
);
|
|
154
|
+
|
|
155
|
+
expect(
|
|
156
|
+
await repository.setFavorite(targeted.id, true, userB),
|
|
157
|
+
).toBeUndefined();
|
|
158
|
+
expect(
|
|
159
|
+
await repository.setFavorite(targeted.id, false, userB),
|
|
160
|
+
).toBeUndefined();
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
test("并发修改串行生成版本号并由重建 Repository 查询时间历史", async () => {
|
|
164
|
+
const published = await repository.publish(
|
|
165
|
+
notice("版本历史公告", "系统"),
|
|
166
|
+
admin,
|
|
167
|
+
);
|
|
168
|
+
const results = await Promise.all([
|
|
169
|
+
repository.update(published.id, notice("版本历史公告 A", "安全"), userA),
|
|
170
|
+
repository.update(published.id, notice("版本历史公告 B", "产品"), userB),
|
|
171
|
+
]);
|
|
172
|
+
expect(results.every((result) => result?.changed)).toBe(true);
|
|
173
|
+
expect(
|
|
174
|
+
results.map((result) => result?.notification.revision).sort(),
|
|
175
|
+
).toEqual([2, 3]);
|
|
176
|
+
|
|
177
|
+
const restarted = new DrizzleNotificationRepository(drizzle(pool));
|
|
178
|
+
const history = await restarted.listRevisions(published.id, 1, 10);
|
|
179
|
+
expect(history?.total).toBe(3);
|
|
180
|
+
expect(history?.items.map(({ revision }) => revision)).toEqual([3, 2, 1]);
|
|
181
|
+
expect(
|
|
182
|
+
history?.items.every(
|
|
183
|
+
({ editedAt, editedBy }) => Boolean(editedAt) && Boolean(editedBy),
|
|
184
|
+
),
|
|
185
|
+
).toBe(true);
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
test("归档公告拒绝修改但保留版本历史", async () => {
|
|
189
|
+
const published = await repository.publish(
|
|
190
|
+
notice("归档历史公告", "系统"),
|
|
191
|
+
admin,
|
|
192
|
+
);
|
|
193
|
+
await repository.archive(published.id, admin);
|
|
194
|
+
|
|
195
|
+
expect(
|
|
196
|
+
await repository.update(
|
|
197
|
+
published.id,
|
|
198
|
+
notice("归档后修改", "系统"),
|
|
199
|
+
admin,
|
|
200
|
+
),
|
|
201
|
+
).toBeUndefined();
|
|
202
|
+
expect((await repository.listRevisions(published.id, 1, 10))?.total).toBe(
|
|
203
|
+
1,
|
|
204
|
+
);
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
test("父部门通知包含子部门用户,其他用户不可见", async () => {
|
|
208
|
+
const targeted = await repository.publish(
|
|
209
|
+
{
|
|
210
|
+
...notice("部门定向通知", "组织"),
|
|
211
|
+
recipientDepartmentIds: [rootDepartmentId],
|
|
212
|
+
includeChildDepartments: true,
|
|
213
|
+
},
|
|
214
|
+
admin,
|
|
215
|
+
);
|
|
216
|
+
const scopedUserA = actor(
|
|
217
|
+
"notification-user-a",
|
|
218
|
+
["member"],
|
|
219
|
+
"notification-child",
|
|
220
|
+
);
|
|
221
|
+
expect(
|
|
222
|
+
(await repository.listInbox(scopedUserA, 1, 100)).items,
|
|
223
|
+
).toContainEqual(expect.objectContaining({ id: targeted.id }));
|
|
224
|
+
expect(
|
|
225
|
+
(await repository.listInbox(userB, 1, 100)).items,
|
|
226
|
+
).not.toContainEqual(expect.objectContaining({ id: targeted.id }));
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
test("偏好与 outbox 跨 Repository 持久化,lease token 防止伪完成", async () => {
|
|
230
|
+
const preferences = new DrizzleNotificationPreferenceRepository(db);
|
|
231
|
+
expect(
|
|
232
|
+
await preferences.save(
|
|
233
|
+
userA.id,
|
|
234
|
+
{ enabledChannels: ["email"], disabledCategories: ["营销"] },
|
|
235
|
+
userA.id,
|
|
236
|
+
),
|
|
237
|
+
).toMatchObject({
|
|
238
|
+
enabledChannels: ["email"],
|
|
239
|
+
disabledCategories: ["营销"],
|
|
240
|
+
});
|
|
241
|
+
expect(
|
|
242
|
+
await new DrizzleNotificationPreferenceRepository(db).get(userA.id),
|
|
243
|
+
).toMatchObject({ enabledChannels: ["email"] });
|
|
244
|
+
|
|
245
|
+
const published = await repository.publish(
|
|
246
|
+
notice("外部投递通知", "系统"),
|
|
247
|
+
admin,
|
|
248
|
+
);
|
|
249
|
+
const deliveries = new DrizzleNotificationDeliveryRepository(db);
|
|
250
|
+
expect(
|
|
251
|
+
await deliveries.enqueue([
|
|
252
|
+
{
|
|
253
|
+
notificationId: published.id,
|
|
254
|
+
userId: userA.id,
|
|
255
|
+
channel: "email",
|
|
256
|
+
subject: published.title,
|
|
257
|
+
content: published.content,
|
|
258
|
+
},
|
|
259
|
+
]),
|
|
260
|
+
).toBe(1);
|
|
261
|
+
const [claimed] = await deliveries.claim(new Date(), 10);
|
|
262
|
+
expect(claimed).toBeDefined();
|
|
263
|
+
expect(await deliveries.complete(claimed!.id, "forged-token")).toBe(false);
|
|
264
|
+
expect(
|
|
265
|
+
await deliveries.complete(claimed!.id, claimed!.leaseToken, "smtp-1"),
|
|
266
|
+
).toBe(true);
|
|
267
|
+
expect((await deliveries.list(published.id))[0]).toMatchObject({
|
|
268
|
+
status: "delivered",
|
|
269
|
+
attemptCount: 1,
|
|
270
|
+
});
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
function notice(title: string, category: string) {
|
|
275
|
+
return {
|
|
276
|
+
title,
|
|
277
|
+
summary: `${title}摘要`,
|
|
278
|
+
content: `${title}正文`,
|
|
279
|
+
category,
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
const admin = actor("notification-admin", ["admin"]);
|
|
284
|
+
const userA = actor("notification-user-a", ["member"]);
|
|
285
|
+
const userB = actor("notification-user-b", ["member"]);
|
|
286
|
+
|
|
287
|
+
function actor(
|
|
288
|
+
id: string,
|
|
289
|
+
roleCodes: string[],
|
|
290
|
+
departmentId?: string,
|
|
291
|
+
): RequestActor {
|
|
292
|
+
const scopes = buildActorScopeContexts(id, departmentId, []);
|
|
293
|
+
return {
|
|
294
|
+
id,
|
|
295
|
+
name: id,
|
|
296
|
+
type: "user",
|
|
297
|
+
roleCodes,
|
|
298
|
+
permissionKeys: ["system.notification.read"],
|
|
299
|
+
...scopes,
|
|
300
|
+
};
|
|
301
|
+
}
|
|
@@ -1,31 +1,48 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
notificationFavorites,
|
|
3
|
+
notificationReads,
|
|
4
|
+
platformNotifications,
|
|
5
|
+
} from "@southwind-ai/database";
|
|
2
6
|
import type {
|
|
7
|
+
NotificationInboxFilters,
|
|
3
8
|
NotificationInboxItem,
|
|
4
9
|
PageResult,
|
|
5
10
|
PlatformNotification,
|
|
6
11
|
PublishNotificationInput,
|
|
12
|
+
UpdateNotificationInput,
|
|
7
13
|
} from "@southwind-ai/shared";
|
|
8
|
-
import { and, desc, eq,
|
|
14
|
+
import { and, desc, eq, sql } from "drizzle-orm";
|
|
9
15
|
import type { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
10
16
|
import type { RequestActor } from "../guards.js";
|
|
17
|
+
import {
|
|
18
|
+
audienceWhere,
|
|
19
|
+
inboxWhere,
|
|
20
|
+
searchWhere,
|
|
21
|
+
toNotification,
|
|
22
|
+
} from "./drizzle-query.js";
|
|
23
|
+
import {
|
|
24
|
+
archiveNotification,
|
|
25
|
+
listNotificationRevisions,
|
|
26
|
+
publishNotification,
|
|
27
|
+
updateNotification,
|
|
28
|
+
} from "./drizzle-management.js";
|
|
11
29
|
import type { NotificationRepository } from "./repository.js";
|
|
12
30
|
|
|
13
31
|
export class DrizzleNotificationRepository implements NotificationRepository {
|
|
14
32
|
constructor(private readonly db: NodePgDatabase) {}
|
|
15
33
|
|
|
16
34
|
async listInbox(
|
|
17
|
-
actor: Pick<RequestActor, "id" | "roleCodes">,
|
|
35
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
18
36
|
page: number,
|
|
19
37
|
pageSize: number,
|
|
38
|
+
filters: NotificationInboxFilters = {},
|
|
20
39
|
) {
|
|
21
|
-
const where =
|
|
22
|
-
eq(platformNotifications.status, "published"),
|
|
23
|
-
audienceWhere(actor),
|
|
24
|
-
);
|
|
40
|
+
const where = inboxWhere(actor, filters);
|
|
25
41
|
const rows = await this.db
|
|
26
42
|
.select({
|
|
27
43
|
notification: platformNotifications,
|
|
28
44
|
readAt: notificationReads.readAt,
|
|
45
|
+
favoritedAt: notificationFavorites.favoritedAt,
|
|
29
46
|
})
|
|
30
47
|
.from(platformNotifications)
|
|
31
48
|
.leftJoin(
|
|
@@ -35,6 +52,13 @@ export class DrizzleNotificationRepository implements NotificationRepository {
|
|
|
35
52
|
eq(notificationReads.userId, actor.id),
|
|
36
53
|
),
|
|
37
54
|
)
|
|
55
|
+
.leftJoin(
|
|
56
|
+
notificationFavorites,
|
|
57
|
+
and(
|
|
58
|
+
eq(notificationFavorites.notificationId, platformNotifications.id),
|
|
59
|
+
eq(notificationFavorites.userId, actor.id),
|
|
60
|
+
),
|
|
61
|
+
)
|
|
38
62
|
.where(where)
|
|
39
63
|
.orderBy(desc(platformNotifications.publishedAt))
|
|
40
64
|
.limit(pageSize)
|
|
@@ -42,12 +66,28 @@ export class DrizzleNotificationRepository implements NotificationRepository {
|
|
|
42
66
|
const [{ count = 0 } = { count: 0 }] = await this.db
|
|
43
67
|
.select({ count: sql<number>`count(*)::int` })
|
|
44
68
|
.from(platformNotifications)
|
|
69
|
+
.leftJoin(
|
|
70
|
+
notificationReads,
|
|
71
|
+
and(
|
|
72
|
+
eq(notificationReads.notificationId, platformNotifications.id),
|
|
73
|
+
eq(notificationReads.userId, actor.id),
|
|
74
|
+
),
|
|
75
|
+
)
|
|
76
|
+
.leftJoin(
|
|
77
|
+
notificationFavorites,
|
|
78
|
+
and(
|
|
79
|
+
eq(notificationFavorites.notificationId, platformNotifications.id),
|
|
80
|
+
eq(notificationFavorites.userId, actor.id),
|
|
81
|
+
),
|
|
82
|
+
)
|
|
45
83
|
.where(where);
|
|
46
84
|
return {
|
|
47
|
-
items: rows.map(({ notification, readAt }) => ({
|
|
85
|
+
items: rows.map(({ notification, readAt, favoritedAt }) => ({
|
|
48
86
|
...toNotification(notification),
|
|
49
87
|
read: Boolean(readAt),
|
|
50
88
|
readAt: readAt?.toISOString(),
|
|
89
|
+
favorite: Boolean(favoritedAt),
|
|
90
|
+
favoritedAt: favoritedAt?.toISOString(),
|
|
51
91
|
})),
|
|
52
92
|
total: count,
|
|
53
93
|
page,
|
|
@@ -85,36 +125,59 @@ export class DrizzleNotificationRepository implements NotificationRepository {
|
|
|
85
125
|
}
|
|
86
126
|
|
|
87
127
|
async publish(input: PublishNotificationInput, actor: RequestActor) {
|
|
88
|
-
|
|
128
|
+
return publishNotification(this.db, input, actor);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
async listDueScheduled(now: Date, limit: number) {
|
|
132
|
+
const rows = await this.db
|
|
133
|
+
.select()
|
|
134
|
+
.from(platformNotifications)
|
|
135
|
+
.where(
|
|
136
|
+
and(
|
|
137
|
+
eq(platformNotifications.status, "scheduled"),
|
|
138
|
+
sql`${platformNotifications.scheduledFor} <= ${now}`,
|
|
139
|
+
),
|
|
140
|
+
)
|
|
141
|
+
.orderBy(platformNotifications.scheduledFor)
|
|
142
|
+
.limit(limit);
|
|
143
|
+
return rows.map(toNotification);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
async activateScheduled(notificationId: string, now: Date) {
|
|
89
147
|
const [row] = await this.db
|
|
90
|
-
.
|
|
91
|
-
.
|
|
92
|
-
id: Bun.randomUUIDv7(),
|
|
93
|
-
...input,
|
|
148
|
+
.update(platformNotifications)
|
|
149
|
+
.set({
|
|
94
150
|
status: "published",
|
|
95
151
|
publishedAt: now,
|
|
96
|
-
createdAt: now,
|
|
97
|
-
createdBy: actor.id,
|
|
98
152
|
updatedAt: now,
|
|
99
|
-
updatedBy:
|
|
153
|
+
updatedBy: "notification-scheduler",
|
|
100
154
|
})
|
|
101
|
-
.
|
|
155
|
+
.where(
|
|
156
|
+
and(
|
|
157
|
+
eq(platformNotifications.id, notificationId),
|
|
158
|
+
eq(platformNotifications.status, "scheduled"),
|
|
159
|
+
sql`${platformNotifications.scheduledFor} <= ${now}`,
|
|
160
|
+
),
|
|
161
|
+
)
|
|
102
162
|
.returning();
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
163
|
+
return row ? toNotification(row) : undefined;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
async update(
|
|
167
|
+
notificationId: string,
|
|
168
|
+
input: UpdateNotificationInput,
|
|
169
|
+
actor: RequestActor,
|
|
170
|
+
) {
|
|
171
|
+
return updateNotification(this.db, notificationId, input, actor);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
async listRevisions(notificationId: string, page: number, pageSize: number) {
|
|
175
|
+
return listNotificationRevisions(this.db, notificationId, page, pageSize);
|
|
113
176
|
}
|
|
114
177
|
|
|
115
178
|
async markRead(
|
|
116
179
|
notificationId: string,
|
|
117
|
-
actor: Pick<RequestActor, "id" | "roleCodes">,
|
|
180
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
118
181
|
) {
|
|
119
182
|
const [notification] = await this.db
|
|
120
183
|
.select({ id: platformNotifications.id })
|
|
@@ -160,74 +223,77 @@ export class DrizzleNotificationRepository implements NotificationRepository {
|
|
|
160
223
|
: undefined;
|
|
161
224
|
}
|
|
162
225
|
|
|
226
|
+
async setFavorite(
|
|
227
|
+
notificationId: string,
|
|
228
|
+
favorite: boolean,
|
|
229
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
230
|
+
) {
|
|
231
|
+
if (!(await this.isVisible(notificationId, actor))) return undefined;
|
|
232
|
+
if (!favorite) {
|
|
233
|
+
const deleted = await this.db
|
|
234
|
+
.delete(notificationFavorites)
|
|
235
|
+
.where(
|
|
236
|
+
and(
|
|
237
|
+
eq(notificationFavorites.notificationId, notificationId),
|
|
238
|
+
eq(notificationFavorites.userId, actor.id),
|
|
239
|
+
),
|
|
240
|
+
)
|
|
241
|
+
.returning({ notificationId: notificationFavorites.notificationId });
|
|
242
|
+
return {
|
|
243
|
+
success: true,
|
|
244
|
+
favorite: false,
|
|
245
|
+
changed: Boolean(deleted[0]),
|
|
246
|
+
} as const;
|
|
247
|
+
}
|
|
248
|
+
const favoritedAt = new Date();
|
|
249
|
+
const inserted = await this.db
|
|
250
|
+
.insert(notificationFavorites)
|
|
251
|
+
.values({ notificationId, userId: actor.id, favoritedAt })
|
|
252
|
+
.onConflictDoNothing()
|
|
253
|
+
.returning({ favoritedAt: notificationFavorites.favoritedAt });
|
|
254
|
+
const persistedAt =
|
|
255
|
+
inserted[0]?.favoritedAt ||
|
|
256
|
+
(
|
|
257
|
+
await this.db
|
|
258
|
+
.select({ favoritedAt: notificationFavorites.favoritedAt })
|
|
259
|
+
.from(notificationFavorites)
|
|
260
|
+
.where(
|
|
261
|
+
and(
|
|
262
|
+
eq(notificationFavorites.notificationId, notificationId),
|
|
263
|
+
eq(notificationFavorites.userId, actor.id),
|
|
264
|
+
),
|
|
265
|
+
)
|
|
266
|
+
.limit(1)
|
|
267
|
+
)[0]?.favoritedAt;
|
|
268
|
+
return persistedAt
|
|
269
|
+
? ({
|
|
270
|
+
success: true,
|
|
271
|
+
favorite: true,
|
|
272
|
+
changed: Boolean(inserted[0]),
|
|
273
|
+
favoritedAt: persistedAt.toISOString(),
|
|
274
|
+
} as const)
|
|
275
|
+
: undefined;
|
|
276
|
+
}
|
|
277
|
+
|
|
163
278
|
async archive(notificationId: string, actor: RequestActor) {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
279
|
+
return archiveNotification(this.db, notificationId, actor);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
private async isVisible(
|
|
283
|
+
notificationId: string,
|
|
284
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
285
|
+
) {
|
|
286
|
+
const [notification] = await this.db
|
|
287
|
+
.select({ id: platformNotifications.id })
|
|
288
|
+
.from(platformNotifications)
|
|
174
289
|
.where(
|
|
175
290
|
and(
|
|
176
291
|
eq(platformNotifications.id, notificationId),
|
|
177
292
|
eq(platformNotifications.status, "published"),
|
|
293
|
+
audienceWhere(actor),
|
|
178
294
|
),
|
|
179
295
|
)
|
|
180
|
-
.
|
|
181
|
-
return
|
|
296
|
+
.limit(1);
|
|
297
|
+
return Boolean(notification);
|
|
182
298
|
}
|
|
183
299
|
}
|
|
184
|
-
|
|
185
|
-
function toNotification(
|
|
186
|
-
row: typeof platformNotifications.$inferSelect,
|
|
187
|
-
): PlatformNotification {
|
|
188
|
-
return {
|
|
189
|
-
id: row.id,
|
|
190
|
-
title: row.title,
|
|
191
|
-
summary: row.summary,
|
|
192
|
-
content: row.content,
|
|
193
|
-
category: row.category,
|
|
194
|
-
status: row.status as PlatformNotification["status"],
|
|
195
|
-
publishedAt: row.publishedAt.toISOString(),
|
|
196
|
-
createdAt: row.createdAt.toISOString(),
|
|
197
|
-
createdBy: row.createdBy,
|
|
198
|
-
updatedAt: row.updatedAt.toISOString(),
|
|
199
|
-
updatedBy: row.updatedBy,
|
|
200
|
-
archivedAt: row.archivedAt?.toISOString(),
|
|
201
|
-
archivedBy: row.archivedBy || undefined,
|
|
202
|
-
target: row.target || undefined,
|
|
203
|
-
recipientUserId: row.recipientUserId || undefined,
|
|
204
|
-
recipientRoleCodes: row.recipientRoleCodes,
|
|
205
|
-
sourceKey: row.sourceKey || undefined,
|
|
206
|
-
};
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
function audienceWhere(actor: Pick<RequestActor, "id" | "roleCodes">): SQL {
|
|
210
|
-
const roleClauses = actor.roleCodes.map(
|
|
211
|
-
(role) =>
|
|
212
|
-
sql`${platformNotifications.recipientRoleCodes} @> ${JSON.stringify([role])}::jsonb`,
|
|
213
|
-
);
|
|
214
|
-
return or(
|
|
215
|
-
and(
|
|
216
|
-
isNull(platformNotifications.recipientUserId),
|
|
217
|
-
sql`jsonb_array_length(${platformNotifications.recipientRoleCodes}) = 0`,
|
|
218
|
-
),
|
|
219
|
-
eq(platformNotifications.recipientUserId, actor.id),
|
|
220
|
-
...roleClauses,
|
|
221
|
-
)!;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
function searchWhere(query?: string): SQL | undefined {
|
|
225
|
-
const keyword = query?.trim();
|
|
226
|
-
return keyword
|
|
227
|
-
? or(
|
|
228
|
-
ilike(platformNotifications.title, `%${keyword}%`),
|
|
229
|
-
ilike(platformNotifications.summary, `%${keyword}%`),
|
|
230
|
-
ilike(platformNotifications.category, `%${keyword}%`),
|
|
231
|
-
)
|
|
232
|
-
: undefined;
|
|
233
|
-
}
|