2022-01-06 08:00:24 +00:00
|
|
|
package twilio
|
|
|
|
|
|
|
|
import (
|
2022-06-13 06:34:11 +00:00
|
|
|
"github.com/kevinburke/twilio-go"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2022-06-13 06:34:11 +00:00
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/messages"
|
2022-01-06 08:00:24 +00:00
|
|
|
)
|
|
|
|
|
2023-03-28 22:09:06 +00:00
|
|
|
func InitChannel(config Config) channels.NotificationChannel {
|
2022-01-06 08:00:24 +00:00
|
|
|
client := twilio.NewClient(config.SID, config.Token, nil)
|
|
|
|
|
2022-06-13 06:34:11 +00:00
|
|
|
logging.Debug("successfully initialized twilio sms channel")
|
2022-01-06 08:00:24 +00:00
|
|
|
|
|
|
|
return channels.HandleMessageFunc(func(message channels.Message) error {
|
|
|
|
twilioMsg, ok := message.(*messages.SMS)
|
|
|
|
if !ok {
|
|
|
|
return caos_errs.ThrowInternal(nil, "TWILI-s0pLc", "message is not SMS")
|
|
|
|
}
|
2023-03-28 22:09:06 +00:00
|
|
|
content, err := twilioMsg.GetContent()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m, err := client.Messages.SendMessage(twilioMsg.SenderPhoneNumber, twilioMsg.RecipientPhoneNumber, content, nil)
|
2022-01-06 08:00:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return caos_errs.ThrowInternal(err, "TWILI-osk3S", "could not send message")
|
|
|
|
}
|
2022-06-13 06:34:11 +00:00
|
|
|
logging.WithFields("message_sid", m.Sid, "status", m.Status).Debug("sms sent")
|
2022-01-06 08:00:24 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|