mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
29 lines
1.0 KiB
Go
29 lines
1.0 KiB
Go
package twilio
|
|
|
|
import (
|
|
twilio "github.com/kevinburke/twilio-go"
|
|
"github.com/zitadel/logging"
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/notification/channels"
|
|
"github.com/zitadel/zitadel/internal/notification/messages"
|
|
)
|
|
|
|
func InitTwilioChannel(config TwilioConfig) channels.NotificationChannel {
|
|
client := twilio.NewClient(config.SID, config.Token, nil)
|
|
|
|
logging.Log("NOTIF-KaxDZ").Debug("successfully initialized twilio sms channel")
|
|
|
|
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")
|
|
}
|
|
m, err := client.Messages.SendMessage(twilioMsg.SenderPhoneNumber, twilioMsg.RecipientPhoneNumber, twilioMsg.GetContent(), nil)
|
|
if err != nil {
|
|
return caos_errs.ThrowInternal(err, "TWILI-osk3S", "could not send message")
|
|
}
|
|
logging.LogWithFields("SMS_-f335c523", "message_sid", m.Sid, "status", m.Status).Debug("sms sent")
|
|
return nil
|
|
})
|
|
}
|