75 lines
2.1 KiB
Go
75 lines
2.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 webhook
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"time"
|
|
|
|
"go.gearno.de/kit/pg"
|
|
"go.probo.inc/probo/pkg/coredata"
|
|
"go.probo.inc/probo/pkg/gid"
|
|
)
|
|
|
|
type Payload struct {
|
|
EventID string `json:"eventId"`
|
|
SubscriptionID string `json:"subscriptionId"`
|
|
OrganizationID string `json:"organizationId"`
|
|
EventType string `json:"eventType"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
Data json.RawMessage `json:"data"`
|
|
}
|
|
|
|
func InsertData(
|
|
ctx context.Context,
|
|
tx pg.Tx,
|
|
scope coredata.Scoper,
|
|
organizationID gid.GID,
|
|
eventType coredata.WebhookEventType,
|
|
data any,
|
|
) error {
|
|
var configs coredata.WebhookSubscriptions
|
|
|
|
exists, err := configs.ExistsByOrganizationIDAndEventType(ctx, tx, scope, organizationID, eventType)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot check webhook subscriptions: %w", err)
|
|
}
|
|
|
|
if !exists {
|
|
return nil
|
|
}
|
|
|
|
raw, err := json.Marshal(data)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot marshal webhook event data: %w", err)
|
|
}
|
|
|
|
webhookData := &coredata.WebhookData{
|
|
ID: gid.New(scope.GetTenantID(), coredata.WebhookDataEntityType),
|
|
OrganizationID: organizationID,
|
|
EventType: eventType,
|
|
Data: raw,
|
|
CreatedAt: time.Now(),
|
|
}
|
|
|
|
if err = webhookData.Insert(ctx, tx, scope); err != nil {
|
|
return fmt.Errorf("cannot insert webhook data: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|