assist.go 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. package assist
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/assist"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. "go-common/library/xstr"
  8. "net/url"
  9. "strconv"
  10. "strings"
  11. )
  12. const (
  13. // api
  14. _addAssistURI = "/x/internal/assist/add"
  15. _delAssistURI = "/x/internal/assist/del"
  16. _getAssistInfoURI = "/x/internal/assist/info"
  17. _getAssistLogsURI = "/x/internal/assist/logs"
  18. _addAssistLogURI = "/x/internal/assist/log/add"
  19. _getAssistURI = "/x/internal/assist/assists"
  20. _getAssistLogInfoURI = "/x/internal/assist/log/info"
  21. _revocAssistLogURI = "/x/internal/assist/log/cancel"
  22. _getAssistLogObjURI = "/x/internal/assist/log/obj"
  23. _getAssistStatURI = "/x/internal/assist/stat"
  24. )
  25. // Assists get all Assists from assist service.
  26. func (d *Dao) Assists(c context.Context, mid int64, ip string) (assists []*assist.Assist, err error) {
  27. params := url.Values{}
  28. params.Set("mid", strconv.FormatInt(mid, 10))
  29. var res struct {
  30. Code int `json:"code"`
  31. Data []*assist.Assist `json:"data"`
  32. }
  33. if err = d.client.Get(c, d.assistListURL, ip, params, &res); err != nil {
  34. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistListURL, ip, params.Encode(), err)
  35. err = ecode.CreativeAssistErr
  36. return
  37. }
  38. if res.Code != 0 {
  39. err = ecode.Int(res.Code)
  40. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistListURL, ip, params.Encode(), err)
  41. return
  42. }
  43. assists = res.Data
  44. return
  45. }
  46. // AssistLog get assist log info from assist service
  47. func (d *Dao) AssistLog(c context.Context, mid, assistMid, logID int64, ip string) (assistLog *assist.AssistLog, err error) {
  48. params := url.Values{}
  49. params.Set("mid", strconv.FormatInt(mid, 10))
  50. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  51. params.Set("log_id", strconv.FormatInt(logID, 10))
  52. var res struct {
  53. Code int `json:"code"`
  54. Data *assist.AssistLog `json:"data"`
  55. }
  56. if err = d.client.Get(c, d.assistLogInfoURL, ip, params, &res); err != nil {
  57. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistLogInfoURL, ip, params.Encode(), err)
  58. err = ecode.CreativeAssistErr
  59. return
  60. }
  61. if res.Code != 0 {
  62. err = ecode.Int(res.Code)
  63. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistLogInfoURL, ip, params.Encode(), err)
  64. return
  65. }
  66. assistLog = res.Data
  67. return
  68. }
  69. // AssistLogs get logs from assist service.
  70. func (d *Dao) AssistLogs(c context.Context, mid, assistMid, pn, ps, stime, etime int64, ip string) (logs []*assist.AssistLog, pager map[string]int64, err error) {
  71. params := url.Values{}
  72. params.Set("mid", strconv.FormatInt(mid, 10))
  73. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  74. params.Set("pn", strconv.FormatInt(pn, 10))
  75. params.Set("ps", strconv.FormatInt(ps, 10))
  76. params.Set("stime", strconv.FormatInt(stime, 10))
  77. params.Set("etime", strconv.FormatInt(etime, 10))
  78. var res struct {
  79. Code int `json:"code"`
  80. Data []*assist.AssistLog `json:"data"`
  81. Pager map[string]int64 `json:"pager"`
  82. }
  83. if err = d.client.Get(c, d.assistLogsURL, ip, params, &res); err != nil {
  84. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistLogsURL, ip, params.Encode(), err)
  85. err = ecode.CreativeAssistErr
  86. return
  87. }
  88. if res.Code != 0 {
  89. err = ecode.Int(res.Code)
  90. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistLogsURL, ip, params.Encode(), err)
  91. return
  92. }
  93. for _, v := range res.Data {
  94. if v.Type == 3 && v.Action == 8 {
  95. detailT3A8 := strings.Split(v.Detail, ":")
  96. if len(detailT3A8) > 1 {
  97. v.Detail = " 用户UID:" + detailT3A8[len(detailT3A8)-1]
  98. }
  99. }
  100. if v.Type == 3 && v.Action == 9 {
  101. detailT3A9 := strings.Split(v.Detail, ":")
  102. if len(detailT3A9) > 1 {
  103. v.Detail = " 用户UID:" + detailT3A9[len(detailT3A9)-1]
  104. }
  105. }
  106. }
  107. logs = res.Data
  108. pager = res.Pager
  109. return
  110. }
  111. // AddAssist add assist
  112. func (d *Dao) AddAssist(c context.Context, mid, assistMid int64, ip, upUname string) (err error) {
  113. params := url.Values{}
  114. params.Set("mid", strconv.FormatInt(mid, 10))
  115. params.Set("up_uname", upUname)
  116. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  117. var res struct {
  118. Code int `json:"code"`
  119. }
  120. log.Info("AddOrDelAssist d.client.Post(%s,%s,%s) err(%v)", d.assistAddURL, ip, params.Encode(), err)
  121. if err = d.client.Post(c, d.assistAddURL, ip, params, &res); err != nil {
  122. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistAddURL, ip, params.Encode(), err)
  123. err = ecode.CreativeAssistErr
  124. return
  125. }
  126. if res.Code != 0 {
  127. err = ecode.Int(res.Code)
  128. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistAddURL, ip, params.Encode(), err)
  129. return
  130. }
  131. return
  132. }
  133. // DelAssist cancel assist
  134. func (d *Dao) DelAssist(c context.Context, mid, assistMid int64, ip, upUname string) (err error) {
  135. params := url.Values{}
  136. params.Set("mid", strconv.FormatInt(mid, 10))
  137. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  138. params.Set("up_uname", upUname)
  139. var res struct {
  140. Code int `json:"code"`
  141. }
  142. log.Info("AddOrDelAssist d.client.Post(%s,%s,%s) err(%v)", d.assistDelURL, ip, params.Encode(), err)
  143. if err = d.client.Post(c, d.assistDelURL, ip, params, &res); err != nil {
  144. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistDelURL, ip, params.Encode(), err)
  145. err = ecode.CreativeAssistErr
  146. return
  147. }
  148. if res.Code != 0 {
  149. err = ecode.Int(res.Code)
  150. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistDelURL, ip, params.Encode(), err)
  151. return
  152. }
  153. return
  154. }
  155. // RevocAssistLog calcel assistlog action
  156. func (d *Dao) RevocAssistLog(c context.Context, mid, assistMid, logID int64, ip string) (err error) {
  157. params := url.Values{}
  158. params.Set("mid", strconv.FormatInt(mid, 10))
  159. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  160. params.Set("log_id", strconv.FormatInt(logID, 10))
  161. var res struct {
  162. Code int `json:"code"`
  163. }
  164. if err = d.client.Post(c, d.assistLogRevocURL, ip, params, &res); err != nil {
  165. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistLogRevocURL, ip, params.Encode(), err)
  166. err = ecode.CreativeAssistErr
  167. return
  168. }
  169. if res.Code != 0 {
  170. err = ecode.Int(res.Code)
  171. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistLogRevocURL, ip, params.Encode(), err)
  172. return
  173. }
  174. return
  175. }
  176. // Stat get assists stat
  177. func (d *Dao) Stat(c context.Context, mid int64, assistMids []int64, ip string) (stat map[int64]map[int8]map[int8]int, err error) {
  178. params := url.Values{}
  179. params.Set("mid", strconv.FormatInt(mid, 10))
  180. params.Set("assmids", xstr.JoinInts(assistMids))
  181. var res struct {
  182. Code int `json:"code"`
  183. Data map[int64]map[int8]map[int8]int `json:"data"`
  184. }
  185. if err = d.client.Get(c, d.assistStatURL, ip, params, &res); err != nil {
  186. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistStatURL, ip, params.Encode(), err)
  187. err = ecode.CreativeAssistErr
  188. return
  189. }
  190. if res.Code != 0 {
  191. log.Error("d.client.Get(%s,%s,%s) err(%v)", d.assistStatURL, ip, params.Encode(), err)
  192. err = ecode.Int(res.Code)
  193. return
  194. }
  195. stat = res.Data
  196. return
  197. }
  198. // Info check if is assist
  199. func (d *Dao) Info(c context.Context, mid, assistMid int64, ip string) (assist int8, err error) {
  200. params := url.Values{}
  201. params.Set("mid", strconv.FormatInt(mid, 10))
  202. params.Set("assist_mid", strconv.FormatInt(assistMid, 10))
  203. params.Set("type", "1")
  204. var res struct {
  205. Code int `json:"code"`
  206. Data struct {
  207. Assist int8 `json:"assist"`
  208. } `json:"data"`
  209. }
  210. if err = d.client.Get(c, d.assistInfoURL, ip, params, &res); err != nil {
  211. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistInfoURL, ip, params.Encode(), err)
  212. err = ecode.CreativeAssistErr
  213. return
  214. }
  215. if res.Code != 0 {
  216. log.Error("d.client.Post(%s,%s,%s) err(%v)", d.assistInfoURL, ip, params.Encode(), err)
  217. err = ecode.Int(res.Code)
  218. return
  219. }
  220. assist = res.Data.Assist
  221. return
  222. }
  223. // AssistLogObj get assist log info from assist service
  224. func (d *Dao) AssistLogObj(c context.Context, tp, act int8, mid, objID int64) (assLog *assist.AssistLog, err error) {
  225. params := url.Values{}
  226. params.Set("type", strconv.FormatInt(int64(tp), 10))
  227. params.Set("action", strconv.FormatInt(int64(act), 10))
  228. params.Set("mid", strconv.FormatInt(mid, 10))
  229. params.Set("object_id", strconv.FormatInt(objID, 10))
  230. var res struct {
  231. Code int `json:"code"`
  232. Data *assist.AssistLog `json:"data"`
  233. }
  234. if err = d.client.Get(c, d.assistLogObjURL, "", params, &res); err != nil {
  235. log.Error("d.client.Get(%s,%s) err(%v)", d.assistLogObjURL, params.Encode(), err)
  236. err = ecode.CreativeAssistErr
  237. return
  238. }
  239. if res.Code != 0 {
  240. err = ecode.Int(res.Code)
  241. log.Error("d.client.Get(%s,%s) err(%v)", d.assistLogObjURL, params.Encode(), err)
  242. return
  243. }
  244. assLog = res.Data
  245. return
  246. }