manager.go 947 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package show
  2. import (
  3. "context"
  4. "go-common/app/interface/main/app-card/model/card/operate"
  5. )
  6. func (s *Service) cardSetChange(c context.Context, ids ...int64) (cardm map[int64]*operate.Card, aids []int64, upid int64) {
  7. if len(ids) == 0 {
  8. return
  9. }
  10. cardm = make(map[int64]*operate.Card, len(ids))
  11. for _, id := range ids {
  12. if cs, ok := s.cardSetCache[id]; ok {
  13. card := &operate.Card{}
  14. card.FromCardSet(cs)
  15. cardm[id] = card
  16. upid = card.ID
  17. for _, item := range card.Items {
  18. switch cs.Type {
  19. case "up_rcmd_new":
  20. aids = append(aids, item.ID)
  21. }
  22. }
  23. }
  24. }
  25. return
  26. }
  27. func (s *Service) eventTopicChange(c context.Context, ids ...int64) (cardm map[int64]*operate.Card) {
  28. if len(ids) == 0 {
  29. return
  30. }
  31. cardm = make(map[int64]*operate.Card, len(ids))
  32. for _, id := range ids {
  33. if st, ok := s.eventTopicCache[id]; ok {
  34. card := &operate.Card{}
  35. card.FromEventTopic(st)
  36. cardm[id] = card
  37. }
  38. }
  39. return
  40. }