space.go 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. package space
  2. import (
  3. "strconv"
  4. "encoding/json"
  5. "go-common/app/interface/main/app-interface/model"
  6. "go-common/app/interface/main/app-interface/model/audio"
  7. "go-common/app/interface/main/app-interface/model/bangumi"
  8. "go-common/app/interface/main/app-interface/model/community"
  9. "go-common/app/interface/main/app-interface/model/elec"
  10. "go-common/app/interface/main/app-interface/model/favorite"
  11. tag "go-common/app/interface/main/tag/model"
  12. article "go-common/app/interface/openplatform/article/model"
  13. "go-common/app/service/main/archive/api"
  14. xtime "go-common/library/time"
  15. )
  16. // Space struct
  17. type Space struct {
  18. Relation int `json:"relation"`
  19. Medal int `json:"medal,omitempty"`
  20. Attention uint32 `json:"attention,omitempty"`
  21. Setting *Setting `json:"setting,omitempty"`
  22. Tab *Tab `json:"tab,omitempty"`
  23. Card *Card `json:"card,omitempty"`
  24. Space *Mob `json:"images,omitempty"`
  25. Shop *Shop `json:"shop,omitempty"`
  26. Live json.RawMessage `json:"live,omitempty"`
  27. Elec *elec.Info `json:"elec,omitempty"`
  28. Archive *ArcList `json:"archive,omitempty"`
  29. Article *ArticleList `json:"article,omitempty"`
  30. Clip *ClipList `json:"clip,omitempty"`
  31. Album *AlbumList `json:"album,omitempty"`
  32. Favourite *FavList `json:"favourite,omitempty"`
  33. Season *BangumiList `json:"season,omitempty"`
  34. CoinArc *ArcList `json:"coin_archive,omitempty"`
  35. LikeArc *ArcList `json:"like_archive,omitempty"`
  36. Audios *AudioList `json:"audios,omitempty"`
  37. Community *CommuList `json:"community,omitempty"`
  38. }
  39. // Card struct
  40. type Card struct {
  41. Mid string `json:"mid"`
  42. Name string `json:"name"`
  43. Approve bool `json:"approve"`
  44. Sex string `json:"sex"`
  45. Rank string `json:"rank"`
  46. Face string `json:"face"`
  47. DisplayRank string `json:"DisplayRank"`
  48. Regtime int64 `json:"regtime"`
  49. Spacesta int `json:"spacesta"`
  50. Birthday string `json:"birthday"`
  51. Place string `json:"place"`
  52. Description string `json:"description"`
  53. Article int `json:"article"`
  54. Attentions []int64 `json:"attentions"`
  55. Fans int `json:"fans"`
  56. Friend int `json:"friend"`
  57. Attention int `json:"attention"`
  58. Sign string `json:"sign"`
  59. LevelInfo LevelInfo `json:"level_info"`
  60. Pendant PendantInfo `json:"pendant"`
  61. Nameplate NameplateInfo `json:"nameplate"`
  62. OfficialVerify OfficialInfo `json:"official_verify"`
  63. Vip struct {
  64. Type int `json:"vipType"`
  65. DueDate int64 `json:"vipDueDate"`
  66. DueRemark string `json:"dueRemark"`
  67. AccessStatus int `json:"accessStatus"`
  68. VipStatus int `json:"vipStatus"`
  69. VipStatusWarn string `json:"vipStatusWarn"`
  70. } `json:"vip"`
  71. FansGroup int `json:"fans_group,omitempty"`
  72. Audio int `json:"audio,omitempty"`
  73. FansUnread bool `json:"fans_unread,omitempty"`
  74. }
  75. // Mob struct
  76. type Mob struct {
  77. ImgURL string `json:"imgUrl"`
  78. }
  79. // Shop struct
  80. type Shop struct {
  81. ID int64 `json:"id,omitempty"`
  82. Name string `json:"name,omitempty"`
  83. }
  84. // LevelInfo struct
  85. type LevelInfo struct {
  86. Cur int32 `json:"current_level"`
  87. Min int32 `json:"current_min"`
  88. NowExp int32 `json:"current_exp"`
  89. NextExp interface{} `json:"next_exp"`
  90. }
  91. // PendantInfo struct
  92. type PendantInfo struct {
  93. Pid int `json:"pid"`
  94. Name string `json:"name"`
  95. Image string `json:"image"`
  96. Expire int `json:"expire"`
  97. }
  98. // NameplateInfo struct
  99. type NameplateInfo struct {
  100. Nid int `json:"nid"`
  101. Name string `json:"name"`
  102. Image string `json:"image"`
  103. ImageSmall string `json:"image_small"`
  104. Level string `json:"level"`
  105. Condition string `json:"condition"`
  106. }
  107. // OfficialInfo struct
  108. type OfficialInfo struct {
  109. Type int8 `json:"type"`
  110. Desc string `json:"desc"`
  111. Role int8 `json:"role"`
  112. Title string `json:"title"`
  113. }
  114. // Setting struct
  115. type Setting struct {
  116. Channel int `json:"channel,omitempty"`
  117. FavVideo int `json:"fav_video"`
  118. CoinsVideo int `json:"coins_video"`
  119. LikesVideo int `json:"likes_video"`
  120. Bangumi int `json:"bangumi"`
  121. PlayedGame int `json:"played_game"`
  122. Groups int `json:"groups"`
  123. }
  124. // TagList struct
  125. type TagList struct {
  126. Count int `json:"count"`
  127. Tags []*tag.Tag `json:"item"`
  128. }
  129. // ArcList struct
  130. type ArcList struct {
  131. Count int `json:"count"`
  132. Item []*ArcItem `json:"item"`
  133. }
  134. // ArticleList struct
  135. type ArticleList struct {
  136. Count int `json:"count"`
  137. Item []*ArticleItem `json:"item"`
  138. ListsCount int `json:"lists_count"`
  139. Lists []*article.List `json:"lists"`
  140. }
  141. // CommuList struct
  142. type CommuList struct {
  143. Count int `json:"count"`
  144. Item []*CommItem `json:"item"`
  145. }
  146. // FavList struct
  147. type FavList struct {
  148. Count int `json:"count"`
  149. Item []*favorite.Folder `json:"item"`
  150. }
  151. // BangumiList struct
  152. type BangumiList struct {
  153. Count int `json:"count"`
  154. Item []*BangumiItem `json:"item"`
  155. }
  156. // AudioList struct
  157. type AudioList struct {
  158. Count int `json:"count"`
  159. Item []*AudioItem `json:"item"`
  160. }
  161. // ClipList struct
  162. type ClipList struct {
  163. Count int `json:"count"`
  164. More int `json:"has_more"`
  165. Offset int `json:"next_offset"`
  166. Item []*Item `json:"item"`
  167. }
  168. // AlbumList struct
  169. type AlbumList struct {
  170. Count int `json:"count"`
  171. More int `json:"has_more"`
  172. Offset int `json:"next_offset"`
  173. Item []*Item `json:"item"`
  174. }
  175. // ArcItem struct
  176. type ArcItem struct {
  177. Title string `json:"title"`
  178. TypeName string `json:"tname"`
  179. Cover string `json:"cover"`
  180. URI string `json:"uri"`
  181. Param string `json:"param"`
  182. Goto string `json:"goto"`
  183. Length string `json:"length"`
  184. Duration int64 `json:"duration"`
  185. // av
  186. Play int `json:"play"`
  187. Danmaku int `json:"danmaku"`
  188. CTime xtime.Time `json:"ctime"`
  189. UGCPay int32 `json:"ugc_pay"`
  190. }
  191. // ArticleItem struct
  192. type ArticleItem struct {
  193. *article.Meta
  194. URI string `json:"uri"`
  195. Param string `json:"param"`
  196. Goto string `json:"goto"`
  197. }
  198. // BangumiItem struct
  199. type BangumiItem struct {
  200. Title string `json:"title"`
  201. Cover string `json:"cover"`
  202. URI string `json:"uri"`
  203. Param string `json:"param"`
  204. Goto string `json:"goto"`
  205. Finish int8 `json:"finish"`
  206. Index string `json:"index"`
  207. MTime xtime.Time `json:"mtime"`
  208. NewestEpIndex string `json:"newest_ep_index"`
  209. IsStarted int `json:"is_started"`
  210. IsFinish string `json:"is_finish"`
  211. NewestEpID string `json:"newest_ep_id"`
  212. TotalCount string `json:"total_count"`
  213. Attention string `json:"attention"`
  214. }
  215. // CommItem struct
  216. type CommItem struct {
  217. ID int `json:"id"`
  218. Name string `json:"name"`
  219. Desc string `json:"desc"`
  220. Thumb string `json:"thumb"`
  221. PostCount int `json:"post_count"`
  222. MemberCount int `json:"member_count"`
  223. PostNickname string `json:"post_nickname"`
  224. MemberNickname string `json:"member_nickname"`
  225. }
  226. // AudioItem struct
  227. type AudioItem struct {
  228. ID int64 `json:"id"`
  229. Aid int64 `json:"aid"`
  230. UID int64 `json:"uid"`
  231. Title string `json:"title"`
  232. Cover string `json:"cover"`
  233. Author string `json:"author"`
  234. Schema string `json:"schema"`
  235. Duration int64 `json:"duration"`
  236. Play int `json:"play"`
  237. Reply int `json:"reply"`
  238. IsOff int `json:"isOff"`
  239. AuthType int `json:"authType"`
  240. CTime xtime.Time `json:"ctime"`
  241. }
  242. // FromSeason func
  243. func (i *BangumiItem) FromSeason(b *bangumi.Season) {
  244. i.Title = b.Title
  245. i.Cover = b.Cover
  246. i.Goto = model.GotoBangumi
  247. i.Param = b.SeasonID
  248. i.URI = model.FillURI(model.GotoBangumiWeb, b.SeasonID, nil)
  249. i.IsStarted = b.IsStarted
  250. if b.IsFinish == "1" {
  251. i.Finish = 1
  252. }
  253. i.NewestEpIndex = b.NewestEpIndex
  254. i.TotalCount = b.TotalCount
  255. if b.UserSeason != nil {
  256. i.Attention = b.UserSeason.Attention
  257. }
  258. }
  259. // FromCoinArc func
  260. func (i *ArcItem) FromCoinArc(a *api.Arc) {
  261. i.Title = a.Title
  262. i.Cover = a.Pic
  263. i.Param = strconv.FormatInt(int64(a.Aid), 10)
  264. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  265. i.Goto = model.GotoAv
  266. i.Danmaku = int(a.Stat.Danmaku)
  267. i.Duration = a.Duration
  268. i.CTime = a.PubDate
  269. i.Play = int(a.Stat.View)
  270. }
  271. // FromLikeArc fun
  272. func (i *ArcItem) FromLikeArc(a *api.Arc) {
  273. i.Title = a.Title
  274. i.Cover = a.Pic
  275. i.Param = strconv.FormatInt(int64(a.Aid), 10)
  276. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  277. i.Goto = model.GotoAv
  278. i.Danmaku = int(a.Stat.Danmaku)
  279. i.Duration = a.Duration
  280. i.CTime = a.PubDate
  281. i.Play = int(a.Stat.View)
  282. }
  283. // FromArticle func
  284. func (i *ArticleItem) FromArticle(a *article.Meta) {
  285. i.Meta = a
  286. i.Param = strconv.FormatInt(int64(a.ID), 10)
  287. i.URI = model.FillURI(model.GotoArticle, i.Param, nil)
  288. i.Goto = model.GotoArticle
  289. }
  290. // FromArc func
  291. func (i *ArcItem) FromArc(c *api.Arc) {
  292. i.Title = c.Title
  293. i.Cover = c.Pic
  294. i.TypeName = c.TypeName
  295. i.Param = strconv.FormatInt(int64(c.Aid), 10)
  296. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  297. i.Goto = model.GotoAv
  298. i.Danmaku = int(c.Stat.Danmaku)
  299. i.CTime = c.PubDate
  300. i.Duration = c.Duration
  301. i.Play = int(c.Stat.View)
  302. i.UGCPay = c.Rights.UGCPay
  303. }
  304. // FromCommunity func
  305. func (i *CommItem) FromCommunity(c *community.Community) {
  306. i.ID = c.ID
  307. i.Name = c.Name
  308. i.Desc = c.Desc
  309. i.Thumb = c.Thumb
  310. i.PostCount = c.PostCount
  311. i.MemberCount = c.MemberCount
  312. i.PostNickname = c.PostNickname
  313. i.MemberNickname = c.MemberNickname
  314. }
  315. // FromAudio func
  316. func (i *AudioItem) FromAudio(a *audio.Audio) {
  317. i.ID = a.ID
  318. i.Aid = a.Aid
  319. i.UID = a.UID
  320. i.Title = a.Title
  321. i.Cover = a.Cover
  322. i.Author = a.Author
  323. i.Schema = a.Schema
  324. i.Duration = a.Duration
  325. i.Play = a.Play
  326. i.Reply = a.Reply
  327. i.IsOff = a.IsOff
  328. i.AuthType = a.AuthType
  329. i.CTime = a.CTime
  330. }