Replace the immediate per-document approval email and the manual "send signing notifications" action with a single debounced worker that batches pending requests per recipient and organization. The worker (go.gearno.de/kit/worker) polls on an interval (default 5m) and claims one (organization, recipient) group at a time, sending one consolidated signing email and/or one approval email per recipient/org that lists every document awaiting their signature or approval. The claim is a conditional UPDATE that doubles as concurrency-safe dedup, so several workers never email the same group twice. Each request is notified once it has been pending past the debounce delay (default 15m), then reminded at 1x, 2x and 3x the reminder interval (default 1 day) after the previous email, after which it stops. New last_notified_at and notification_count columns on signatures and approval decisions drive the debounce, the widening reminder cadence and the four-email cap. Email copy lists each document with its title, type and a deep link to the employee page. Removed the inline approval-on-publish email, the SendSigningNotifications service method/mutation/MCP tool, its IAM action, and the related console UI and n8n operation. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
62 lines
3.1 KiB
Go
62 lines
3.1 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package probod
|
|
|
|
import "go.probo.inc/probo/pkg/probodconfig"
|
|
|
|
type (
|
|
FullConfig = probodconfig.FullConfig
|
|
Config = probodconfig.Config
|
|
UnitConfig = probodconfig.UnitConfig
|
|
MetricsConfig = probodconfig.MetricsConfig
|
|
TracingConfig = probodconfig.TracingConfig
|
|
ESignConfig = probodconfig.ESignConfig
|
|
TrustCenterConfig = probodconfig.TrustCenterConfig
|
|
APIConfig = probodconfig.APIConfig
|
|
CorsConfig = probodconfig.CorsConfig
|
|
ProxyProtocolConfig = probodconfig.ProxyProtocolConfig
|
|
AuthConfig = probodconfig.AuthConfig
|
|
OAuth2ServerConfig = probodconfig.OAuth2ServerConfig
|
|
OAuth2SigningKeyConfig = probodconfig.OAuth2SigningKeyConfig
|
|
CookieConfig = probodconfig.CookieConfig
|
|
PasswordConfig = probodconfig.PasswordConfig
|
|
AWSConfig = probodconfig.AWSConfig
|
|
ConnectorConfig = probodconfig.ConnectorConfig
|
|
ConnectorConfigOAuth2 = probodconfig.ConnectorConfigOAuth2
|
|
CustomDomainsConfig = probodconfig.CustomDomainsConfig
|
|
ACMEConfig = probodconfig.ACMEConfig
|
|
LLMProviderConfig = probodconfig.LLMProviderConfig
|
|
LLMAgentConfig = probodconfig.LLMAgentConfig
|
|
EvidenceDescriberConfig = probodconfig.EvidenceDescriberConfig
|
|
ThirdPartyVettingWorkerConfig = probodconfig.ThirdPartyVettingWorkerConfig
|
|
AgentsConfig = probodconfig.AgentsConfig
|
|
|
|
TrackerMappingWorkerConfig = probodconfig.TrackerMappingWorkerConfig
|
|
CommonPatternEnrichmentWorkerConfig = probodconfig.CommonPatternEnrichmentWorkerConfig
|
|
CommonThirdPartyEnrichmentWorkerConfig = probodconfig.CommonThirdPartyEnrichmentWorkerConfig
|
|
|
|
MailerConfig = probodconfig.MailerConfig
|
|
SMTPConfig = probodconfig.SMTPConfig
|
|
NotificationsConfig = probodconfig.NotificationsConfig
|
|
WebhookConfig = probodconfig.WebhookConfig
|
|
|
|
DocumentNotificationConfig = probodconfig.DocumentNotificationConfig
|
|
OIDCProviderConfig = probodconfig.OIDCProviderConfig
|
|
PgConfig = probodconfig.PgConfig
|
|
SAMLConfig = probodconfig.SAMLConfig
|
|
SCIMBridgeConfig = probodconfig.SCIMBridgeConfig
|
|
SlackConfig = probodconfig.SlackConfig
|
|
)
|