File size: 12,731 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
package twilio
import (
"context"
"database/sql"
stderrors "errors"
"fmt"
"net/http"
"net/url"
"regexp"
"strconv"
"strings"
"time"
"github.com/target/goalert/alert"
"github.com/target/goalert/config"
"github.com/target/goalert/gadb"
"github.com/target/goalert/notification"
"github.com/target/goalert/notification/nfydest"
"github.com/target/goalert/permission"
"github.com/target/goalert/retry"
"github.com/target/goalert/util/log"
"github.com/target/goalert/validation"
"github.com/pkg/errors"
)
var (
lastReplyRx = regexp.MustCompile(`^'?\s*(c|close|a|e|ack[a-z]*)\s*'?$`)
shortReplyRx = regexp.MustCompile(`^'?\s*([0-9]+)\s*(c|a|e)\s*'?$`)
alertReplyRx = regexp.MustCompile(`^'?\s*(c|close|e|a|ack[a-z]*)\s*#?\s*([0-9]+)\s*'?$`)
svcReplyRx = regexp.MustCompile(`^'?\s*([0-9]+)\s*(cc|aa)\s*'?$`)
)
func NewSMSDest(number string) gadb.DestV1 {
return gadb.NewDestV1(DestTypeTwilioSMS, FieldPhoneNumber, number)
}
// SMS implements a notification.Sender for Twilio SMS.
type SMS struct {
b *dbSMS
c *Config
r notification.Receiver
limit *replyLimiter
}
var (
_ notification.ReceiverSetter = &SMS{}
_ nfydest.MessageSender = &SMS{}
_ nfydest.MessageStatuser = &SMS{}
)
// NewSMS performs operations like validating essential parameters, registering the Twilio client and db
// and adding routes for successful and unsuccessful message delivery to Twilio
func NewSMS(ctx context.Context, db *sql.DB, c *Config) (*SMS, error) {
b, err := newDB(ctx, db)
if err != nil {
return nil, err
}
s := &SMS{
b: b,
c: c,
limit: newReplyLimiter(),
}
return s, nil
}
// SetReceiver sets the notification.Receiver for incoming messages and status updates.
func (s *SMS) SetReceiver(r notification.Receiver) { s.r = r }
// Status provides the current status of a message.
func (s *SMS) MessageStatus(ctx context.Context, externalID string) (*notification.Status, error) {
msg, err := s.c.GetSMS(ctx, externalID)
if err != nil {
return nil, err
}
return msg.messageStatus(), nil
}
// Send implements the notification.Sender interface.
func (s *SMS) SendMessage(ctx context.Context, msg notification.Message) (*notification.SentMessage, error) {
cfg := config.FromContext(ctx)
if !cfg.Twilio.Enable {
return nil, errors.New("Twilio provider is disabled")
}
if msg.DestType() != DestTypeTwilioSMS {
return nil, errors.Errorf("unsupported destination type %s; expected SMS", msg.DestType())
}
destNumber := msg.DestArg(FieldPhoneNumber)
if destNumber == cfg.Twilio.FromNumber {
return nil, errors.New("refusing to send outgoing SMS to FromNumber")
}
ctx = log.WithFields(ctx, log.Fields{
"Phone": destNumber,
"Type": "TwilioSMS",
})
makeSMSCode := func(alertID int, serviceID string) int {
if !hasTwoWaySMSSupport(ctx, destNumber) {
return 0
}
code, err := s.b.insertDB(ctx, destNumber, msg.MsgID(), alertID, serviceID)
if err != nil {
log.Log(ctx, errors.Wrap(err, "insert alert id for SMS callback -- sending 1-way SMS as fallback"))
return 0
}
return code
}
var message string
var err error
switch t := msg.(type) {
case notification.AlertStatus:
message, err = renderAlertStatusMessage(cfg.ApplicationName(), t)
case notification.AlertBundle:
var link string
if canContainURL(ctx, destNumber) {
link = cfg.CallbackURL(fmt.Sprintf("/services/%s/alerts", t.ServiceID))
}
message, err = renderAlertBundleMessage(cfg.ApplicationName(), t, link, makeSMSCode(0, t.ServiceID))
case notification.Alert:
var link string
if canContainURL(ctx, destNumber) {
link = cfg.CallbackURL(fmt.Sprintf("/alerts/%d", t.AlertID))
}
message, err = renderAlertMessage(cfg.ApplicationName(), t, link, makeSMSCode(t.AlertID, ""))
case notification.Test:
message = fmt.Sprintf("%s: Test message.", cfg.ApplicationName())
case notification.Verification:
message = fmt.Sprintf("%s: Verification code: %s", cfg.ApplicationName(), t.Code)
default:
return nil, errors.Errorf("unhandled message type %T", t)
}
if err != nil {
return nil, errors.Wrap(err, "render message")
}
opts := &SMSOptions{
ValidityPeriod: time.Second * 10,
CallbackParams: make(url.Values),
}
opts.CallbackParams.Set(msgParamID, msg.MsgID())
// Actually send notification to end user & receive Message Status
resp, err := s.c.SendSMS(ctx, destNumber, message, opts)
if err != nil {
return nil, errors.Wrap(err, "send message")
}
// If the message was sent successfully, reset reply limits.
s.limit.Reset(destNumber)
return resp.sentMessage(), nil
}
func (s *SMS) ServeStatusCallback(w http.ResponseWriter, req *http.Request) {
if disabled(w, req) {
return
}
ctx := req.Context()
cfg := config.FromContext(ctx)
status := MessageStatus(req.FormValue("MessageStatus"))
sid := validSID(req.FormValue("MessageSid"))
var number string
if cfg.Twilio.RCSSenderID != "" && req.FormValue("From") == "rcs:"+cfg.Twilio.RCSSenderID {
number = req.FormValue("To")
} else {
number = validPhone(req.FormValue("To"))
}
if status == "" || sid == "" || number == "" {
http.Error(w, "", http.StatusBadRequest)
return
}
ctx = log.WithFields(ctx, log.Fields{
"Status": status,
"SID": sid,
"Phone": number,
"Type": "TwilioSMS",
})
msg := Message{SID: sid, Status: status, From: strings.TrimPrefix(req.FormValue("From"), "rcs:")}
log.Debugf(ctx, "Got Twilio SMS status callback.")
err := s.r.SetMessageStatus(ctx, sid, msg.messageStatus())
if err != nil {
// log and continue
log.Log(ctx, err)
}
}
// isStopMessage checks the body of the message against single-word matches
// i.e. "stop" will unsubscribe, however "please stop" will not.
func isStopMessage(body string) bool {
switch strings.ToLower(body) {
case "stop", "stopall", "unsubscribe", "cancel", "end", "quit":
return true
}
return false
}
// isStartMessage checks the body of the message against single-word matches
// i.e. "start" will resubscribe, however "please start" will not.
func isStartMessage(body string) bool {
switch strings.ToLower(body) {
case "start", "yes", "unstop":
return true
}
return false
}
func (s *SMS) ServeMessage(w http.ResponseWriter, req *http.Request) {
if disabled(w, req) {
return
}
ctx := req.Context()
cfg := config.FromContext(ctx)
from := validPhone(strings.TrimPrefix(req.FormValue("From"), "rcs:"))
if from == "" || from == cfg.Twilio.FromNumber || from == cfg.Twilio.RCSSenderID {
http.Error(w, "", http.StatusBadRequest)
return
}
ctx = log.WithFields(ctx, log.Fields{
"Number": from,
"Type": "TwilioSMS",
})
respond := func(isPassive bool, msg string) {
if !isPassive {
// always reset if an action was taken
s.limit.Reset(from)
}
if s.limit.ShouldDrop(from) {
log.Debugf(ctx, "SMS passive reply limit reached for %s, not replying.", from)
return
}
if isPassive {
valid, err := s.r.IsKnownDest(ctx, gadb.NewDestV1(DestTypeTwilioSMS, FieldPhoneNumber, from))
if err != nil {
log.Log(ctx, fmt.Errorf("check if known SMS number: %w", err))
} else if !valid {
// don't respond if the number is not known
return
}
s.limit.RecordPassiveReply(from)
}
smsFrom := req.FormValue("To")
if cfg.Twilio.MessagingServiceSID != "" {
smsFrom = cfg.Twilio.MessagingServiceSID
}
_, err := s.c.SendSMS(ctx, from, msg, &SMSOptions{FromNumber: smsFrom})
if err != nil {
log.Log(ctx, errors.Wrap(err, "send response"))
}
}
var err error
retryOpts := []retry.Option{
retry.Log(ctx),
retry.Limit(10),
retry.FibBackoff(time.Second),
}
// handle start and stop codes from user
body := req.FormValue("Body")
if isStartMessage(body) {
err := retry.DoTemporaryError(func(int) error { return s.r.Start(ctx, NewSMSDest(from)) }, retryOpts...)
if err != nil {
log.Log(ctx, fmt.Errorf("process START message: %w", err))
}
return
}
if isStopMessage(body) {
err := retry.DoTemporaryError(func(int) error { return s.r.Stop(ctx, NewSMSDest(from)) }, retryOpts...)
if err != nil {
log.Log(ctx, fmt.Errorf("process STOP message: %w", err))
}
return
}
if cfg.Twilio.DisableTwoWaySMS {
respond(true, "Response codes are currently disabled. Visit the dashboard to manage alerts.")
return
}
body = strings.TrimSpace(body)
body = strings.ToLower(body)
var lookupFn func() (*codeInfo, error)
var result notification.Result
var isSvc bool
if m := lastReplyRx.FindStringSubmatch(body); len(m) == 2 {
if strings.HasPrefix(m[1], "a") {
result = notification.ResultAcknowledge
} else if strings.HasPrefix(m[1], "e") {
result = notification.ResultEscalate
} else {
result = notification.ResultResolve
}
lookupFn = func() (*codeInfo, error) { return s.b.LookupByCode(ctx, from, 0) }
} else if m := shortReplyRx.FindStringSubmatch(body); len(m) == 3 {
if strings.HasPrefix(m[2], "a") {
result = notification.ResultAcknowledge
} else if strings.HasPrefix(m[2], "e") {
result = notification.ResultEscalate
} else {
result = notification.ResultResolve
}
code, err := strconv.Atoi(m[1])
if err != nil {
log.Debug(ctx, errors.Wrap(err, "parse code"))
} else {
ctx = log.WithField(ctx, "Code", code)
lookupFn = func() (*codeInfo, error) { return s.b.LookupByCode(ctx, from, code) }
}
} else if m := alertReplyRx.FindStringSubmatch(body); len(m) == 3 {
if strings.HasPrefix(m[1], "a") {
result = notification.ResultAcknowledge
} else if strings.HasPrefix(m[1], "e") {
result = notification.ResultEscalate
} else {
result = notification.ResultResolve
}
alertID, err := strconv.Atoi(m[2])
if err != nil {
log.Debug(ctx, errors.Wrap(err, "parse alertID"))
} else {
ctx = log.WithField(ctx, "AlertID", alertID)
lookupFn = func() (*codeInfo, error) { return s.b.LookupByAlertID(ctx, from, alertID) }
}
} else if m := svcReplyRx.FindStringSubmatch(body); len(m) == 3 {
isSvc = true
if strings.HasPrefix(m[2], "a") {
result = notification.ResultAcknowledge
} else if strings.HasPrefix(m[2], "e") {
result = notification.ResultEscalate
} else {
result = notification.ResultResolve
}
code, err := strconv.Atoi(m[1])
if err != nil {
log.Debug(ctx, errors.Wrap(err, "parse code"))
} else {
ctx = log.WithField(ctx, "Code", code)
lookupFn = func() (*codeInfo, error) { return s.b.LookupSvcByCode(ctx, from, code) }
}
}
if lookupFn == nil {
respond(true, "Sorry, but that isn't a request GoAlert understood. Visit the Web UI for more information. To unsubscribe, reply with STOP.")
ctx = log.WithField(ctx, "SMSBody", body)
log.Debug(ctx, errors.Wrap(err, "parse alert action"))
return
}
var prefix string
switch result {
case notification.ResultAcknowledge:
prefix = "Acknowledged"
case notification.ResultEscalate:
prefix = "Escalation requested"
default:
prefix = "Closed"
}
var nonSystemErr bool
var info *codeInfo
err = retry.DoTemporaryError(func(int) error {
info, err = lookupFn()
if err != nil {
return errors.Wrap(err, "lookup code")
}
err = s.r.Receive(ctx, info.CallbackID, result)
if err != nil {
return fmt.Errorf("process notification response: %w", err)
}
return nil
}, retryOpts...)
if errors.Is(err, sql.ErrNoRows) || (isSvc && info.ServiceName == "") || (!isSvc && info.AlertID == 0) {
respond(true, "Unknown reply code for this action. Visit the dashboard to manage alerts.")
return
}
msg := "System error. Visit the dashboard to manage alerts."
if alert.IsAlreadyClosed(err) {
nonSystemErr = true
msg = fmt.Sprintf("Alert #%d already closed", alert.AlertID(err))
} else if alert.IsAlreadyAcknowledged(err) {
nonSystemErr = true
msg = fmt.Sprintf("Alert #%d already acknowledged", alert.AlertID(err))
} else if validation.IsClientError(err) {
respond(true, "Error: "+stderrors.Unwrap(err).Error())
return
}
if nonSystemErr {
var e alert.LogEntryFetcher
// alert store returns the special error struct, twilio checks if it's special, and if so, pulls the log entry
if errors.As(err, &e) {
// we pass a 'sudo' context to give permission
permission.SudoContext(ctx, func(sCtx context.Context) {
entry, err := e.LogEntry(sCtx)
if err != nil {
log.Log(sCtx, errors.Wrap(err, "fetch log entry"))
} else {
msg += "\n\n" + entry.String(ctx)
}
})
} else {
log.Log(ctx, errors.Wrap(err, "process notification response"))
}
respond(true, msg)
return
}
if err != nil {
log.Log(ctx, err)
respond(true, msg)
return
}
if info.ServiceName != "" {
respond(false, fmt.Sprintf("%s all alerts for service '%s'", prefix, info.ServiceName))
} else {
respond(false, fmt.Sprintf("%s alert #%d", prefix, info.AlertID))
}
}
|