File size: 11,052 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 |
package notification
import (
"context"
cRand "crypto/rand"
"database/sql"
"encoding/binary"
"fmt"
"math/rand"
"time"
"github.com/target/goalert/gadb"
"github.com/target/goalert/permission"
"github.com/target/goalert/search"
"github.com/target/goalert/util"
"github.com/target/goalert/util/log"
"github.com/target/goalert/util/sqlutil"
"github.com/target/goalert/validation"
"github.com/target/goalert/validation/validate"
"github.com/google/uuid"
"github.com/pkg/errors"
)
const minTimeBetweenTests = time.Minute
type Store struct {
db *sql.DB
getCMUserID *sql.Stmt
setVerificationCode *sql.Stmt
verifyAndEnableContactMethod *sql.Stmt
insertTestNotification *sql.Stmt
updateLastSendTime *sql.Stmt
getCode *sql.Stmt
isDisabled *sql.Stmt
sendTestLock *sql.Stmt
rand *rand.Rand
}
func NewStore(ctx context.Context, db *sql.DB) (*Store, error) {
p := &util.Prepare{DB: db, Ctx: ctx}
var seed int64
err := binary.Read(cRand.Reader, binary.BigEndian, &seed)
if err != nil {
return nil, errors.Wrap(err, "generate random seed")
}
return &Store{
db: db,
rand: rand.New(rand.NewSource(seed)),
getCMUserID: p.P(`select user_id from user_contact_methods where id = $1`),
sendTestLock: p.P(`lock outgoing_messages, user_contact_methods in row exclusive mode`),
getCode: p.P(`
select code
from user_verification_codes
where id = $1
`),
isDisabled: p.P(`
select disabled
from user_contact_methods
where id = $1
`),
// should result in sending a verification code to the specified contact method
setVerificationCode: p.P(`
insert into user_verification_codes (id, contact_method_id, code, expires_at)
values ($1, $2, $3, NOW() + '15 minutes'::interval)
on conflict (contact_method_id) do update
set
sent = false,
expires_at = EXCLUDED.expires_at
`),
// should reactivate a contact method if specified code matches what was set
verifyAndEnableContactMethod: p.P(`
with v as (
delete from user_verification_codes
where contact_method_id = $1 and code = $2
returning contact_method_id id
)
update user_contact_methods cm
set disabled = false
from v
where cm.id = v.id
returning cm.id
`),
updateLastSendTime: p.P(`
update user_contact_methods
set last_test_verify_at = now()
where
id = $1 and
(
last_test_verify_at + cast($2 as interval) < now()
or
last_test_verify_at isnull
)
`),
insertTestNotification: p.P(`
insert into outgoing_messages (id, message_type, contact_method_id, user_id)
select
$1,
'test_notification',
$2,
cm.user_id
from user_contact_methods cm
where cm.id = $2
`),
}, p.Err
}
// OriginalMessageStatus will return the status of the first alert notification sent to `dest` for the given `alertID`.
func (s *Store) OriginalMessageStatus(ctx context.Context, alertID int, dstID DestID) (*SendResult, error) {
err := permission.LimitCheckAny(ctx, permission.System)
if err != nil {
return nil, err
}
row, err := gadb.New(s.db).NfyOriginalMessageStatus(ctx, gadb.NfyOriginalMessageStatusParams{
AlertID: sql.NullInt64{Valid: true, Int64: int64(alertID)},
ContactMethodID: dstID.CMID,
ChannelID: dstID.NCID,
})
if errors.Is(err, sql.ErrNoRows) {
return nil, nil
}
if err != nil {
return nil, err
}
return outgoingMessageToSendResult(row.OutgoingMessage, row.CmDest, row.ChDest)
}
func outgoingMessageToSendResult(msg gadb.OutgoingMessage, cm, ch gadb.NullDestV1) (*SendResult, error) {
res := SendResult{
ID: msg.ID.String(),
ProviderMessageID: msg.ProviderMsgID,
}
switch {
case cm.Valid:
res.DestType = cm.DestV1.Type
case ch.Valid:
res.DestType = ch.DestV1.Type
}
state, err := messageStateFromStatus(msg.LastStatus, msg.NextRetryAt.Valid)
if err != nil {
return nil, err
}
res.Status = Status{
State: state,
Details: msg.StatusDetails,
Sequence: int(msg.ProviderSeq),
SrcValue: msg.SrcValue.String,
}
if msg.LastStatusAt.Valid {
res.Age = msg.LastStatusAt.Time.Sub(msg.CreatedAt)
}
return &res, nil
}
func (s *Store) cmUserID(ctx context.Context, id string) (string, error) {
err := permission.LimitCheckAny(ctx, permission.User, permission.Admin)
if err != nil {
return "", err
}
err = validate.UUID("ContactMethodID", id)
if err != nil {
return "", err
}
var userID string
err = s.getCMUserID.QueryRowContext(ctx, id).Scan(&userID)
if errors.Is(err, sql.ErrNoRows) {
return "", validation.NewFieldError("ContactMethodID", "does not exist")
}
if err != nil {
return "", err
}
// only admin or same-user can verify
err = permission.LimitCheckAny(ctx, permission.Admin, permission.MatchUser(userID))
if err != nil {
return "", err
}
return userID, nil
}
func (s *Store) Code(ctx context.Context, id string) (int, error) {
err := permission.LimitCheckAny(ctx, permission.System)
if err != nil {
return 0, err
}
err = validate.UUID("VerificationCodeID", id)
if err != nil {
return 0, err
}
var code int
err = s.getCode.QueryRowContext(ctx, id).Scan(&code)
return code, err
}
func (s *Store) SendContactMethodTest(ctx context.Context, id string) error {
cmUserID, err := s.cmUserID(ctx, id)
if err != nil {
return err
}
// due to potential regulations around consent with phone calls and SMS, we
// only allow users to send test messages to their own contact methods
err = permission.LimitCheckAny(ctx, permission.MatchUser(cmUserID))
if err != nil {
return err
}
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return err
}
defer sqlutil.Rollback(ctx, "notification: send test message", tx)
// Lock outgoing_messages first, before we modify user_contact methods
// to prevent deadlock.
_, err = tx.StmtContext(ctx, s.sendTestLock).ExecContext(ctx)
if err != nil {
return err
}
var isDisabled bool
err = tx.StmtContext(ctx, s.isDisabled).QueryRowContext(ctx, id).Scan(&isDisabled)
if err != nil {
return err
}
if isDisabled {
return validation.NewFieldError("ContactMethod", "contact method disabled")
}
r, err := tx.StmtContext(ctx, s.updateLastSendTime).ExecContext(ctx, id, fmt.Sprintf("%f seconds", minTimeBetweenTests.Seconds()))
if err != nil {
return err
}
rows, err := r.RowsAffected()
if err != nil {
return err
}
if rows != 1 {
return validation.NewFieldError("ContactMethod", "test message rate-limit exceeded")
}
vID := uuid.New().String()
_, err = tx.StmtContext(ctx, s.insertTestNotification).ExecContext(ctx, vID, id)
if err != nil {
return err
}
return tx.Commit()
}
func (s *Store) SendContactMethodVerification(ctx context.Context, cmID string) error {
_, err := s.cmUserID(ctx, cmID)
if err != nil {
return err
}
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return err
}
defer sqlutil.Rollback(ctx, "notification: send verification message", tx)
r, err := tx.StmtContext(ctx, s.updateLastSendTime).ExecContext(ctx, cmID, fmt.Sprintf("%f seconds", minTimeBetweenTests.Seconds()))
if err != nil {
return err
}
rows, err := r.RowsAffected()
if err != nil {
return err
}
if rows != 1 {
return validation.NewFieldError("ContactMethod", fmt.Sprintf("Too many messages! Please try again in %.0f minute(s)", minTimeBetweenTests.Minutes()))
}
vcID := uuid.New().String()
code := s.rand.Intn(900000) + 100000
_, err = tx.StmtContext(ctx, s.setVerificationCode).ExecContext(ctx, vcID, cmID, code)
if err != nil {
return errors.Wrap(err, "set verification code")
}
return tx.Commit()
}
func (s *Store) VerifyContactMethod(ctx context.Context, cmID string, code int) error {
_, err := s.cmUserID(ctx, cmID)
if err != nil {
return err
}
res, err := s.verifyAndEnableContactMethod.ExecContext(ctx, cmID, code)
if errors.Is(err, sql.ErrNoRows) {
return validation.NewFieldError("code", "invalid code")
}
if err != nil {
return err
}
num, err := res.RowsAffected()
if err != nil {
return err
}
if num != 1 {
return validation.NewFieldError("code", "invalid code")
}
// NOTE: maintain a record of consent/dissent
logCtx := log.WithFields(ctx, log.Fields{
"contactMethodID": cmID,
})
log.Logf(logCtx, "Contact method ENABLED/VERIFIED.")
return nil
}
func messageStateFromStatus(lastStatus gadb.EnumOutgoingMessagesStatus, hasNextRetry bool) (State, error) {
switch lastStatus {
case gadb.EnumOutgoingMessagesStatusQueuedRemotely, gadb.EnumOutgoingMessagesStatusSending:
return StateSending, nil
case gadb.EnumOutgoingMessagesStatusPending:
return StatePending, nil
case gadb.EnumOutgoingMessagesStatusRead:
return StateRead, nil
case gadb.EnumOutgoingMessagesStatusSent:
return StateSent, nil
case gadb.EnumOutgoingMessagesStatusDelivered:
return StateDelivered, nil
case gadb.EnumOutgoingMessagesStatusFailed, gadb.EnumOutgoingMessagesStatusBundled: // bundled message was not sent (replaced) and should never be re-sent
// temporary if retry
if hasNextRetry {
return StateFailedTemp, nil
} else {
return StateFailedPerm, nil
}
default:
return -1, fmt.Errorf("unknown last_status %s", lastStatus)
}
}
func (s *Store) FindManyMessageStatuses(ctx context.Context, strIDs []string) ([]SendResult, error) {
err := permission.LimitCheckAny(ctx, permission.User)
if err != nil {
return nil, err
}
if len(strIDs) == 0 {
return nil, nil
}
ids, err := validate.ParseManyUUID("IDs", strIDs, search.MaxResults)
if err != nil {
return nil, err
}
rows, err := gadb.New(s.db).NfyManyMessageStatus(ctx, ids)
if err != nil {
return nil, err
}
var result []SendResult
for _, r := range rows {
res, err := outgoingMessageToSendResult(r.OutgoingMessage, r.CmDest, r.ChDest)
if err != nil {
return nil, err
}
result = append(result, *res)
}
return result, nil
}
// LastMessageStatus will return the MessageStatus and creation time of the most recent message of the requested type
// for the provided contact method ID, if one was created from the provided from time.
func (s *Store) LastMessageStatus(ctx context.Context, typ gadb.EnumOutgoingMessagesType, cmIDStr string, from time.Time) (*SendResult, time.Time, error) {
err := permission.LimitCheckAny(ctx, permission.User)
if err != nil {
return nil, time.Time{}, err
}
cmID, err := validate.ParseUUID("Contact Method ID", cmIDStr)
if err != nil {
return nil, time.Time{}, err
}
row, err := gadb.New(s.db).NfyLastMessageStatus(ctx, gadb.NfyLastMessageStatusParams{
MessageType: typ,
ContactMethodID: uuid.NullUUID{UUID: cmID, Valid: true},
CreatedAt: from,
})
if errors.Is(err, sql.ErrNoRows) {
return nil, time.Time{}, nil
}
if err != nil {
return nil, time.Time{}, err
}
sendRes, err := outgoingMessageToSendResult(row.OutgoingMessage, row.CmDest, row.ChDest)
if err != nil {
return nil, time.Time{}, err
}
return sendRes, row.OutgoingMessage.CreatedAt, nil
}
|