challenge.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package http
  2. import (
  3. "strconv"
  4. "strings"
  5. "go-common/app/service/main/workflow/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/http/blademaster/binding"
  10. )
  11. // AddChallenge add challenge
  12. func addChallenge(c *bm.Context) {
  13. ap := new(model.ChallengeParam)
  14. if err := c.BindWith(ap, binding.FormPost); err != nil {
  15. return
  16. }
  17. if ap.AttachmentsStr != "" {
  18. ap.Attachments = strings.Split(ap.AttachmentsStr, ",")
  19. }
  20. if wkfSvc.TagMap(ap.Business, ap.Tid) == nil {
  21. c.JSON(nil, ecode.RequestErr)
  22. return
  23. }
  24. for _, ctrl := range wkfSvc.TagMap(ap.Business, ap.Tid).Controls {
  25. if ctrlValue := c.Request.PostForm.Get(ctrl.Name); ctrlValue != "" {
  26. ap.MetaData += ctrl.Name + ": " + ctrlValue + "\n"
  27. } else if ctrl.Required {
  28. log.Error("http addChallenge() control parms error ctrl.Name(%s) is required! ap(%+v)", ctrl.Name, ap)
  29. c.JSON(nil, ecode.RequestErr)
  30. return
  31. } else {
  32. log.Info("http addChallenge() control parms missing ctrl.Name(%s) but not required ap(%+v)", ctrl.Name, ap)
  33. continue
  34. }
  35. }
  36. if !ap.CheckAdd() {
  37. log.Error("s.AddChallenge() params(%+v) error", ap)
  38. c.JSON(nil, ecode.RequestErr)
  39. return
  40. }
  41. challengeNo, err := wkfSvc.AddChallenge(c, ap)
  42. if err != nil {
  43. c.JSON(nil, err)
  44. return
  45. }
  46. data := map[string]int64{
  47. "challengeNo": challengeNo,
  48. }
  49. c.JSON(data, nil)
  50. }
  51. // ListChallenge get challenge list
  52. func listChallenge(c *bm.Context) {
  53. ap := new(model.ChallengeParam)
  54. if err := c.Bind(ap); err != nil {
  55. return
  56. }
  57. if !ap.CheckList() {
  58. log.Error("s.Challenges() params(%+v) error", ap)
  59. c.JSON(nil, ecode.RequestErr)
  60. return
  61. }
  62. c.JSON(wkfSvc.Challenges(c, ap))
  63. }
  64. // ReplyAddChallenge add reply to challenge
  65. func replyAddChallenge(c *bm.Context) {
  66. rp := new(struct {
  67. Cid int32 `form:"cid" validate:"required"`
  68. Event int8 `form:"event" validate:"required"`
  69. Content string `form:"content" validate:"required"`
  70. Attachments string `form:"attachments"`
  71. })
  72. if err := c.BindWith(rp, binding.FormPost); err != nil {
  73. return
  74. }
  75. _, err := wkfSvc.AddEvent(c, rp.Cid, rp.Content, rp.Attachments, rp.Event)
  76. c.JSON(nil, err)
  77. }
  78. // ChallengeInfo get challenge info
  79. func challengeInfo(c *bm.Context) {
  80. ap := new(model.ChallengeParam)
  81. if err := c.Bind(ap); err != nil {
  82. return
  83. }
  84. if !ap.CheckInfo() {
  85. log.Error("s.Challenge() params(%+v) error", ap)
  86. c.JSON(nil, ecode.RequestErr)
  87. return
  88. }
  89. c.JSON(wkfSvc.Challenge(c, ap))
  90. }
  91. // upChallengeState update challenge business state
  92. func upChallengeState(c *bm.Context) {
  93. var role int8
  94. ap := new(struct {
  95. ID int32 `form:"id" validate:"required"`
  96. Mid int64 `form:"mid" validate:"required"`
  97. Business int8 `form:"business" validate:"required"`
  98. BusinessState int8 `form:"business_state"`
  99. })
  100. roleStr := c.Request.PostForm.Get("role")
  101. if roleStr == "" {
  102. role = model.CustomerServiceRole
  103. } else {
  104. result, err := strconv.ParseUint(roleStr, 10, 8)
  105. if err != nil {
  106. c.JSON(nil, ecode.RequestErr)
  107. c.Abort()
  108. return
  109. }
  110. role = int8(result)
  111. }
  112. if err := c.BindWith(ap, binding.FormPost); err != nil {
  113. return
  114. }
  115. c.JSON(nil, wkfSvc.UpChallengeState(c, ap.ID, ap.Mid, ap.Business, role, ap.BusinessState))
  116. }
  117. // CloseChallenge make challenge business state closed
  118. func closeChallenge(c *bm.Context) {
  119. ap := new(struct {
  120. Cid int32 `form:"cid" validate:"required"`
  121. Business int8 `form:"business" validate:"required"`
  122. Role int8 `form:"role" validate:"required"`
  123. BusinessState int8 `form:"business_state"`
  124. Note string `form:"note" validate:"required"`
  125. })
  126. if err := c.Bind(ap); err != nil {
  127. c.JSON(nil, ecode.RequestErr)
  128. return
  129. }
  130. c.JSON(nil, wkfSvc.CloseChallenge(c, ap.Cid, ap.Business, ap.Role, ap.BusinessState, ap.Note))
  131. }
  132. // untreatedChallenge get untreated challenge
  133. func untreatedChallenge(c *bm.Context) {
  134. ap := new(struct {
  135. Oid int64 `form:"oid" validate:"required"`
  136. Role int8 `form:"role" validate:"required"`
  137. })
  138. if err := c.Bind(ap); err != nil {
  139. c.JSON(nil, ecode.RequestErr)
  140. return
  141. }
  142. c.JSON(wkfSvc.UntreatedChallenge(c, ap.Oid, ap.Role))
  143. }
  144. // addChallenge3 add challange v3
  145. func addChallenge3(c *bm.Context) {
  146. cp3 := &model.ChallengeParam3{}
  147. if err := c.Bind(cp3); err != nil {
  148. return
  149. }
  150. challengeNo, err := wkfSvc.AddChallenge3(c, cp3)
  151. if err != nil {
  152. c.JSON(nil, err)
  153. return
  154. }
  155. data := map[string]int64{
  156. "challengeNo": challengeNo,
  157. }
  158. c.JSON(data, nil)
  159. }
  160. // listChallenge3 .
  161. func listChallenge3(c *bm.Context) {
  162. cp3 := &model.ChallengeParam3{}
  163. if err := c.Bind(cp3); err != nil {
  164. return
  165. }
  166. c.JSON(wkfSvc.Challenges3(c, cp3))
  167. }
  168. // groupState3 .
  169. func groupState3(c *bm.Context) {
  170. cp3 := &model.ChallengeParam3{}
  171. if err := c.Bind(cp3); err != nil {
  172. return
  173. }
  174. state, err := wkfSvc.GroupState3(c, cp3)
  175. if err != nil {
  176. c.JSON(nil, err)
  177. return
  178. }
  179. c.JSON(map[string]interface{}{
  180. "state": state,
  181. }, err)
  182. }