allow.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package service
  2. import (
  3. "context"
  4. "strings"
  5. "time"
  6. "unicode/utf8"
  7. "go-common/app/interface/main/videoup/model/archive"
  8. "go-common/library/log"
  9. xtime "go-common/library/time"
  10. )
  11. // forbidTopTypesForAll fn 175=>ASMR
  12. func (s *Service) forbidTopTypesForAll(tid int16) bool {
  13. return tid == 175
  14. }
  15. func (s *Service) allowOrderUps(mid int64) (ok bool) {
  16. if mid <= 0 {
  17. ok = false
  18. return
  19. }
  20. _, ok = s.orderUps[mid]
  21. return
  22. }
  23. func (s *Service) allowType(typeid int16) (ok bool) {
  24. _, ok = s.typeCache[typeid]
  25. if s.forbidTopTypesForAll(typeid) {
  26. ok = false
  27. }
  28. return
  29. }
  30. func (s *Service) allowCopyright(cp int8) (ok bool) {
  31. ok = archive.InCopyrights(cp)
  32. return
  33. }
  34. func (s *Service) allowSource(cp int8, source string) (ok bool) {
  35. ok = cp == archive.CopyrightOriginal || (cp == archive.CopyrightCopy && len(strings.TrimSpace(source)) > 0)
  36. return
  37. }
  38. func (s *Service) allowTag(tag string) (ok bool) {
  39. if len(tag) == 0 {
  40. return
  41. }
  42. for _, reg := range _emptyUnicodeReg {
  43. if reg.MatchString(tag) {
  44. return
  45. }
  46. }
  47. tags := strings.Split(tag, ",")
  48. if len(tags) > 12 {
  49. return
  50. }
  51. for _, t := range tags {
  52. if utf8.RuneCountInString(t) > 30 {
  53. return
  54. }
  55. }
  56. ok = true
  57. return
  58. }
  59. func (s *Service) allowDelayTime(dtime xtime.Time) (ok bool) {
  60. if dtime == 0 {
  61. ok = true
  62. return
  63. }
  64. const (
  65. min = int64(4 * time.Hour / time.Second)
  66. max = int64(15 * 24 * time.Hour / time.Second)
  67. )
  68. diff := int64(dtime) - time.Now().Unix()
  69. ok = min < diff && diff < max
  70. return
  71. }
  72. func (s *Service) allowHalfMin(c context.Context, mid int64) (ok bool) {
  73. // 活动等其他业务方运营需要,接触半分钟的限速
  74. if _, white := s.exemptHalfMinUps[mid]; white {
  75. return true
  76. }
  77. log.Info("halfMin start | mid(%d).", mid)
  78. exist, _, _ := s.acc.HalfMin(c, mid)
  79. log.Info("halfMin from cache | mid(%d) exist(%v).", mid, exist)
  80. //先判断缓存,ok取反,如果存在则不允许,继续等冷却时间;如果缓存不存在,则默认继续添加冷却时间窗口
  81. if ok = !exist; ok {
  82. log.Info("halfMin not exist | mid(%d)", mid)
  83. s.acc.AddHalfMin(c, mid)
  84. log.Info("halfMin add cache | mid(%d).", mid)
  85. }
  86. log.Info("halfMin end | mid(%d).", mid)
  87. return
  88. }
  89. func (s *Service) allowRepeat(c context.Context, mid int64, title string) (ok bool) {
  90. log.Info("allowRepeat check start | mid(%d) title(%s).", mid, title)
  91. exist, _ := s.acc.SubmitCache(c, mid, title)
  92. log.Info("allowRepeat from cache | mid(%d) title(%s) exist(%d).", mid, title, exist)
  93. if ok = exist == 0; ok {
  94. log.Info("allowRepeat not exist | mid(%d) title(%s)", mid, title)
  95. s.acc.AddSubmitCache(c, mid, title)
  96. log.Info("allowRepeat add cache | mid(%d) title(%s).", mid, title)
  97. }
  98. log.Info("allowRepeat check end | mid(%d) title(%s).", mid, title)
  99. return
  100. }