mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
f680dd934d
* chore: rename package errors to zerrors * rename package errors to gerrors * fix error related linting issues * fix zitadel error assertion * fix gosimple linting issues * fix deprecated linting issues * resolve gci linting issues * fix import structure --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
package twilio
|
|
|
|
import (
|
|
"github.com/kevinburke/twilio-go"
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels"
|
|
"github.com/zitadel/zitadel/internal/notification/messages"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
func InitChannel(config Config) channels.NotificationChannel {
|
|
client := twilio.NewClient(config.SID, config.Token, nil)
|
|
|
|
logging.Debug("successfully initialized twilio sms channel")
|
|
|
|
return channels.HandleMessageFunc(func(message channels.Message) error {
|
|
twilioMsg, ok := message.(*messages.SMS)
|
|
if !ok {
|
|
return zerrors.ThrowInternal(nil, "TWILI-s0pLc", "message is not SMS")
|
|
}
|
|
content, err := twilioMsg.GetContent()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m, err := client.Messages.SendMessage(twilioMsg.SenderPhoneNumber, twilioMsg.RecipientPhoneNumber, content, nil)
|
|
if err != nil {
|
|
return zerrors.ThrowInternal(err, "TWILI-osk3S", "could not send message")
|
|
}
|
|
logging.WithFields("message_sid", m.Sid, "status", m.Status).Debug("sms sent")
|
|
return nil
|
|
})
|
|
}
|