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,198 @@
|
|
|
1
|
+
import { notificationDeliveryOutbox } from "@southwind-ai/database";
|
|
2
|
+
import type {
|
|
3
|
+
ExternalNotificationChannel,
|
|
4
|
+
NotificationDelivery,
|
|
5
|
+
} from "@southwind-ai/shared";
|
|
6
|
+
import { and, asc, eq, inArray, sql } from "drizzle-orm";
|
|
7
|
+
import type { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
8
|
+
|
|
9
|
+
export interface NotificationDeliveryDraft {
|
|
10
|
+
notificationId: string;
|
|
11
|
+
userId: string;
|
|
12
|
+
channel: ExternalNotificationChannel;
|
|
13
|
+
subject: string;
|
|
14
|
+
content: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ClaimedNotificationDelivery extends NotificationDeliveryDraft {
|
|
18
|
+
id: string;
|
|
19
|
+
attemptCount: number;
|
|
20
|
+
leaseToken: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface NotificationDeliveryRepository {
|
|
24
|
+
enqueue(drafts: NotificationDeliveryDraft[]): Promise<number>;
|
|
25
|
+
claim(now: Date, limit: number): Promise<ClaimedNotificationDelivery[]>;
|
|
26
|
+
complete(
|
|
27
|
+
id: string,
|
|
28
|
+
leaseToken: string,
|
|
29
|
+
providerMessageId?: string,
|
|
30
|
+
): Promise<boolean>;
|
|
31
|
+
fail(
|
|
32
|
+
id: string,
|
|
33
|
+
leaseToken: string,
|
|
34
|
+
code: string,
|
|
35
|
+
retryAt?: Date,
|
|
36
|
+
): Promise<boolean>;
|
|
37
|
+
list(notificationId: string): Promise<NotificationDelivery[]>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export class DrizzleNotificationDeliveryRepository implements NotificationDeliveryRepository {
|
|
41
|
+
constructor(
|
|
42
|
+
private readonly db: NodePgDatabase,
|
|
43
|
+
private readonly leaseMs = 30_000,
|
|
44
|
+
) {}
|
|
45
|
+
|
|
46
|
+
async enqueue(drafts: NotificationDeliveryDraft[]) {
|
|
47
|
+
if (drafts.length === 0) return 0;
|
|
48
|
+
const now = new Date();
|
|
49
|
+
return (
|
|
50
|
+
await this.db
|
|
51
|
+
.insert(notificationDeliveryOutbox)
|
|
52
|
+
.values(
|
|
53
|
+
drafts.map((draft) => ({
|
|
54
|
+
id: Bun.randomUUIDv7(),
|
|
55
|
+
...draft,
|
|
56
|
+
status: "pending" as const,
|
|
57
|
+
nextAttemptAt: now,
|
|
58
|
+
createdAt: now,
|
|
59
|
+
updatedAt: now,
|
|
60
|
+
})),
|
|
61
|
+
)
|
|
62
|
+
.onConflictDoNothing()
|
|
63
|
+
.returning({ id: notificationDeliveryOutbox.id })
|
|
64
|
+
).length;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
async claim(now: Date, limit: number) {
|
|
68
|
+
const leaseToken = Bun.randomUUIDv7();
|
|
69
|
+
const leaseExpiresAt = new Date(now.getTime() + this.leaseMs);
|
|
70
|
+
return this.db.transaction(async (tx) => {
|
|
71
|
+
const rows = await tx.execute<{
|
|
72
|
+
id: string;
|
|
73
|
+
notification_id: string;
|
|
74
|
+
user_id: string;
|
|
75
|
+
channel: ExternalNotificationChannel;
|
|
76
|
+
subject: string;
|
|
77
|
+
content: string;
|
|
78
|
+
attempt_count: number;
|
|
79
|
+
}>(sql`
|
|
80
|
+
select id, notification_id, user_id, channel, subject, content,
|
|
81
|
+
attempt_count
|
|
82
|
+
from notification_delivery_outbox
|
|
83
|
+
where (
|
|
84
|
+
status in ('pending', 'retrying')
|
|
85
|
+
and next_attempt_at <= ${now}
|
|
86
|
+
) or (
|
|
87
|
+
status = 'processing'
|
|
88
|
+
and lease_expires_at <= ${now}
|
|
89
|
+
)
|
|
90
|
+
order by next_attempt_at asc
|
|
91
|
+
limit ${limit}
|
|
92
|
+
for update skip locked
|
|
93
|
+
`);
|
|
94
|
+
const claimed = rows.rows;
|
|
95
|
+
if (claimed.length === 0) return [];
|
|
96
|
+
await tx
|
|
97
|
+
.update(notificationDeliveryOutbox)
|
|
98
|
+
.set({
|
|
99
|
+
status: "processing",
|
|
100
|
+
leaseToken,
|
|
101
|
+
leaseExpiresAt,
|
|
102
|
+
updatedAt: now,
|
|
103
|
+
attemptCount: sql`${notificationDeliveryOutbox.attemptCount} + 1`,
|
|
104
|
+
})
|
|
105
|
+
.where(
|
|
106
|
+
inArray(
|
|
107
|
+
notificationDeliveryOutbox.id,
|
|
108
|
+
claimed.map((row) => row.id),
|
|
109
|
+
),
|
|
110
|
+
);
|
|
111
|
+
return claimed.map((row) => ({
|
|
112
|
+
id: row.id,
|
|
113
|
+
notificationId: row.notification_id,
|
|
114
|
+
userId: row.user_id,
|
|
115
|
+
channel: row.channel,
|
|
116
|
+
subject: row.subject,
|
|
117
|
+
content: row.content,
|
|
118
|
+
attemptCount: row.attempt_count + 1,
|
|
119
|
+
leaseToken,
|
|
120
|
+
}));
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
async complete(id: string, leaseToken: string, providerMessageId?: string) {
|
|
125
|
+
const now = new Date();
|
|
126
|
+
return Boolean(
|
|
127
|
+
(
|
|
128
|
+
await this.db
|
|
129
|
+
.update(notificationDeliveryOutbox)
|
|
130
|
+
.set({
|
|
131
|
+
status: "delivered",
|
|
132
|
+
deliveredAt: now,
|
|
133
|
+
providerMessageId,
|
|
134
|
+
leaseToken: null,
|
|
135
|
+
leaseExpiresAt: null,
|
|
136
|
+
lastErrorCode: null,
|
|
137
|
+
updatedAt: now,
|
|
138
|
+
})
|
|
139
|
+
.where(activeLease(id, leaseToken))
|
|
140
|
+
.returning({ id: notificationDeliveryOutbox.id })
|
|
141
|
+
)[0],
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
async fail(id: string, leaseToken: string, code: string, retryAt?: Date) {
|
|
146
|
+
return Boolean(
|
|
147
|
+
(
|
|
148
|
+
await this.db
|
|
149
|
+
.update(notificationDeliveryOutbox)
|
|
150
|
+
.set({
|
|
151
|
+
status: retryAt ? "retrying" : "dead",
|
|
152
|
+
nextAttemptAt: retryAt || new Date(),
|
|
153
|
+
leaseToken: null,
|
|
154
|
+
leaseExpiresAt: null,
|
|
155
|
+
lastErrorCode: code,
|
|
156
|
+
updatedAt: new Date(),
|
|
157
|
+
})
|
|
158
|
+
.where(activeLease(id, leaseToken))
|
|
159
|
+
.returning({ id: notificationDeliveryOutbox.id })
|
|
160
|
+
)[0],
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
async list(notificationId: string) {
|
|
165
|
+
const rows = await this.db
|
|
166
|
+
.select()
|
|
167
|
+
.from(notificationDeliveryOutbox)
|
|
168
|
+
.where(eq(notificationDeliveryOutbox.notificationId, notificationId))
|
|
169
|
+
.orderBy(asc(notificationDeliveryOutbox.createdAt));
|
|
170
|
+
return rows.map(toDelivery);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function activeLease(id: string, leaseToken: string) {
|
|
175
|
+
return and(
|
|
176
|
+
eq(notificationDeliveryOutbox.id, id),
|
|
177
|
+
eq(notificationDeliveryOutbox.status, "processing"),
|
|
178
|
+
eq(notificationDeliveryOutbox.leaseToken, leaseToken),
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
function toDelivery(
|
|
183
|
+
row: typeof notificationDeliveryOutbox.$inferSelect,
|
|
184
|
+
): NotificationDelivery {
|
|
185
|
+
return {
|
|
186
|
+
id: row.id,
|
|
187
|
+
notificationId: row.notificationId,
|
|
188
|
+
userId: row.userId,
|
|
189
|
+
channel: row.channel,
|
|
190
|
+
status: row.status,
|
|
191
|
+
attemptCount: row.attemptCount,
|
|
192
|
+
nextAttemptAt: row.nextAttemptAt.toISOString(),
|
|
193
|
+
deliveredAt: row.deliveredAt?.toISOString(),
|
|
194
|
+
lastErrorCode: row.lastErrorCode || undefined,
|
|
195
|
+
createdAt: row.createdAt.toISOString(),
|
|
196
|
+
updatedAt: row.updatedAt.toISOString(),
|
|
197
|
+
};
|
|
198
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { describe, expect, test } from "bun:test";
|
|
2
|
+
import {
|
|
3
|
+
NotificationChannelError,
|
|
4
|
+
NotificationChannelRegistry,
|
|
5
|
+
} from "./channel-adapter.js";
|
|
6
|
+
import { InMemoryNotificationDeliveryRepository } from "./memory-delivery-repository.js";
|
|
7
|
+
import { NotificationDeliveryWorker } from "./delivery-worker.js";
|
|
8
|
+
import type { NotificationRecipientDirectory } from "./recipient-directory.js";
|
|
9
|
+
|
|
10
|
+
const directory: NotificationRecipientDirectory = {
|
|
11
|
+
async options() {
|
|
12
|
+
return { users: [], roles: [], departments: [] };
|
|
13
|
+
},
|
|
14
|
+
async resolve() {
|
|
15
|
+
return [];
|
|
16
|
+
},
|
|
17
|
+
async address(_userId, channel) {
|
|
18
|
+
return channel === "email" ? "user@example.com" : "13800000000";
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
describe("NotificationDeliveryWorker", () => {
|
|
23
|
+
test("成功投递后完成 outbox", async () => {
|
|
24
|
+
const repository = new InMemoryNotificationDeliveryRepository();
|
|
25
|
+
await repository.enqueue([draft("email")]);
|
|
26
|
+
const worker = new NotificationDeliveryWorker(
|
|
27
|
+
repository,
|
|
28
|
+
directory,
|
|
29
|
+
new NotificationChannelRegistry([
|
|
30
|
+
{
|
|
31
|
+
channel: "email",
|
|
32
|
+
async deliver() {
|
|
33
|
+
return { providerMessageId: "smtp-1" };
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
]),
|
|
37
|
+
);
|
|
38
|
+
expect(await worker.runNext(new Date("2030-01-01T00:00:00.000Z"))).toEqual({
|
|
39
|
+
claimed: 1,
|
|
40
|
+
delivered: 1,
|
|
41
|
+
retrying: 0,
|
|
42
|
+
dead: 0,
|
|
43
|
+
});
|
|
44
|
+
expect((await repository.list("n1"))[0]?.status).toBe("delivered");
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
test("可重试错误进入退避,未配置短信明确进入 dead", async () => {
|
|
48
|
+
const repository = new InMemoryNotificationDeliveryRepository();
|
|
49
|
+
await repository.enqueue([draft("email"), draft("sms")]);
|
|
50
|
+
const worker = new NotificationDeliveryWorker(
|
|
51
|
+
repository,
|
|
52
|
+
directory,
|
|
53
|
+
new NotificationChannelRegistry([
|
|
54
|
+
{
|
|
55
|
+
channel: "email",
|
|
56
|
+
async deliver() {
|
|
57
|
+
throw new NotificationChannelError("SMTP_TEMPORARY", true);
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
]),
|
|
61
|
+
{ retryBaseMs: 1_000 },
|
|
62
|
+
);
|
|
63
|
+
expect(await worker.runNext(new Date("2030-01-01T00:00:00.000Z"))).toEqual({
|
|
64
|
+
claimed: 2,
|
|
65
|
+
delivered: 0,
|
|
66
|
+
retrying: 1,
|
|
67
|
+
dead: 1,
|
|
68
|
+
});
|
|
69
|
+
const items = await repository.list("n1");
|
|
70
|
+
expect(items.find((item) => item.channel === "email")?.status).toBe(
|
|
71
|
+
"retrying",
|
|
72
|
+
);
|
|
73
|
+
expect(items.find((item) => item.channel === "sms")?.lastErrorCode).toBe(
|
|
74
|
+
"CHANNEL_NOT_CONFIGURED",
|
|
75
|
+
);
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
function draft(channel: "email" | "sms") {
|
|
80
|
+
return {
|
|
81
|
+
notificationId: "n1",
|
|
82
|
+
userId: "u1",
|
|
83
|
+
channel,
|
|
84
|
+
subject: "测试通知",
|
|
85
|
+
content: "正文",
|
|
86
|
+
};
|
|
87
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import {
|
|
2
|
+
NotificationChannelError,
|
|
3
|
+
NotificationChannelRegistry,
|
|
4
|
+
} from "./channel-adapter.js";
|
|
5
|
+
import type { NotificationDeliveryRepository } from "./delivery-repository.js";
|
|
6
|
+
import type { NotificationRecipientDirectory } from "./recipient-directory.js";
|
|
7
|
+
|
|
8
|
+
export interface NotificationDeliveryWorkerOptions {
|
|
9
|
+
batchSize?: number;
|
|
10
|
+
maxAttempts?: number;
|
|
11
|
+
retryBaseMs?: number;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export class NotificationDeliveryWorker {
|
|
15
|
+
private readonly batchSize: number;
|
|
16
|
+
private readonly maxAttempts: number;
|
|
17
|
+
private readonly retryBaseMs: number;
|
|
18
|
+
|
|
19
|
+
constructor(
|
|
20
|
+
private readonly repository: NotificationDeliveryRepository,
|
|
21
|
+
private readonly recipients: NotificationRecipientDirectory,
|
|
22
|
+
private readonly channels: NotificationChannelRegistry,
|
|
23
|
+
options: NotificationDeliveryWorkerOptions = {},
|
|
24
|
+
) {
|
|
25
|
+
this.batchSize = options.batchSize || 20;
|
|
26
|
+
this.maxAttempts = options.maxAttempts || 5;
|
|
27
|
+
this.retryBaseMs = options.retryBaseMs || 5_000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
async runNext(now = new Date()) {
|
|
31
|
+
const deliveries = await this.repository.claim(now, this.batchSize);
|
|
32
|
+
let delivered = 0;
|
|
33
|
+
let retrying = 0;
|
|
34
|
+
let dead = 0;
|
|
35
|
+
for (const delivery of deliveries) {
|
|
36
|
+
const adapter = this.channels.get(delivery.channel);
|
|
37
|
+
const address = await this.recipients.address(
|
|
38
|
+
delivery.userId,
|
|
39
|
+
delivery.channel,
|
|
40
|
+
);
|
|
41
|
+
if (!adapter || !address) {
|
|
42
|
+
await this.repository.fail(
|
|
43
|
+
delivery.id,
|
|
44
|
+
delivery.leaseToken,
|
|
45
|
+
adapter ? "RECIPIENT_ADDRESS_MISSING" : "CHANNEL_NOT_CONFIGURED",
|
|
46
|
+
);
|
|
47
|
+
dead += 1;
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
try {
|
|
51
|
+
const result = await adapter.deliver({
|
|
52
|
+
deliveryId: delivery.id,
|
|
53
|
+
userId: delivery.userId,
|
|
54
|
+
address,
|
|
55
|
+
subject: delivery.subject,
|
|
56
|
+
content: delivery.content,
|
|
57
|
+
});
|
|
58
|
+
await this.repository.complete(
|
|
59
|
+
delivery.id,
|
|
60
|
+
delivery.leaseToken,
|
|
61
|
+
result.providerMessageId,
|
|
62
|
+
);
|
|
63
|
+
delivered += 1;
|
|
64
|
+
} catch (error) {
|
|
65
|
+
const channelError =
|
|
66
|
+
error instanceof NotificationChannelError
|
|
67
|
+
? error
|
|
68
|
+
: new NotificationChannelError("CHANNEL_DELIVERY_FAILED", true);
|
|
69
|
+
const retry =
|
|
70
|
+
channelError.retryable && delivery.attemptCount < this.maxAttempts;
|
|
71
|
+
await this.repository.fail(
|
|
72
|
+
delivery.id,
|
|
73
|
+
delivery.leaseToken,
|
|
74
|
+
channelError.code,
|
|
75
|
+
retry ? this.retryAt(now, delivery.attemptCount) : undefined,
|
|
76
|
+
);
|
|
77
|
+
if (retry) retrying += 1;
|
|
78
|
+
else dead += 1;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return { claimed: deliveries.length, delivered, retrying, dead };
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
private retryAt(now: Date, attempt: number) {
|
|
85
|
+
const delay = this.retryBaseMs * 2 ** Math.max(0, attempt - 1);
|
|
86
|
+
return new Date(now.getTime() + Math.min(delay, 60 * 60 * 1_000));
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import {
|
|
2
|
+
notificationRevisions,
|
|
3
|
+
platformNotifications,
|
|
4
|
+
} from "@southwind-ai/database";
|
|
5
|
+
import type {
|
|
6
|
+
NotificationRevision,
|
|
7
|
+
PageResult,
|
|
8
|
+
PublishNotificationInput,
|
|
9
|
+
UpdateNotificationInput,
|
|
10
|
+
} from "@southwind-ai/shared";
|
|
11
|
+
import { and, desc, eq, inArray, sql } from "drizzle-orm";
|
|
12
|
+
import type { NodePgDatabase } from "drizzle-orm/node-postgres";
|
|
13
|
+
import type { RequestActor } from "../guards.js";
|
|
14
|
+
import { toNotification, toRevision } from "./drizzle-query.js";
|
|
15
|
+
|
|
16
|
+
export function publishNotification(
|
|
17
|
+
db: NodePgDatabase,
|
|
18
|
+
input: PublishNotificationInput,
|
|
19
|
+
actor: RequestActor,
|
|
20
|
+
) {
|
|
21
|
+
return db.transaction(async (tx) => {
|
|
22
|
+
const now = new Date();
|
|
23
|
+
const [row] = await tx
|
|
24
|
+
.insert(platformNotifications)
|
|
25
|
+
.values({
|
|
26
|
+
id: Bun.randomUUIDv7(),
|
|
27
|
+
...input,
|
|
28
|
+
scheduledFor: input.scheduledFor
|
|
29
|
+
? new Date(input.scheduledFor)
|
|
30
|
+
: undefined,
|
|
31
|
+
status: input.scheduledFor ? "scheduled" : "published",
|
|
32
|
+
publishedAt: input.scheduledFor ? new Date(input.scheduledFor) : now,
|
|
33
|
+
createdAt: now,
|
|
34
|
+
createdBy: actor.id,
|
|
35
|
+
updatedAt: now,
|
|
36
|
+
updatedBy: actor.id,
|
|
37
|
+
revision: 1,
|
|
38
|
+
})
|
|
39
|
+
.onConflictDoNothing()
|
|
40
|
+
.returning();
|
|
41
|
+
if (!row && input.sourceKey) {
|
|
42
|
+
const [existing] = await tx
|
|
43
|
+
.select()
|
|
44
|
+
.from(platformNotifications)
|
|
45
|
+
.where(eq(platformNotifications.sourceKey, input.sourceKey))
|
|
46
|
+
.limit(1);
|
|
47
|
+
if (existing) return toNotification(existing);
|
|
48
|
+
}
|
|
49
|
+
if (!row) throw new Error("通知发布未返回记录");
|
|
50
|
+
await tx.insert(notificationRevisions).values({
|
|
51
|
+
notificationId: row.id,
|
|
52
|
+
revision: row.revision,
|
|
53
|
+
title: row.title,
|
|
54
|
+
summary: row.summary,
|
|
55
|
+
content: row.content,
|
|
56
|
+
category: row.category,
|
|
57
|
+
editedAt: now,
|
|
58
|
+
editedBy: actor.id,
|
|
59
|
+
});
|
|
60
|
+
return toNotification(row);
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function updateNotification(
|
|
65
|
+
db: NodePgDatabase,
|
|
66
|
+
notificationId: string,
|
|
67
|
+
input: UpdateNotificationInput,
|
|
68
|
+
actor: RequestActor,
|
|
69
|
+
) {
|
|
70
|
+
return db.transaction(async (tx) => {
|
|
71
|
+
const [current] = await tx
|
|
72
|
+
.select()
|
|
73
|
+
.from(platformNotifications)
|
|
74
|
+
.where(
|
|
75
|
+
and(
|
|
76
|
+
eq(platformNotifications.id, notificationId),
|
|
77
|
+
eq(platformNotifications.status, "published"),
|
|
78
|
+
),
|
|
79
|
+
)
|
|
80
|
+
.for("update")
|
|
81
|
+
.limit(1);
|
|
82
|
+
if (!current) return undefined;
|
|
83
|
+
if (sameContent(current, input)) {
|
|
84
|
+
return { notification: toNotification(current), changed: false };
|
|
85
|
+
}
|
|
86
|
+
const editedAt = new Date();
|
|
87
|
+
const [updated] = await tx
|
|
88
|
+
.update(platformNotifications)
|
|
89
|
+
.set({
|
|
90
|
+
...input,
|
|
91
|
+
revision: sql`${platformNotifications.revision} + 1`,
|
|
92
|
+
updatedAt: editedAt,
|
|
93
|
+
updatedBy: actor.id,
|
|
94
|
+
})
|
|
95
|
+
.where(eq(platformNotifications.id, notificationId))
|
|
96
|
+
.returning();
|
|
97
|
+
if (!updated) throw new Error("通知更新未返回记录");
|
|
98
|
+
await tx.insert(notificationRevisions).values({
|
|
99
|
+
notificationId,
|
|
100
|
+
revision: updated.revision,
|
|
101
|
+
title: updated.title,
|
|
102
|
+
summary: updated.summary,
|
|
103
|
+
content: updated.content,
|
|
104
|
+
category: updated.category,
|
|
105
|
+
editedAt,
|
|
106
|
+
editedBy: actor.id,
|
|
107
|
+
});
|
|
108
|
+
return { notification: toNotification(updated), changed: true };
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export async function listNotificationRevisions(
|
|
113
|
+
db: NodePgDatabase,
|
|
114
|
+
notificationId: string,
|
|
115
|
+
page: number,
|
|
116
|
+
pageSize: number,
|
|
117
|
+
): Promise<PageResult<NotificationRevision> | undefined> {
|
|
118
|
+
const [notification] = await db
|
|
119
|
+
.select({ id: platformNotifications.id })
|
|
120
|
+
.from(platformNotifications)
|
|
121
|
+
.where(eq(platformNotifications.id, notificationId))
|
|
122
|
+
.limit(1);
|
|
123
|
+
if (!notification) return undefined;
|
|
124
|
+
const [rows, [{ count = 0 } = { count: 0 }]] = await Promise.all([
|
|
125
|
+
db
|
|
126
|
+
.select()
|
|
127
|
+
.from(notificationRevisions)
|
|
128
|
+
.where(eq(notificationRevisions.notificationId, notificationId))
|
|
129
|
+
.orderBy(desc(notificationRevisions.revision))
|
|
130
|
+
.limit(pageSize)
|
|
131
|
+
.offset((page - 1) * pageSize),
|
|
132
|
+
db
|
|
133
|
+
.select({ count: sql<number>`count(*)::int` })
|
|
134
|
+
.from(notificationRevisions)
|
|
135
|
+
.where(eq(notificationRevisions.notificationId, notificationId)),
|
|
136
|
+
]);
|
|
137
|
+
return {
|
|
138
|
+
items: rows.map(toRevision),
|
|
139
|
+
total: count,
|
|
140
|
+
page,
|
|
141
|
+
pageSize,
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export async function archiveNotification(
|
|
146
|
+
db: NodePgDatabase,
|
|
147
|
+
notificationId: string,
|
|
148
|
+
actor: RequestActor,
|
|
149
|
+
) {
|
|
150
|
+
const now = new Date();
|
|
151
|
+
const [row] = await db
|
|
152
|
+
.update(platformNotifications)
|
|
153
|
+
.set({
|
|
154
|
+
status: "archived",
|
|
155
|
+
archivedAt: now,
|
|
156
|
+
archivedBy: actor.id,
|
|
157
|
+
updatedAt: now,
|
|
158
|
+
updatedBy: actor.id,
|
|
159
|
+
})
|
|
160
|
+
.where(
|
|
161
|
+
and(
|
|
162
|
+
eq(platformNotifications.id, notificationId),
|
|
163
|
+
inArray(platformNotifications.status, ["published", "scheduled"]),
|
|
164
|
+
),
|
|
165
|
+
)
|
|
166
|
+
.returning();
|
|
167
|
+
return row ? toNotification(row) : undefined;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function sameContent(
|
|
171
|
+
current: typeof platformNotifications.$inferSelect,
|
|
172
|
+
input: UpdateNotificationInput,
|
|
173
|
+
) {
|
|
174
|
+
return (
|
|
175
|
+
current.title === input.title &&
|
|
176
|
+
current.summary === input.summary &&
|
|
177
|
+
current.content === input.content &&
|
|
178
|
+
current.category === input.category
|
|
179
|
+
);
|
|
180
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import {
|
|
2
|
+
notificationFavorites,
|
|
3
|
+
notificationReads,
|
|
4
|
+
notificationRevisions,
|
|
5
|
+
platformNotifications,
|
|
6
|
+
} from "@southwind-ai/database";
|
|
7
|
+
import type {
|
|
8
|
+
NotificationInboxFilters,
|
|
9
|
+
NotificationRevision,
|
|
10
|
+
PlatformNotification,
|
|
11
|
+
} from "@southwind-ai/shared";
|
|
12
|
+
import {
|
|
13
|
+
and,
|
|
14
|
+
eq,
|
|
15
|
+
ilike,
|
|
16
|
+
isNotNull,
|
|
17
|
+
isNull,
|
|
18
|
+
or,
|
|
19
|
+
sql,
|
|
20
|
+
type SQL,
|
|
21
|
+
} from "drizzle-orm";
|
|
22
|
+
import type { RequestActor } from "../guards.js";
|
|
23
|
+
|
|
24
|
+
export function toNotification(
|
|
25
|
+
row: typeof platformNotifications.$inferSelect,
|
|
26
|
+
): PlatformNotification {
|
|
27
|
+
return {
|
|
28
|
+
id: row.id,
|
|
29
|
+
title: row.title,
|
|
30
|
+
summary: row.summary,
|
|
31
|
+
content: row.content,
|
|
32
|
+
category: row.category,
|
|
33
|
+
status: row.status as PlatformNotification["status"],
|
|
34
|
+
publishedAt: row.publishedAt.toISOString(),
|
|
35
|
+
scheduledFor: row.scheduledFor?.toISOString(),
|
|
36
|
+
createdAt: row.createdAt.toISOString(),
|
|
37
|
+
createdBy: row.createdBy,
|
|
38
|
+
updatedAt: row.updatedAt.toISOString(),
|
|
39
|
+
updatedBy: row.updatedBy,
|
|
40
|
+
archivedAt: row.archivedAt?.toISOString(),
|
|
41
|
+
archivedBy: row.archivedBy || undefined,
|
|
42
|
+
target: row.target || undefined,
|
|
43
|
+
recipientUserId: row.recipientUserId || undefined,
|
|
44
|
+
recipientUserIds: row.recipientUserIds,
|
|
45
|
+
recipientRoleCodes: row.recipientRoleCodes,
|
|
46
|
+
recipientDepartmentIds: row.recipientDepartmentIds,
|
|
47
|
+
includeChildDepartments: row.includeChildDepartments,
|
|
48
|
+
deliveryChannels: row.deliveryChannels,
|
|
49
|
+
sourceKey: row.sourceKey || undefined,
|
|
50
|
+
revision: row.revision,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function toRevision(
|
|
55
|
+
row: typeof notificationRevisions.$inferSelect,
|
|
56
|
+
): NotificationRevision {
|
|
57
|
+
return {
|
|
58
|
+
notificationId: row.notificationId,
|
|
59
|
+
revision: row.revision,
|
|
60
|
+
title: row.title,
|
|
61
|
+
summary: row.summary,
|
|
62
|
+
content: row.content,
|
|
63
|
+
category: row.category,
|
|
64
|
+
editedAt: row.editedAt.toISOString(),
|
|
65
|
+
editedBy: row.editedBy,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function audienceWhere(
|
|
70
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
71
|
+
): SQL {
|
|
72
|
+
const roleClauses = actor.roleCodes.map(
|
|
73
|
+
(role) =>
|
|
74
|
+
sql`${platformNotifications.recipientRoleCodes} @> ${JSON.stringify([role])}::jsonb`,
|
|
75
|
+
);
|
|
76
|
+
return or(
|
|
77
|
+
and(
|
|
78
|
+
isNull(platformNotifications.recipientUserId),
|
|
79
|
+
sql`jsonb_array_length(${platformNotifications.recipientUserIds}) = 0`,
|
|
80
|
+
sql`jsonb_array_length(${platformNotifications.recipientRoleCodes}) = 0`,
|
|
81
|
+
sql`jsonb_array_length(${platformNotifications.recipientDepartmentIds}) = 0`,
|
|
82
|
+
),
|
|
83
|
+
eq(platformNotifications.recipientUserId, actor.id),
|
|
84
|
+
sql`${platformNotifications.recipientUserIds} @> ${JSON.stringify([actor.id])}::jsonb`,
|
|
85
|
+
...(actor.scopeContext?.departmentId
|
|
86
|
+
? [
|
|
87
|
+
sql`(
|
|
88
|
+
${platformNotifications.recipientDepartmentIds} @>
|
|
89
|
+
${JSON.stringify([actor.scopeContext.departmentId])}::jsonb
|
|
90
|
+
or (
|
|
91
|
+
${platformNotifications.includeChildDepartments} = true
|
|
92
|
+
and exists (
|
|
93
|
+
with recursive ancestors as (
|
|
94
|
+
select id, parent_id from departments
|
|
95
|
+
where id = ${actor.scopeContext.departmentId}
|
|
96
|
+
union all
|
|
97
|
+
select department.id, department.parent_id
|
|
98
|
+
from departments department
|
|
99
|
+
join ancestors child on child.parent_id = department.id
|
|
100
|
+
)
|
|
101
|
+
select 1 from ancestors
|
|
102
|
+
where ${platformNotifications.recipientDepartmentIds} @>
|
|
103
|
+
jsonb_build_array(ancestors.id)
|
|
104
|
+
)
|
|
105
|
+
)
|
|
106
|
+
)`,
|
|
107
|
+
]
|
|
108
|
+
: []),
|
|
109
|
+
...roleClauses,
|
|
110
|
+
)!;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export function inboxWhere(
|
|
114
|
+
actor: Pick<RequestActor, "id" | "roleCodes" | "scopeContext">,
|
|
115
|
+
filters: NotificationInboxFilters,
|
|
116
|
+
): SQL {
|
|
117
|
+
const conditions: SQL[] = [
|
|
118
|
+
eq(platformNotifications.status, "published"),
|
|
119
|
+
audienceWhere(actor),
|
|
120
|
+
];
|
|
121
|
+
const keyword = filters.q?.trim();
|
|
122
|
+
if (keyword) {
|
|
123
|
+
conditions.push(
|
|
124
|
+
or(
|
|
125
|
+
ilike(platformNotifications.title, `%${keyword}%`),
|
|
126
|
+
ilike(platformNotifications.summary, `%${keyword}%`),
|
|
127
|
+
ilike(platformNotifications.content, `%${keyword}%`),
|
|
128
|
+
ilike(platformNotifications.category, `%${keyword}%`),
|
|
129
|
+
)!,
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
const category = filters.category?.trim();
|
|
133
|
+
if (category) conditions.push(eq(platformNotifications.category, category));
|
|
134
|
+
if (filters.read !== undefined) {
|
|
135
|
+
conditions.push(
|
|
136
|
+
filters.read === "read"
|
|
137
|
+
? isNotNull(notificationReads.readAt)
|
|
138
|
+
: isNull(notificationReads.readAt),
|
|
139
|
+
);
|
|
140
|
+
}
|
|
141
|
+
if (filters.favorite !== undefined) {
|
|
142
|
+
conditions.push(
|
|
143
|
+
filters.favorite
|
|
144
|
+
? isNotNull(notificationFavorites.favoritedAt)
|
|
145
|
+
: isNull(notificationFavorites.favoritedAt),
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
return and(...conditions)!;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export function searchWhere(query?: string): SQL | undefined {
|
|
152
|
+
const keyword = query?.trim();
|
|
153
|
+
return keyword
|
|
154
|
+
? or(
|
|
155
|
+
ilike(platformNotifications.title, `%${keyword}%`),
|
|
156
|
+
ilike(platformNotifications.summary, `%${keyword}%`),
|
|
157
|
+
ilike(platformNotifications.category, `%${keyword}%`),
|
|
158
|
+
)
|
|
159
|
+
: undefined;
|
|
160
|
+
}
|