2022-01-06 08:00:24 +00:00
|
|
|
package senders
|
|
|
|
|
|
|
|
import (
|
2022-03-07 13:22:37 +00:00
|
|
|
"context"
|
|
|
|
|
2022-05-13 12:13:07 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/fs"
|
2023-03-28 22:09:06 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/instrumenting"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/log"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/twilio"
|
2022-01-06 08:00:24 +00:00
|
|
|
)
|
|
|
|
|
2023-03-28 22:09:06 +00:00
|
|
|
const twilioSpanName = "twilio.NotificationChannel"
|
|
|
|
|
|
|
|
func SMSChannels(
|
|
|
|
ctx context.Context,
|
|
|
|
twilioConfig *twilio.Config,
|
|
|
|
getFileSystemProvider func(ctx context.Context) (*fs.Config, error),
|
|
|
|
getLogProvider func(ctx context.Context) (*log.Config, error),
|
|
|
|
successMetricName,
|
|
|
|
failureMetricName string,
|
|
|
|
) (chain *Chain, err error) {
|
2022-05-13 12:13:07 +00:00
|
|
|
channels := make([]channels.NotificationChannel, 0, 3)
|
2022-03-07 13:22:37 +00:00
|
|
|
if twilioConfig != nil {
|
2023-03-28 22:09:06 +00:00
|
|
|
channels = append(
|
|
|
|
channels,
|
|
|
|
instrumenting.Wrap(
|
|
|
|
ctx,
|
|
|
|
twilio.InitChannel(*twilioConfig),
|
|
|
|
twilioSpanName,
|
|
|
|
successMetricName,
|
|
|
|
failureMetricName,
|
|
|
|
),
|
|
|
|
)
|
2022-03-07 13:22:37 +00:00
|
|
|
}
|
2022-05-13 12:13:07 +00:00
|
|
|
channels = append(channels, debugChannels(ctx, getFileSystemProvider, getLogProvider)...)
|
|
|
|
return chainChannels(channels...), nil
|
2022-01-06 08:00:24 +00:00
|
|
|
}
|