rules.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package archive
  2. import (
  3. "context"
  4. a "go-common/app/admin/main/videoup/model/archive"
  5. )
  6. // EditRules fn
  7. func (s *Service) EditRules(c context.Context, white int, state int8, lotteryBind bool) (rules map[string]bool) {
  8. var (
  9. exist bool
  10. rulesByArcState = make(map[int8]map[string]bool)
  11. )
  12. groupAllCan := map[string]bool{
  13. "tid": true,
  14. "title": true,
  15. "tag": true,
  16. "desc": true,
  17. "dynamic": true,
  18. "del_video": true,
  19. "elec": true,
  20. "add_video": true,
  21. "dtime": true,
  22. "source": true,
  23. "no_reprint": true,
  24. "cover": true,
  25. "copyright": true,
  26. "mission_tag": true,
  27. "bind_lottery": false,
  28. }
  29. groupAllForbid := map[string]bool{
  30. "tid": false,
  31. "title": false,
  32. "tag": false,
  33. "desc": false,
  34. "dynamic": false,
  35. "del_video": false,
  36. "elec": false,
  37. "add_video": false,
  38. "dtime": false,
  39. "source": false,
  40. "no_reprint": false,
  41. "cover": false,
  42. "copyright": false,
  43. "mission_tag": false,
  44. "bind_lottery": false,
  45. }
  46. groupForbidTidAndCopyright := map[string]bool{
  47. "tid": false,
  48. "title": true,
  49. "tag": true,
  50. "desc": true,
  51. "dynamic": true,
  52. "del_video": true,
  53. "elec": true,
  54. "add_video": true,
  55. "dtime": true,
  56. "source": true,
  57. "no_reprint": true,
  58. "cover": true,
  59. "copyright": false,
  60. "mission_tag": false,
  61. "bind_lottery": false,
  62. }
  63. groupForbidTidAndCopyrightDtime := map[string]bool{
  64. "tid": false,
  65. "title": true,
  66. "tag": true,
  67. "desc": true,
  68. "dynamic": true,
  69. "del_video": true,
  70. "elec": true,
  71. "add_video": true,
  72. "dtime": false,
  73. "source": true,
  74. "no_reprint": true,
  75. "cover": true,
  76. "copyright": false,
  77. "mission_tag": false,
  78. "bind_lottery": false,
  79. }
  80. rulesByArcState[a.StateOrange] = groupForbidTidAndCopyrightDtime
  81. rulesByArcState[a.StateOpen] = groupForbidTidAndCopyrightDtime
  82. rulesByArcState[a.StateForbidWait] = groupForbidTidAndCopyright
  83. rulesByArcState[a.StateForbidAdminDelay] = groupForbidTidAndCopyright
  84. rulesByArcState[a.StateForbidSubmit] = groupForbidTidAndCopyright
  85. rulesByArcState[a.StateForbidUserDelay] = groupForbidTidAndCopyrightDtime
  86. rulesByArcState[a.StateForbidXcodeFail] = groupForbidTidAndCopyright
  87. rulesByArcState[a.StateForbidPolice] = groupAllForbid
  88. rulesByArcState[a.StateForbidLock] = groupAllForbid
  89. rulesByArcState[a.StateForbidFackLock] = groupAllForbid
  90. rulesByArcState[a.StateForbidUpDelete] = groupAllForbid
  91. rulesByArcState[a.StateForbitUpLoad] = groupForbidTidAndCopyright
  92. rulesByArcState[a.StateForbidOnlyComment] = groupForbidTidAndCopyright
  93. rulesByArcState[a.StateForbidDispatch] = groupForbidTidAndCopyright
  94. rulesByArcState[a.StateForbidFixing] = groupForbidTidAndCopyright
  95. rulesByArcState[a.StateForbidStorageFail] = groupForbidTidAndCopyright
  96. rulesByArcState[a.StateForbidWaitXcode] = groupForbidTidAndCopyright
  97. rulesByArcState[a.StateForbidTmpRecicle] = groupAllCan
  98. rulesByArcState[a.StateForbidRecycle] = groupAllCan
  99. rulesByArcState[a.StateForbidFixed] = groupForbidTidAndCopyrightDtime
  100. rulesByArcState[a.StateForbidLater] = groupForbidTidAndCopyrightDtime
  101. rulesByArcState[a.StateForbidPatched] = groupForbidTidAndCopyrightDtime
  102. if rules, exist = rulesByArcState[state]; exist {
  103. if white == 0 {
  104. rules["add_video"] = false
  105. }
  106. rules["bind_lottery"] = lotteryBind
  107. }
  108. return
  109. }