event_seme_time_flow.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package model
  2. import (
  3. "encoding/json"
  4. "regexp"
  5. "strconv"
  6. "strings"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. )
  9. type EventSemeTimeFlow struct {
  10. Id int64 `json:"id"`
  11. SemeTimeId int64 `json:"seme_time_id"`
  12. CollateFlowData string `json:"collate_flow_data"`
  13. OriginalFlowData string `json:"original_flow_data"`
  14. CreatedAt int64 `json:"created_at"`
  15. UpdatedAt int64 `json:"updated_at"`
  16. }
  17. func (e *EventSemeTimeFlow) TableName() string {
  18. return "event_seme_time_flow"
  19. }
  20. func NewEventSemeTimeFlow(semeTimeId int64, req *pasturePb.SemeTimeRequest) *EventSemeTimeFlow {
  21. originalFlowData, _ := json.Marshal(req.Graph)
  22. collateFlowData := make([]*pasturePb.CollateFlowData, len(req.Graph.Nodes))
  23. for i, v := range req.Graph.Nodes {
  24. conditions := &pasturePb.FlowConditions{
  25. Day: 0,
  26. Hours: 0,
  27. }
  28. if i != len(req.Graph.Nodes)-1 && i < len(req.Graph.Edges) {
  29. edgesTextValue := req.Graph.Edges[i].Text.Value
  30. dayHours := strings.Split(edgesTextValue, "/")
  31. dayStr := regexp.MustCompile(`\d+`).FindString(dayHours[0])
  32. hoursStr := regexp.MustCompile(`\d+`).FindString(dayHours[1])
  33. day, _ := strconv.Atoi(dayStr)
  34. hours, _ := strconv.Atoi(hoursStr)
  35. conditions.Day = int32(day)
  36. conditions.Hours = int32(hours)
  37. }
  38. newCollateFlowData := &pasturePb.CollateFlowData{
  39. Id: v.Id,
  40. Sort: int32(i + 1),
  41. NodeName: v.Text.Value,
  42. Conditions: conditions,
  43. }
  44. switch i {
  45. case 0:
  46. newCollateFlowData.NodeType = pasturePb.FlowerNodeType_Start
  47. case len(req.Graph.Nodes) - 1:
  48. newCollateFlowData.NodeType = pasturePb.FlowerNodeType_End
  49. default:
  50. newCollateFlowData.NodeType = pasturePb.FlowerNodeType_Middle
  51. }
  52. collateFlowData[i] = newCollateFlowData
  53. }
  54. collateFlowDataByte, _ := json.Marshal(collateFlowData)
  55. return &EventSemeTimeFlow{
  56. SemeTimeId: semeTimeId,
  57. CollateFlowData: string(collateFlowDataByte),
  58. OriginalFlowData: string(originalFlowData),
  59. }
  60. }