view.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. package archive
  2. import (
  3. "go-common/library/time"
  4. )
  5. //Platform const
  6. const (
  7. PlatformWeb = "web"
  8. PlatformWindows = "windows"
  9. PlatformH5 = "h5"
  10. PlatformAndroid = "android"
  11. PlatformIOS = "ios"
  12. )
  13. // Archive is archive model.
  14. type Archive struct {
  15. Aid int64 `json:"aid"`
  16. Mid int64 `json:"mid"`
  17. TypeID int16 `json:"tid"`
  18. HumanRank int `json:"-"`
  19. Title string `json:"title"`
  20. Author string `json:"author"`
  21. Cover string `json:"cover"`
  22. RejectReason string `json:"reject_reason"`
  23. Tag string `json:"tag"`
  24. Duration int64 `json:"duration"`
  25. Copyright int8 `json:"copyright"`
  26. NoReprint int8 `json:"no_reprint"`
  27. UgcPay int8 `json:"ugcpay"`
  28. OrderID int64 `json:"order_id"`
  29. OrderName string `json:"order_name"`
  30. Desc string `json:"desc"`
  31. MissionID int64 `json:"mission_id"`
  32. MissionName string `json:"mission_name"`
  33. Round int8 `json:"-"`
  34. Forward int64 `json:"-"`
  35. Attribute int32 `json:"attribute"`
  36. Access int16 `json:"-"`
  37. State int8 `json:"state"`
  38. StateDesc string `json:"state_desc"`
  39. StatePanel int `json:"state_panel"`
  40. Source string `json:"source"`
  41. DescFormatID int64 `json:"desc_format_id"`
  42. Attrs *Attrs `json:"attrs"`
  43. // feature: private orders
  44. Porder *ArcPorder `json:"porder"`
  45. Dynamic string `json:"dynamic"`
  46. PoiObj *PoiObj `json:"poi_object"`
  47. // time
  48. DTime time.Time `json:"dtime"`
  49. PTime time.Time `json:"ptime"`
  50. CTime time.Time `json:"ctime"`
  51. MTime time.Time `json:"-"`
  52. UgcPayInfo *UgcPayInfo `json:"ugcpay_info"`
  53. Staffs []*StaffView `json:"staffs"`
  54. Vote *Vote `json:"vote"`
  55. }
  56. // Attrs str
  57. type Attrs struct {
  58. IsCoop int8 `json:"is_coop"`
  59. IsOwner int8 `json:"is_owner"`
  60. }
  61. // Vote str
  62. type Vote struct {
  63. VoteID int64 `json:"vote_id"`
  64. VoteTitle string `json:"vote_title"`
  65. }
  66. // PayAct str
  67. type PayAct struct {
  68. Reason string `json:"reason"`
  69. State int8 `json:"state"`
  70. }
  71. // PayAsset str
  72. type PayAsset struct {
  73. Price int `json:"price"`
  74. PlatformPrice map[string]int `json:"platform_price"`
  75. }
  76. // UgcPayInfo str
  77. type UgcPayInfo struct {
  78. Acts map[string]*PayAct `json:"acts"`
  79. Asset *PayAsset `json:"asset"`
  80. }
  81. // NilPoiObj fn 防止非APP端的地理位置信息泄露
  82. func (arc *Archive) NilPoiObj(platform string) {
  83. if (platform != PlatformAndroid) &&
  84. (platform != PlatformIOS) &&
  85. (platform != PlatformH5) {
  86. arc.PoiObj = nil
  87. }
  88. }
  89. // NilVote fn
  90. func (arc *Archive) NilVote() {
  91. if arc.Vote != nil && arc.Vote.VoteID == 0 {
  92. arc.Vote = nil
  93. }
  94. }
  95. // ArcPorder str
  96. type ArcPorder struct {
  97. FlowID int64 `json:"flow_id"`
  98. IndustryID int64 `json:"industry_id"`
  99. BrandID int64 `json:"brand_id"`
  100. BrandName string `json:"brand_name"`
  101. Official int8 `json:"official"`
  102. ShowType string `json:"show_type"`
  103. // for admin operation
  104. Advertiser string `json:"advertiser"`
  105. Agent string `json:"agent"`
  106. //state 0 自首 1 审核添加
  107. State int8 `json:"state"`
  108. }
  109. // Video is videos model.
  110. type Video struct {
  111. ID int64 `json:"-"`
  112. Aid int64 `json:"aid"`
  113. Title string `json:"title"`
  114. Desc string `json:"desc"`
  115. Filename string `json:"filename"`
  116. SrcType string `json:"-"`
  117. Cid int64 `json:"cid"`
  118. Duration int64 `json:"duration"`
  119. Filesize int64 `json:"-"`
  120. Resolutions string `json:"-"`
  121. Index int `json:"index"`
  122. Playurl string `json:"-"`
  123. Status int16 `json:"status"`
  124. StatusDesc string `json:"status_desc"`
  125. RejectReason string `json:"reject_reason"`
  126. FailCode int8 `json:"fail_code"`
  127. FailDesc string `json:"fail_desc"`
  128. XcodeState int8 `json:"-"`
  129. Attribute int32 `json:"-"`
  130. CTime time.Time `json:"ctime"`
  131. MTime time.Time `json:"-"`
  132. }
  133. // ArcVideo str
  134. type ArcVideo struct {
  135. Archive *Archive
  136. Videos []*Video
  137. }
  138. // StaffView Archive staff
  139. type StaffView struct {
  140. ID int64 `json:"id"`
  141. ApMID int64 `json:"apply_staff_mid"`
  142. ApName string `json:"apply_staff_name"`
  143. ApTitle string `json:"apply_title"`
  144. ApAID int64 `json:"apply_aid"`
  145. ApType int `json:"apply_type"`
  146. ApState int `json:"apply_state"`
  147. ApStaffID int64 `json:"apply_asid"` //Staff表的主键ID
  148. StaffState int `json:"staff_state"`
  149. StaffTitle string `json:"staff_title"`
  150. }
  151. // ViewBGM bgm view
  152. type ViewBGM struct {
  153. SID int64 `json:"sid"`
  154. MID int64 `json:"mid"`
  155. Title string `json:"title"`
  156. Author string `json:"author"`
  157. JumpURL string `json:"jump_url"`
  158. }
  159. // Vcover muti cover for video.
  160. type Vcover struct {
  161. Filename string `json:"filename"`
  162. BFSPath string `json:"bfs_path"`
  163. }
  164. // SimpleArchive is simple model for videos
  165. type SimpleArchive struct {
  166. Aid int64 `json:"aid"`
  167. Title string `json:"title"`
  168. }
  169. // SimpleVideo is simple model for videos
  170. type SimpleVideo struct {
  171. Cid int64 `json:"cid"`
  172. Index int `json:"index"`
  173. Title string `json:"title"`
  174. }
  175. // RecoArch is simple archive information for recommend
  176. type RecoArch struct {
  177. Aid int64 `json:"aid"`
  178. Title string `json:"title"`
  179. Owner string `json:"owner"`
  180. }
  181. // SpVideo is a simple model with danmu status
  182. type SpVideo struct {
  183. Cid int64 `json:"cid"`
  184. Index int `json:"part_id"`
  185. Title string `json:"part_name"`
  186. Status int16 `json:"status"`
  187. DmActive int `json:"dm_active"`
  188. DmModified time.Time `json:"dm_modified"`
  189. }
  190. // SpArchive str
  191. type SpArchive struct {
  192. Aid int64 `json:"aid"`
  193. Title string `json:"title"`
  194. Mid int64 `json:"mid,omitempty"`
  195. }
  196. // SimpleArchiveVideos str
  197. type SimpleArchiveVideos struct {
  198. Archive *SpArchive `json:"archive"`
  199. SpVideos []*SpVideo `json:"part_list"`
  200. AcceptAss bool `json:"accept_ass"`
  201. }
  202. // VideoJam is video traffic jam info for frontend
  203. type VideoJam struct {
  204. Level int8 `json:"level"`
  205. State string `json:"state"`
  206. Comment string `json:"comment"`
  207. }
  208. // Dpub str
  209. type Dpub struct {
  210. Deftime time.Time `json:"deftime"`
  211. DeftimeEnd time.Time `json:"deftime_end"`
  212. DeftimeMsg string `json:"deftime_msg"`
  213. }