65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
// Copyright (c) 2025 Probo Inc <hello@getprobo.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"
|
|
)
|
|
|
|
func InsertData(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope coredata.Scoper,
|
|
organizationID gid.GID,
|
|
eventType coredata.WebhookEventType,
|
|
data any,
|
|
) error {
|
|
var configs coredata.WebhookSubscriptions
|
|
exists, err := configs.ExistsByOrganizationIDAndEventType(ctx, conn, 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, conn, scope); err != nil {
|
|
return fmt.Errorf("cannot insert webhook data: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|