myinfo.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package archive
  2. import (
  3. "context"
  4. "go-common/library/log"
  5. )
  6. // AllowCommercial fn
  7. func (s *Service) AllowCommercial(c context.Context, mid int64) (ok int) {
  8. isOrder := s.AllowOrderUps(mid)
  9. if isOrder {
  10. log.Info("s.AllowOrderUps mid(%d)", mid)
  11. ok = 1
  12. }
  13. return
  14. }
  15. // AppModuleShowMap fn
  16. // 编辑的时候暂时不允许重新开启动态抽奖或者修改动态抽奖
  17. func (s *Service) AppModuleShowMap(mid int64, lotteryCheck bool) (ret map[string]bool) {
  18. ret = map[string]bool{
  19. "cooperate": true,
  20. "vote": true,
  21. "subtitle": true,
  22. "filter": true,
  23. "audio_record": true,
  24. "camera": true,
  25. "sticker": true,
  26. "videoup_sticker": true,
  27. "theme": true,
  28. "lottery": false,
  29. }
  30. // define by dymc check
  31. if lotteryCheck {
  32. ret["lottery"] = true
  33. }
  34. // isWhite := false
  35. // for _, m := range s.c.Whitelist.ArcMids {
  36. // if m == mid {
  37. // isWhite = true
  38. // break
  39. // }
  40. // }
  41. // define for app module
  42. // if isWhite {
  43. // ret["theme"] = true
  44. // return
  45. // }
  46. // mod := mid % 100
  47. // if mod <= 20 {
  48. // ret["theme"] = true
  49. // }
  50. return
  51. }