workflow.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package appeal
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/creative/model/appeal"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. "github.com/pkg/errors"
  10. )
  11. // appeal url
  12. const (
  13. _list = "/x/internal/workflow/appeal/list"
  14. _detail = "/x/internal/workflow/appeal/info"
  15. _addappeal = "/x/internal/workflow/appeal/add"
  16. _addreply = "/x/internal/workflow/appeal/reply/add"
  17. _appealstar = "/x/internal/workflow/appeal/extra/up"
  18. _appealstate = "/x/internal/workflow/appeal/state"
  19. _appealStarInfo = "/x/internal/workflow/appeal/extra/info"
  20. )
  21. // AppealList appeal list .
  22. func (d *Dao) AppealList(c context.Context, mid int64, business int, ip string) (as []*appeal.AppealMeta, err error) {
  23. params := url.Values{}
  24. params.Set("mid", strconv.FormatInt(mid, 10))
  25. params.Set("business", strconv.Itoa(business))
  26. var res struct {
  27. Code int `json:"code"`
  28. Data []*appeal.AppealMeta `json:"data"`
  29. }
  30. if err = d.client.Get(c, d.list, ip, params, &res); err != nil {
  31. err = errors.Wrap(err, "appeal list api")
  32. return
  33. }
  34. if res.Code != 0 {
  35. log.Error("appeal list url(%s) mid(%d) res(%v)", d.list+"?"+params.Encode(), mid, res)
  36. err = ecode.Int(res.Code)
  37. return
  38. }
  39. as = res.Data
  40. return
  41. }
  42. // AppealDetail appeal detail.
  43. func (d *Dao) AppealDetail(c context.Context, mid, id int64, business int, ip string) (a *appeal.AppealMeta, err error) {
  44. params := url.Values{}
  45. params.Set("mid", strconv.FormatInt(mid, 10))
  46. params.Set("id", strconv.FormatInt(id, 10))
  47. params.Set("business", strconv.Itoa(business))
  48. var res struct {
  49. Code int `json:"code"`
  50. Data *appeal.AppealMeta `json:"data"`
  51. }
  52. if err = d.client.Get(c, d.detail, ip, params, &res); err != nil {
  53. err = errors.Wrap(err, "appeal api")
  54. return
  55. }
  56. if res.Code != 0 {
  57. log.Error("appeal url(%s) mid(%d) res(%v)", d.detail+"?"+params.Encode(), mid, res)
  58. err = ecode.Int(res.Code)
  59. return
  60. }
  61. a = res.Data
  62. return
  63. }
  64. // AddAppeal add appeal.
  65. func (d *Dao) AddAppeal(c context.Context, tid, aid, mid, business int64, qq, phone, email, desc, attachments, ip string, ap *appeal.BusinessAppeal) (apID int64, err error) {
  66. params := url.Values{}
  67. params.Set("tid", strconv.FormatInt(tid, 10))
  68. params.Set("oid", strconv.FormatInt(aid, 10))
  69. params.Set("mid", strconv.FormatInt(mid, 10))
  70. params.Set("business", strconv.FormatInt(business, 10))
  71. params.Set("qq", qq)
  72. params.Set("phone", phone)
  73. params.Set("email", email)
  74. params.Set("description", desc)
  75. params.Set("attachments", attachments)
  76. params.Set("business_typeid", strconv.FormatInt(ap.BusinessTypeID, 10))
  77. params.Set("business_mid", strconv.FormatInt(ap.BusinessMID, 10))
  78. params.Set("business_title", ap.BusinessTitle)
  79. params.Set("business_content", ap.BusinessContent)
  80. params.Set("business_state", strconv.FormatInt(appeal.StateCreate, 10))
  81. var res struct {
  82. Code int `json:"code"`
  83. Data struct {
  84. ChallengeNo int64 `json:"challengeNo"`
  85. } `json:"data"`
  86. }
  87. log.Info("AddAppeal params(%v)", params)
  88. if err = d.client.Post(c, d.addappeal, ip, params, &res); err != nil {
  89. err = errors.Wrap(err, "appeal api")
  90. return
  91. }
  92. if res.Code != 0 {
  93. log.Error("add appeal url(%s) mid(%d) res(%v)", d.addappeal+"?"+params.Encode(), mid, res)
  94. err = ecode.Int(res.Code)
  95. }
  96. apID = res.Data.ChallengeNo
  97. return
  98. }
  99. // AddReply add appeal reply .
  100. func (d *Dao) AddReply(c context.Context, cid, event int64, content, attachments, ip string) (err error) {
  101. params := url.Values{}
  102. params.Set("cid", strconv.FormatInt(cid, 10))
  103. params.Set("content", content)
  104. params.Set("attachments", attachments)
  105. params.Set("event", strconv.FormatInt(event, 10))
  106. var res struct {
  107. Code int `json:"code"`
  108. }
  109. if err = d.client.Post(c, d.addreply, ip, params, &res); err != nil {
  110. err = errors.Wrap(err, "appeal reply api")
  111. return
  112. }
  113. if res.Code != 0 {
  114. log.Error("add appeal url(%s) res(%v)", d.addreply+"?"+params.Encode(), res)
  115. err = ecode.Int(res.Code)
  116. }
  117. return
  118. }
  119. // AppealExtra modify appeal extra.
  120. func (d *Dao) AppealExtra(c context.Context, mid, cid, business, val int64, key, ip string) (err error) {
  121. params := url.Values{}
  122. params.Set("mid", strconv.FormatInt(mid, 10))
  123. params.Set("cid", strconv.FormatInt(cid, 10))
  124. params.Set("business", strconv.FormatInt(business, 10))
  125. params.Set("key", key)
  126. params.Set("val", strconv.FormatInt(val, 10))
  127. var res struct {
  128. Code int `json:"code"`
  129. }
  130. log.Info("AppealExtra params(%v)", params)
  131. if err = d.client.Post(c, d.appealstar, ip, params, &res); err != nil {
  132. err = errors.Wrap(err, "appeal star api")
  133. return
  134. }
  135. if res.Code != 0 {
  136. log.Error("appeal start url(%s) res(%v)", d.appealstar+"?"+params.Encode(), res)
  137. err = ecode.Int(res.Code)
  138. }
  139. return
  140. }
  141. // AppealState modify appeal state .
  142. func (d *Dao) AppealState(c context.Context, mid, id, business, state int64, ip string) (err error) {
  143. params := url.Values{}
  144. params.Set("id", strconv.FormatInt(id, 10))
  145. params.Set("mid", strconv.FormatInt(mid, 10))
  146. params.Set("business", strconv.FormatInt(business, 10))
  147. params.Set("business_state", strconv.FormatInt(state, 10))
  148. var res struct {
  149. Code int `json:"code"`
  150. }
  151. if err = d.client.Post(c, d.appealstate, ip, params, &res); err != nil {
  152. err = errors.Wrap(err, "appeal state api")
  153. return
  154. }
  155. if res.Code != 0 {
  156. log.Error("appeal state url(%s) res(%v)", d.appealstate+"?"+params.Encode(), res)
  157. err = ecode.Int(res.Code)
  158. }
  159. return
  160. }
  161. // AppealStarInfo appeal star detail.
  162. func (d *Dao) AppealStarInfo(c context.Context, mid, cid int64, business int, ip string) (star, etime string, err error) {
  163. params := url.Values{}
  164. params.Set("mid", strconv.FormatInt(mid, 10))
  165. params.Set("cid", strconv.FormatInt(cid, 10))
  166. params.Set("business", strconv.Itoa(business))
  167. var res struct {
  168. Code int `json:"code"`
  169. Data struct {
  170. Star string `json:"star"`
  171. ETime string `json:"etime"`
  172. } `json:"data"`
  173. }
  174. if err = d.client.Get(c, d.appealStarInfo, ip, params, &res); err != nil {
  175. err = errors.Wrap(err, "appeal api")
  176. return
  177. }
  178. if res.Code != 0 {
  179. log.Error("appeal url(%s) mid(%d) res(%v)", d.detail+"?"+params.Encode(), mid, res)
  180. err = ecode.Int(res.Code)
  181. return
  182. }
  183. star = res.Data.Star
  184. etime = res.Data.ETime
  185. return
  186. }