| | package alert |
| |
|
| | import ( |
| | "context" |
| | "database/sql" |
| | "fmt" |
| | "strconv" |
| | "text/template" |
| | "time" |
| |
|
| | "github.com/target/goalert/permission" |
| | "github.com/target/goalert/search" |
| | "github.com/target/goalert/util/sqlutil" |
| | "github.com/target/goalert/validation/validate" |
| |
|
| | "github.com/pkg/errors" |
| | ) |
| |
|
| | |
| | type SortMode int |
| |
|
| | const ( |
| | |
| | SortModeStatusID SortMode = iota |
| |
|
| | |
| | SortModeDateID |
| |
|
| | |
| | SortModeDateIDReverse |
| | ) |
| |
|
| | |
| | type SearchOptions struct { |
| | |
| | Search string `json:"s,omitempty"` |
| |
|
| | |
| | Status []Status `json:"t,omitempty"` |
| |
|
| | |
| | ServiceFilter IDFilter `json:"v,omitempty"` |
| |
|
| | After SearchCursor `json:"a,omitempty"` |
| |
|
| | |
| | Omit []int `json:"o,omitempty"` |
| |
|
| | |
| | |
| | NotifiedUserID string `json:"e,omitempty"` |
| |
|
| | |
| | |
| | Limit int `json:"-"` |
| |
|
| | |
| | Sort SortMode `json:"z,omitempty"` |
| |
|
| | |
| | NotBefore time.Time `json:"n,omitempty"` |
| |
|
| | |
| | Before time.Time `json:"b,omitempty"` |
| |
|
| | |
| | serviceNameIDs []string |
| |
|
| | |
| | ClosedBefore time.Time `json:"c,omitempty"` |
| |
|
| | |
| | NotClosedBefore time.Time `json:"nc,omitempty"` |
| | } |
| |
|
| | type IDFilter struct { |
| | Valid bool `json:"v,omitempty"` |
| | IDs []string `json:"i,omitempty"` |
| | } |
| |
|
| | type SearchCursor struct { |
| | ID int `json:"i,omitempty"` |
| | Status Status `json:"s,omitempty"` |
| | Created time.Time `json:"c,omitempty"` |
| | } |
| |
|
| | var serviceSearchTemplate = template.Must(template.New("alert-search-services").Funcs(search.Helpers()).Parse(` |
| | SELECT id |
| | FROM services |
| | WHERE {{textSearch "search" "name"}} |
| | `)) |
| |
|
| | var searchTemplate = template.Must(template.New("alert-search").Funcs(search.Helpers()).Parse(` |
| | SELECT |
| | a.id, |
| | a.summary, |
| | a.details, |
| | a.service_id, |
| | a.source, |
| | a.status, |
| | created_at, |
| | a.dedup_key |
| | FROM alerts a |
| | WHERE true |
| | {{ if .Omit }} |
| | AND not a.id = any(:omit) |
| | {{ end }} |
| | {{ if .Search }} |
| | AND ( |
| | a.id = :searchID OR {{textSearch "search" "a.summary"}} OR a.service_id = any(:svcNameMatchIDs) |
| | ) |
| | {{ end }} |
| | {{ if .Status }} |
| | AND a.status = any(:status::enum_alert_status[]) |
| | {{ end }} |
| | {{ if .ServiceFilter.Valid }} |
| | AND (a.service_id = any(:services) |
| | {{ if .NotifiedUserID }} |
| | OR a.id = any(select alert_id from alert_logs where event in ('notification_sent', 'no_notification_sent') and sub_user_id = :notifiedUserID) |
| | {{ end }} |
| | ) |
| | {{ end }} |
| | {{ if not .Before.IsZero }} |
| | AND a.created_at < :beforeTime |
| | {{ end }} |
| | {{ if not .NotBefore.IsZero }} |
| | AND a.created_at >= :notBeforeTime |
| | {{ end }} |
| | {{ if .After.ID }} |
| | AND ( |
| | {{ if eq .Sort 1 }} |
| | a.created_at < :afterCreated OR |
| | (a.created = :afterCreated AND a.id < :afterID) |
| | {{ else if eq .Sort 2}} |
| | a.created_at > :afterCreated OR |
| | (a.created_at = :afterCreated AND a.id > :afterID) |
| | {{ else }} |
| | a.status > :afterStatus::enum_alert_status OR |
| | (a.status = :afterStatus::enum_alert_status AND a.id < :afterID) |
| | {{ end }} |
| | ) |
| | {{ end }} |
| | {{ if not .ClosedBefore.IsZero }} |
| | AND EXISTS (select 1 from alert_metrics where alert_id = a.id AND closed_at < :closedBeforeTime) |
| | {{ end }} |
| | {{ if not .NotClosedBefore.IsZero }} |
| | AND EXISTS (select 1 from alert_metrics where alert_id = a.id AND closed_at > :notClosedBeforeTime) |
| | {{ end }} |
| | ORDER BY {{.SortStr}} |
| | LIMIT {{.Limit}} |
| | `)) |
| |
|
| | type renderData SearchOptions |
| |
|
| | func (opts renderData) SortStr() string { |
| | switch opts.Sort { |
| | case SortModeDateID: |
| | return "created_at DESC, id DESC" |
| | case SortModeDateIDReverse: |
| | return "created_at, id" |
| | } |
| |
|
| | |
| | return "status, id DESC" |
| | } |
| |
|
| | func (opts renderData) Normalize() (*renderData, error) { |
| | if opts.Limit == 0 { |
| | opts.Limit = search.DefaultMaxResults |
| | } |
| |
|
| | err := validate.Many( |
| | validate.Search("Search", opts.Search), |
| | validate.Range("Limit", opts.Limit, 0, 1001), |
| | validate.Range("Status", len(opts.Status), 0, 3), |
| | validate.ManyUUID("Services", opts.ServiceFilter.IDs, 50), |
| | validate.Range("Omit", len(opts.Omit), 0, 50), |
| | validate.OneOf("Sort", opts.Sort, SortModeStatusID, SortModeDateID, SortModeDateIDReverse), |
| | ) |
| | if opts.After.Status != "" { |
| | err = validate.Many(err, validate.OneOf("After.Status", opts.After.Status, StatusTriggered, StatusActive, StatusClosed)) |
| | } |
| | if err != nil { |
| | return nil, err |
| | } |
| |
|
| | for i, stat := range opts.Status { |
| | err = validate.OneOf("Status["+strconv.Itoa(i)+"]", stat, StatusTriggered, StatusActive, StatusClosed) |
| | if err != nil { |
| | return nil, err |
| | } |
| | } |
| |
|
| | return &opts, err |
| | } |
| |
|
| | func (opts renderData) QueryArgs() []sql.NamedArg { |
| | var searchID sql.NullInt64 |
| | if i, err := strconv.ParseInt(opts.Search, 10, 64); err == nil { |
| | searchID.Valid = true |
| | searchID.Int64 = i |
| | } |
| |
|
| | stat := make(sqlutil.StringArray, len(opts.Status)) |
| | for i := range opts.Status { |
| | stat[i] = string(opts.Status[i]) |
| | } |
| |
|
| | return []sql.NamedArg{ |
| | sql.Named("search", opts.Search), |
| | sql.Named("searchID", searchID), |
| | sql.Named("status", stat), |
| | sql.Named("services", sqlutil.UUIDArray(opts.ServiceFilter.IDs)), |
| | sql.Named("svcNameMatchIDs", sqlutil.UUIDArray(opts.serviceNameIDs)), |
| | sql.Named("afterID", opts.After.ID), |
| | sql.Named("afterStatus", opts.After.Status), |
| | sql.Named("afterCreated", opts.After.Created), |
| | sql.Named("omit", sqlutil.IntArray(opts.Omit)), |
| | sql.Named("notifiedUserID", opts.NotifiedUserID), |
| | sql.Named("beforeTime", opts.Before), |
| | sql.Named("notBeforeTime", opts.NotBefore), |
| | sql.Named("closedBeforeTime", opts.ClosedBefore), |
| | sql.Named("notClosedBeforeTime", opts.NotClosedBefore), |
| | } |
| | } |
| |
|
| | func (s *Store) serviceNameSearch(ctx context.Context, data *renderData) error { |
| | if data.Search == "" { |
| | data.serviceNameIDs = nil |
| | return nil |
| | } |
| |
|
| | query, args, err := search.RenderQuery(ctx, serviceSearchTemplate, data) |
| | if err != nil { |
| | return fmt.Errorf("render service-search query: %w", err) |
| | } |
| |
|
| | rows, err := s.db.QueryContext(ctx, query, args...) |
| | if errors.Is(err, sql.ErrNoRows) { |
| | data.serviceNameIDs = nil |
| | return nil |
| | } |
| | if err != nil { |
| | return fmt.Errorf("search for services with '%s': %w", data.Search, err) |
| | } |
| | defer rows.Close() |
| |
|
| | var ids []string |
| | for rows.Next() { |
| | var id string |
| | if err := rows.Scan(&id); err != nil { |
| | return fmt.Errorf("scan service-search query: %w", err) |
| | } |
| | ids = append(ids, id) |
| | } |
| |
|
| | data.serviceNameIDs = ids |
| |
|
| | return nil |
| | } |
| |
|
| | func (s *Store) Search(ctx context.Context, opts *SearchOptions) ([]Alert, error) { |
| | err := permission.LimitCheckAny(ctx, permission.System, permission.User) |
| | if err != nil { |
| | return nil, err |
| | } |
| | if opts == nil { |
| | opts = new(SearchOptions) |
| | } |
| |
|
| | data, err := (*renderData)(opts).Normalize() |
| | if err != nil { |
| | return nil, err |
| | } |
| |
|
| | err = s.serviceNameSearch(ctx, data) |
| | if err != nil { |
| | return nil, err |
| | } |
| |
|
| | query, args, err := search.RenderQuery(ctx, searchTemplate, data) |
| | if err != nil { |
| | return nil, errors.Wrap(err, "render query") |
| | } |
| |
|
| | rows, err := s.db.QueryContext(ctx, query, args...) |
| | if err != nil { |
| | return nil, errors.Wrap(err, "query") |
| | } |
| | defer rows.Close() |
| |
|
| | alerts := make([]Alert, 0, opts.Limit) |
| |
|
| | for rows.Next() { |
| | var a Alert |
| | err = errors.Wrap(a.scanFrom(rows.Scan), "scan") |
| | if err != nil { |
| | return nil, err |
| | } |
| | alerts = append(alerts, a) |
| | } |
| |
|
| | return alerts, nil |
| | } |
| |
|