relation.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package model
  2. import (
  3. "strconv"
  4. accountv1 "go-common/app/service/main/account/api"
  5. relation "go-common/app/service/main/relation/model"
  6. bm "go-common/library/net/http/blademaster"
  7. )
  8. // Vip .
  9. type Vip struct {
  10. Type int `json:"vipType"`
  11. DueDate int64 `json:"vipDueDate"`
  12. DueRemark string `json:"dueRemark"`
  13. AccessStatus int `json:"accessStatus"`
  14. VipStatus int `json:"vipStatus"`
  15. VipStatusWarn string `json:"vipStatusWarn"`
  16. }
  17. // Following is user followinng info.
  18. type Following struct {
  19. *relation.Following
  20. Uname string `json:"uname"`
  21. Face string `json:"face"`
  22. Sign string `json:"sign"`
  23. // OfficialVerify member.OfficialInfo `json:"official_verify"`
  24. OfficialVerify struct {
  25. Type int8 `json:"type"`
  26. Desc string `json:"desc"`
  27. } `json:"official_verify"`
  28. Vip Vip `json:"vip"`
  29. }
  30. // Tag is user info.
  31. type Tag struct {
  32. Mid int64 `json:"mid"`
  33. Uname string `json:"uname"`
  34. Face string `json:"face"`
  35. Sign string `json:"sign"`
  36. // OfficialVerify member.OfficialInfo `json:"official_verify"`
  37. OfficialVerify struct {
  38. Type int8 `json:"type"`
  39. Desc string `json:"desc"`
  40. } `json:"official_verify"`
  41. Vip Vip `json:"vip"`
  42. }
  43. // Info struct.
  44. type Info struct {
  45. Mid string `json:"mid"`
  46. Name string `json:"uname"`
  47. Sex string `json:"sex"`
  48. Sign string `json:"sign"`
  49. Avatar string `json:"avatar"`
  50. Rank string `json:"rank"`
  51. DisplayRank string `json:"DisplayRank"`
  52. LevelInfo struct {
  53. Cur int `json:"current_level"`
  54. Min int `json:"current_min"`
  55. NowExp int `json:"current_exp"`
  56. NextExp interface{} `json:"next_exp"`
  57. } `json:"level_info"`
  58. Pendant accountv1.PendantInfo `json:"pendant"`
  59. Nameplate accountv1.NameplateInfo `json:"nameplate"`
  60. OfficialVerify accountv1.OfficialInfo `json:"official_verify"`
  61. Vip struct {
  62. Type int `json:"vipType"`
  63. DueDate int64 `json:"vipDueDate"`
  64. DueRemark string `json:"dueRemark"`
  65. AccessStatus int `json:"accessStatus"`
  66. VipStatus int `json:"vipStatus"`
  67. VipStatusWarn string `json:"vipStatusWarn"`
  68. } `json:"vip"`
  69. }
  70. // RecommendInfo is
  71. type RecommendInfo struct {
  72. Info
  73. RecommendContent
  74. Fans int64 `json:"fans"`
  75. TypeName string `json:"type_name"`
  76. SecondTypeName string `json:"second_type_name"`
  77. TrackID string `json:"track_id"`
  78. Relation *relation.Following `json:"relation"`
  79. }
  80. // TagSuggestRecommendInfo is
  81. type TagSuggestRecommendInfo struct {
  82. TagName string `json:"tagname"`
  83. UpList []*RecommendInfo `json:"up_list"`
  84. MatchCnt int64 `json:"match_cnt"`
  85. }
  86. /*
  87. {
  88. "code": 0,
  89. "trackid": "123",
  90. "msg": "success",
  91. "data": [
  92. {
  93. "up_id": 123,
  94. "rec_reason": "游戏区热门up主",
  95. "rec_type": 1,
  96. "tid": 4,
  97. "second_tid": 173
  98. }
  99. ]
  100. }
  101. */
  102. // RecommendContent is
  103. type RecommendContent struct {
  104. UpID int64 `json:"up_id"`
  105. RecReason string `json:"rec_reason"`
  106. RecType int64 `json:"rec_type"`
  107. Tid int16 `json:"tid"`
  108. SecondTid int16 `json:"second_tid"`
  109. }
  110. // RecommendResponse is
  111. type RecommendResponse struct {
  112. Code int64 `json:"code"`
  113. TrackID string `json:"trackid"`
  114. Msg string `json:"msg"`
  115. Data []*RecommendContent `json:"data"`
  116. }
  117. // TagSuggestRecommendContent is
  118. type TagSuggestRecommendContent struct {
  119. TagName string `json:"tagname"`
  120. UpList []*RecommendContent `json:"up_list"`
  121. MatchCnt int64 `json:"match_cnt"`
  122. }
  123. // UpIDs is
  124. func (tsrc *TagSuggestRecommendContent) UpIDs() []int64 {
  125. upIDs := make([]int64, 0, len(tsrc.UpList))
  126. for _, up := range tsrc.UpList {
  127. upIDs = append(upIDs, up.UpID)
  128. }
  129. return upIDs
  130. }
  131. // TagSuggestRecommendResponse is
  132. type TagSuggestRecommendResponse struct {
  133. Code int64 `json:"code"`
  134. TrackID string `json:"trackid"`
  135. Msg string `json:"msg"`
  136. Data []*TagSuggestRecommendContent `json:"data"`
  137. }
  138. // FromCard from card.
  139. func (i *Info) FromCard(c *accountv1.Card) {
  140. i.Mid = strconv.FormatInt(c.Mid, 10)
  141. i.Name = c.Name
  142. i.Sex = c.Sex
  143. i.Sign = c.Sign
  144. i.Avatar = c.Face
  145. i.Rank = strconv.FormatInt(int64(c.Rank), 10)
  146. i.DisplayRank = "0"
  147. i.LevelInfo.Cur = int(c.Level)
  148. i.LevelInfo.NextExp = 0
  149. // i.LevelInfo.Min =
  150. i.Pendant = c.Pendant
  151. i.Nameplate = c.Nameplate
  152. i.OfficialVerify = c.Official
  153. i.Vip.Type = int(c.Vip.Type)
  154. i.Vip.VipStatus = int(c.Vip.Status)
  155. i.Vip.DueDate = c.Vip.DueDate
  156. }
  157. // BatchModifyResult is
  158. type BatchModifyResult struct {
  159. FailedFids []int64 `json:"failed_fids"`
  160. }
  161. // ArgRecommend is
  162. type ArgRecommend struct {
  163. Mid int64
  164. Device *bm.Device
  165. RemoteIP string
  166. MainTids string `form:"main_tids"`
  167. SubTids string `form:"sub_tids"`
  168. PageSize int64 `form:"pagesize" default:"10"`
  169. }
  170. // ArgTagSuggestRecommend is
  171. type ArgTagSuggestRecommend struct {
  172. Mid int64
  173. Device *bm.Device
  174. RemoteIP string
  175. TagName string `form:"tagname"`
  176. ContextID string `form:"context_id" validate:"required"`
  177. PageSize int64 `form:"pagesize" default:"10"`
  178. }
  179. // ArgAchieveGet is
  180. type ArgAchieveGet struct {
  181. Mid int64
  182. Award string `form:"award" validate:"required"`
  183. }
  184. // ArgAchieve is
  185. type ArgAchieve struct {
  186. AwardToken string `form:"award_token" validate:"required"`
  187. }
  188. // AchieveReply is
  189. type AchieveReply struct {
  190. relation.Achieve
  191. Metadata map[string]interface{} `json:"metadata"`
  192. }
  193. // ArgSameFollowing is
  194. type ArgSameFollowing struct {
  195. Mid int64 `form:"mid"`
  196. VMid int64 `form:"vmid" validate:"required"`
  197. Order string `form:"order"`
  198. PS int64 `form:"ps"`
  199. PN int64 `form:"pn"`
  200. ReVersion uint64 `form:"re_version"`
  201. }