2023-03-28 22:09:06 +00:00
|
|
|
package senders
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/fs"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/instrumenting"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/log"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/webhook"
|
|
|
|
)
|
|
|
|
|
|
|
|
const webhookSpanName = "webhook.NotificationChannel"
|
|
|
|
|
2023-10-10 13:20:53 +00:00
|
|
|
func WebhookChannels(
|
2023-03-28 22:09:06 +00:00
|
|
|
ctx context.Context,
|
|
|
|
webhookConfig webhook.Config,
|
|
|
|
getFileSystemProvider func(ctx context.Context) (*fs.Config, error),
|
|
|
|
getLogProvider func(ctx context.Context) (*log.Config, error),
|
|
|
|
successMetricName,
|
|
|
|
failureMetricName string,
|
|
|
|
) (*Chain, error) {
|
|
|
|
if err := webhookConfig.Validate(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
channels := make([]channels.NotificationChannel, 0, 3)
|
|
|
|
webhookChannel, err := webhook.InitChannel(ctx, webhookConfig)
|
|
|
|
logging.WithFields(
|
|
|
|
"instance", authz.GetInstance(ctx).InstanceID(),
|
|
|
|
"callurl", webhookConfig.CallURL,
|
|
|
|
).OnError(err).Debug("initializing JSON channel failed")
|
|
|
|
if err == nil {
|
|
|
|
channels = append(
|
|
|
|
channels,
|
|
|
|
instrumenting.Wrap(
|
|
|
|
ctx,
|
|
|
|
webhookChannel,
|
|
|
|
webhookSpanName,
|
|
|
|
successMetricName,
|
|
|
|
failureMetricName,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
channels = append(channels, debugChannels(ctx, getFileSystemProvider, getLogProvider)...)
|
2023-10-10 13:20:53 +00:00
|
|
|
return ChainChannels(channels...), nil
|
2023-03-28 22:09:06 +00:00
|
|
|
}
|