package npcyclemanager import ( "context" "github.com/pkg/errors" "github.com/target/goalert/alert/alertlog" "github.com/target/goalert/permission" "github.com/target/goalert/util/log" "github.com/target/goalert/util/sqlutil" ) // UpdateAll will update and cleanup all notification cycles. func (db *DB) UpdateAll(ctx context.Context) error { err := db.update(ctx, true, nil) return err } // UpdateOneAlert will update and cleanup all notification cycles for the given alert. func (db *DB) UpdateOneAlert(ctx context.Context, alertID int) error { ctx = log.WithField(ctx, "AlertID", alertID) return db.update(ctx, false, &alertID) } func (db *DB) update(ctx context.Context, all bool, alertID *int) error { err := permission.LimitCheckAny(ctx, permission.System) if err != nil { return err } log.Debugf(ctx, "Updating notification cycles.") tx, err := db.lock.BeginTx(ctx, nil) if err != nil { return errors.Wrap(err, "begin tx") } defer sqlutil.Rollback(ctx, "np cycle manager", tx) rows, err := tx.StmtContext(ctx, db.queueMessages).QueryContext(ctx) if err != nil { return errors.Wrap(err, "queue outgoing messages") } defer rows.Close() type record struct { alertID int userID string } var data []record for rows.Next() { var rec record err = rows.Scan(&rec.userID, &rec.alertID) if err != nil { return errors.Wrap(err, "scan userID and alertID") } data = append(data, rec) } for _, rec := range data { logCtx := permission.UserSourceContext(ctx, rec.userID, permission.RoleUser, &permission.SourceInfo{ Type: permission.SourceTypeContactMethod, // no ID available, since notification couldn't be sent }) err = db.log.LogTx(logCtx, tx, rec.alertID, alertlog.TypeNoNotificationSent, nil) if err != nil { return errors.Wrap(err, "log no notifications sent") } } return tx.Commit() }