challenge.go 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. package model
  2. import (
  3. "errors"
  4. "go-common/library/time"
  5. )
  6. const (
  7. // AuditRole 审核
  8. AuditRole = int8(0)
  9. // CustomerServiceRole 客服
  10. CustomerServiceRole = int8(1)
  11. // StateUntreated .
  12. StateUntreated = int8(0)
  13. // StatePassed .
  14. StatePassed = int8(1)
  15. // StateReject .
  16. StateReject = int8(2)
  17. // StateClose .
  18. StateClose = int8(3)
  19. // DispatchStateAuditMask 1111
  20. DispatchStateAuditMask = int32(0xf)
  21. // DispatchStateCustomerServiceMask 11110000
  22. DispatchStateCustomerServiceMask = int32(0xf0)
  23. // QueueState 队列中审核状态
  24. QueueState = 15
  25. // QueueBusinessState 队列中客服状态
  26. QueueBusinessState = 15
  27. // QueueStateBefore 默认审核状态
  28. QueueStateBefore = 0
  29. // QueueBusinessStateBefore 默认客服状态
  30. QueueBusinessStateBefore = 1
  31. )
  32. // Challenge struct
  33. type Challenge struct {
  34. ID int32 `gorm:"column:id" json:"id"`
  35. Tid int32 `gorm:"column:tid" json:"tid"`
  36. Gid int32 `gorm:"column:gid" json:"gid"`
  37. Oid int64 `gorm:"column:oid" json:"oid"`
  38. Mid int64 `gorm:"column:mid" json:"mid"`
  39. Eid int64 `gorm:"column:eid" json:"eid"`
  40. State int8 `gorm:"-" json:"state"`
  41. Business int8 `gorm:"column:business" json:"business"`
  42. BusinessState int8 `gorm:"-" json:"business_state"`
  43. Assignee int32 `gorm:"column:assignee_adminid" json:"assignee_adminid"`
  44. Adminid int32 `gorm:"column:adminid" json:"adminid"`
  45. MetaData string `gorm:"column:metadata" json:"metadata"`
  46. Desc string `gorm:"column:description" json:"description"`
  47. Attachments []*Attachment `gorm:"-" json:"attachments"`
  48. Events []*Event `gorm:"-" json:"events"`
  49. Ctime time.Time `gorm:"ctime" json:"ctime"`
  50. Mtime time.Time `gorm:"mtime" json:"mtime"`
  51. DispatchState uint32 `gorm:"dispatch_state"`
  52. BusinessInfo Business `gorm:"-" json:"business_info"`
  53. }
  54. // ChallengeParam appeal param
  55. type ChallengeParam struct {
  56. ID int32 `form:"id"`
  57. Tid int32 `form:"tid"`
  58. Oid int64 `form:"oid"`
  59. Mid int64 `form:"mid"`
  60. Desc string `form:"description"`
  61. AdminID int32 `form:"admin_id"`
  62. AssigneeID int32 `form:"assignee_id"`
  63. AttachmentsStr string `form:"attachments"`
  64. Attachments []string `form:"attachments[]"`
  65. Business int8 `form:"business"`
  66. BusinessState int8 `form:"business_state"`
  67. MetaData string `form:"metadata"`
  68. BusinessTypeid int32 `form:"business_typeid"`
  69. BusinessTitle string `form:"business_title"`
  70. BusinessContent string `form:"business_content"`
  71. BusinessMid int64 `form:"business_mid"`
  72. BusinessExtra string `form:"business_extra"`
  73. Role uint8 `form:"role"`
  74. }
  75. // TableName by Challenge
  76. func (*Challenge) TableName() string {
  77. return "workflow_chall"
  78. }
  79. // SetDispatchState set DispatchState
  80. func SetDispatchState(dispatchState int32, role, state int8) (result int32, err error) {
  81. switch role {
  82. case AuditRole:
  83. result = dispatchState&(^DispatchStateAuditMask) + int32(state)
  84. case CustomerServiceRole:
  85. result = dispatchState&(^DispatchStateCustomerServiceMask) + (int32(state) << 4)
  86. default:
  87. err = errors.New("changeDispatchState Unknown Role")
  88. }
  89. return result, err
  90. }
  91. // DispatchState get DispatchState
  92. func DispatchState(dispatchState int32, role int8) (result int32, err error) {
  93. switch role {
  94. case AuditRole:
  95. result = dispatchState & DispatchStateAuditMask
  96. case CustomerServiceRole:
  97. result = (dispatchState & DispatchStateCustomerServiceMask) >> 4
  98. default:
  99. err = errors.New("changeDispatchState Unknown Role")
  100. }
  101. return result, err
  102. }
  103. // SetState update state of a role
  104. // ex. oldState=0x3a4b5c6d, state=15, role=1 then result is 0x3a4b5cfd
  105. func (c *Challenge) SetState(state uint32, role uint8) {
  106. oldState := c.DispatchState
  107. mod := uint32(^(0xf << (4 * role)))
  108. oldState = oldState & mod // all bit keep unchanged and bits you want update change to 0
  109. c.DispatchState = oldState + state<<(4*role)
  110. }
  111. // GetState return state of a role from dispatchState field
  112. // ex. dispatchState=0x3a4b5c6d, role=1 then result is 0x6
  113. func (c *Challenge) GetState(role uint8) (result int8) {
  114. dispatchState := c.DispatchState
  115. mod := uint32(0xf << (4 * role))
  116. dispatchState &= mod
  117. result = int8(dispatchState >> (4 * role))
  118. return
  119. }
  120. // FromState set State and BusinessState field from DispatchState field
  121. func (c *Challenge) FromState() {
  122. c.State = c.GetState(uint8(0))
  123. if c.State == QueueState {
  124. c.State = QueueStateBefore
  125. }
  126. c.BusinessState = c.GetState(uint8(1))
  127. if c.BusinessState == QueueBusinessState {
  128. c.BusinessState = QueueBusinessStateBefore
  129. }
  130. }
  131. // CheckAdd check add challenge by params
  132. func (ap *ChallengeParam) CheckAdd() bool {
  133. return !(ap.Oid == 0 || ap.Mid == 0 || ap.Business == 0 || ap.Tid == 0 || ap.Desc == "")
  134. }
  135. // CheckList check get list challenge by params
  136. func (ap *ChallengeParam) CheckList() bool {
  137. return !(ap.Mid == 0 || ap.Business == 0)
  138. }
  139. // CheckInfo check get challenge info by params
  140. func (ap *ChallengeParam) CheckInfo() bool {
  141. return !(ap.ID == 0 || ap.Mid == 0 || ap.Business == 0)
  142. }
  143. // CheckBusiness check challenge business field by params
  144. func (ap *ChallengeParam) CheckBusiness() bool {
  145. return !(ap.BusinessTypeid == 0 && ap.BusinessMid == 0 && ap.BusinessTitle == "" && ap.BusinessContent == "" && ap.BusinessExtra == "")
  146. }
  147. // ChallengeParam3 .
  148. type ChallengeParam3 struct {
  149. Business int8 `form:"business" validate:"required"`
  150. Fid int64 `form:"fid"`
  151. Rid int64 `form:"rid"`
  152. Eid int64 `form:"eid"`
  153. Score int64 `form:"score"`
  154. Tid int32 `form:"tid"`
  155. Oid int64 `form:"oid" validate:"required"`
  156. Aid int64 `form:"aid"`
  157. Mid int64 `form:"mid"`
  158. Desc string `form:"description"`
  159. AdminID int32 `form:"admin_id"`
  160. AssigneeID int32 `form:"assignee_id"`
  161. Attachments []string `form:"attachments,split"`
  162. BusinessState int8 `form:"business_state"`
  163. MetaData string `form:"metadata"`
  164. BusinessTypeid int16 `form:"business_typeid"`
  165. BusinessTitle string `form:"business_title"`
  166. BusinessContent string `form:"business_content"`
  167. BusinessMid int64 `form:"business_mid"`
  168. BusinessExtra string `form:"business_extra"`
  169. Role uint8 `form:"role"`
  170. }
  171. // CheckBusiness .
  172. func (cp3 *ChallengeParam3) CheckBusiness() bool {
  173. return !(cp3.BusinessTypeid == 0 && cp3.BusinessMid == 0 && cp3.BusinessTitle == "" && cp3.BusinessContent == "" && cp3.BusinessExtra == "")
  174. }
  175. // Challenge3 .
  176. type Challenge3 struct {
  177. ID int64 `json:"id" gorm:"column:id"`
  178. Gid int64 `json:"gid" gorm:"column:gid"`
  179. Mid int64 `json:"mid" gorm:"column:mid"`
  180. Tid int64 `json:"tid" gorm:"column:tid"`
  181. Eid int64 `json:"eid" gorm:"column:eid"`
  182. Oid int64 `json:"oid" gorm:"column:oid"`
  183. Business int64 `json:"business" gorm:"column:business"`
  184. Desc string `json:"description" gorm:"column:description"`
  185. MetaData string `json:"metadata" gorm:"column:metadata"`
  186. DispatchState int64 `json:"dispatch_state" gorm:"column:dispatch_state"`
  187. Ctime time.Time `json:"ctime" gorm:"column:ctime"`
  188. Mtime time.Time `json:"mtime" gorm:"column:mtime"`
  189. }
  190. // TableName .
  191. func (*Challenge3) TableName() string {
  192. return "workflow_chall"
  193. }