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>
41 lines
1.8 KiB
Go
41 lines
1.8 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 probodconfig
|
|
|
|
type NotificationsConfig struct {
|
|
Mailer MailerConfig `json:"mailer"`
|
|
Slack SlackConfig `json:"slack"`
|
|
Webhook WebhookConfig `json:"webhook"`
|
|
Document DocumentNotificationConfig `json:"document"`
|
|
}
|
|
|
|
type WebhookConfig struct {
|
|
SenderInterval int `json:"sender-interval"`
|
|
CacheTTL int `json:"cache-ttl"`
|
|
}
|
|
|
|
// DocumentNotificationConfig configures the debounced worker that batches
|
|
// signature and approval request notifications. All durations are in seconds.
|
|
type DocumentNotificationConfig struct {
|
|
// Interval is how often the worker scans for pending requests.
|
|
Interval int `json:"interval"`
|
|
// DebounceDelay is how long a request must have been pending before its
|
|
// first notification is sent.
|
|
DebounceDelay int `json:"debounce-delay"`
|
|
// ReminderInterval is the base reminder cadence. Reminders are sent at
|
|
// 1x, 2x and 3x this interval after the previous email, then stop.
|
|
ReminderInterval int `json:"reminder-interval"`
|
|
}
|