The n8n package could already manage webhook subscriptions through API CRUD, but had no way to start a workflow when Probo emitted an event. A user had to drop in the generic Webhook node, create a subscription by hand, and verify the HMAC signature themselves. Add a ProboTrigger node that owns the subscription lifecycle: it creates the subscription on activation pointing at n8n's generated webhook URL, re-checks and re-registers it if the URL drifts, and deletes it on deactivation. The webhook handler recomputes the HMAC-SHA256 over the raw request body and compares it constant-time against the delivered signature, failing closed when the bytes or headers are absent. Drop the MEETING_* event choices from the webhook create and update operations and the CLI event list. They are not part of the backend WebhookEventType enum, so selecting them only produced API rejections. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
31 lines
1.1 KiB
Go
31 lines
1.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 shared
|
|
|
|
// ValidEvents is the set of event types accepted by the webhook
|
|
// create and update commands. Keep in sync with
|
|
// pkg/coredata/webhook_event_type.go.
|
|
var ValidEvents = []string{
|
|
"THIRD_PARTY_CREATED",
|
|
"THIRD_PARTY_UPDATED",
|
|
"THIRD_PARTY_DELETED",
|
|
"USER_CREATED",
|
|
"USER_UPDATED",
|
|
"USER_DELETED",
|
|
"OBLIGATION_CREATED",
|
|
"OBLIGATION_UPDATED",
|
|
"OBLIGATION_DELETED",
|
|
}
|