data_warning.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package backend
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "strings"
  7. "gitee.com/xuyiping_admin/pkg/xerr"
  8. )
  9. func (s *StoreEntry) TestDataWaring(ctx context.Context) error {
  10. a, params, err := s.buildQuery(1)
  11. if err != nil {
  12. return xerr.WithStack(err)
  13. }
  14. var count int64
  15. if err = s.DB.Model(new(model.Cow)).Where(a, params...).Count(&count).Error; err != nil {
  16. return xerr.WithStack(err)
  17. }
  18. return nil
  19. }
  20. func (s *StoreEntry) buildQuery(ruleId int64) (string, []interface{}, error) {
  21. conditionsMap := make(map[int32][]string)
  22. params := make([]interface{}, 0)
  23. res := make([]*model.DataWarningItems, 0)
  24. if err := s.DB.Model(new(model.DataWarningItems)).
  25. Where("rule_id = ?", ruleId).
  26. Order("group_id").
  27. Find(&res).Error; err != nil {
  28. return "", nil, xerr.WithStack(err)
  29. }
  30. for _, v := range res {
  31. conditionsMap[v.GroupId] = append(conditionsMap[v.GroupId], fmt.Sprintf(" %s %s ? ", v.FieldName, v.Operator))
  32. params = append(params, v.Value)
  33. }
  34. if len(conditionsMap) == 0 {
  35. return "", nil, xerr.Custom("条件组不能为空")
  36. }
  37. var sqlConditions []string
  38. for _, groupConditions := range conditionsMap {
  39. if len(groupConditions) == 0 {
  40. continue // 跳过空组
  41. }
  42. // 同一个组内的条件用 OR 拼接
  43. groupQuery := strings.Join(groupConditions, " OR ")
  44. // 如果组内有多个条件,用括号包裹
  45. if len(groupConditions) > 1 {
  46. groupQuery = fmt.Sprintf("(%s)", groupQuery)
  47. }
  48. sqlConditions = append(sqlConditions, groupQuery)
  49. }
  50. return strings.Join(sqlConditions, " AND "), params, nil
  51. }