danmu.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. package danmu
  2. import (
  3. "go-common/library/time"
  4. )
  5. // AdvanceDanmu str
  6. type AdvanceDanmu struct {
  7. ID int64 `json:"id"`
  8. Cid int64 `json:"cid"`
  9. Mid int64 `json:"mid"`
  10. Aid int64 `json:"aid"`
  11. Type string `json:"type"`
  12. Mode string `json:"mode"`
  13. UName string `json:"uname"`
  14. Title string `json:"title"`
  15. Cover string `json:"cover"`
  16. Timestamp int64 `json:"timestamp"`
  17. }
  18. // DmList str
  19. type DmList struct {
  20. List []*MemberDM `json:"list"`
  21. Page int64 `json:"page"`
  22. Size int64 `json:"page_size"`
  23. TotalItems int64 `json:"total_items"`
  24. TotalPages int `json:"TotalPages"`
  25. NormalCount int `json:"normal_count"`
  26. SubCount int `json:"sub_count"`
  27. SpecCount int `json:"spec_count"`
  28. }
  29. // MemberDM str
  30. type MemberDM struct {
  31. ID int64 `json:"id"`
  32. FontSize int32 `json:"fontsize"`
  33. Color string `json:"color"`
  34. Mode int32 `json:"mode"`
  35. Msg string `json:"msg"`
  36. VTitle string `json:"vtitle"`
  37. Oid int64 `json:"oid"`
  38. Aid int64 `json:"aid"`
  39. ArcTitle string `json:"atitle"`
  40. Cover string `json:"cover"`
  41. Attrs string `json:"attrs"`
  42. Mid int64 `json:"mid"`
  43. Playtime float64 `json:"playtime"`
  44. Pool int32 `json:"pool"`
  45. State int32 `json:"state"`
  46. Ctime time.Time `json:"ctime"`
  47. Uname string `json:"uname"`
  48. Uface string `json:"uface"`
  49. Relation int `json:"relation"`
  50. IsElec int `json:"is_elec"`
  51. }
  52. // Recent str
  53. type Recent struct {
  54. ID int64 `json:"id"`
  55. Aid int64 `json:"aid"`
  56. Type int32 `json:"type"`
  57. Oid int64 `json:"oid"`
  58. Mid int64 `json:"mid"`
  59. Msg string `json:"msg"`
  60. Cover string `json:"cover"`
  61. FontSize int32 `json:"font_size"`
  62. Color string `json:"color"`
  63. Attrs string `json:"attrs"`
  64. Mode int32 `json:"mode"`
  65. Playtime float64 `json:"playtime"`
  66. Pool int32 `json:"pool"`
  67. State int32 `json:"state"`
  68. Title string `json:"title"` // oid所对应的稿件的标题
  69. Ctime time.Time `json:"ctime"`
  70. Mtime time.Time `json:"mtime"`
  71. Uname string `json:"uname"`
  72. Uface string `json:"uface"`
  73. Relation int `json:"relation"`
  74. IsElec int `json:"is_elec"`
  75. }
  76. // DmRecent str
  77. type DmRecent struct {
  78. List []*Recent `json:"list"`
  79. Page int64 `json:"page"`
  80. Size int64 `json:"page_size"`
  81. TotalItems int64 `json:"total_items"`
  82. TotalPages int `json:"TotalPages"`
  83. NormalCount int `json:"normal_count"`
  84. SubCount int `json:"sub_count"`
  85. SpecCount int `json:"spec_count"`
  86. }
  87. // DmReport str
  88. type DmReport struct {
  89. RpID int64 `json:"rp_id"`
  90. DmInID int64 `json:"dm_inid"`
  91. AID int64 `json:"aid"`
  92. Pic string `json:"pic"`
  93. ReportTime int64 `json:"reporttime"`
  94. Title string `json:"title"`
  95. Reason string `json:"reason"`
  96. DmID int64 `json:"dmid"`
  97. DmIDStr string `json:"dmid_str"`
  98. UpUID int64 `json:"up_uid"`
  99. Content string `json:"content"`
  100. UID int64 `json:"uid"`
  101. UserName string `json:"username"`
  102. }
  103. // DmArc str
  104. type DmArc struct {
  105. Aid int64 `json:"aid"`
  106. Title string `json:"title"`
  107. }
  108. // Pager str
  109. type Pager struct {
  110. Total int `json:"total"`
  111. Current int `json:"current"`
  112. Size int `json:"size"`
  113. TotalCount int `json:"total_count"`
  114. }
  115. // Apply str
  116. type Apply struct {
  117. ID int64 `json:"id"`
  118. IDStr string `json:"id_str"`
  119. AID int64 `json:"aid"`
  120. CID int64 `json:"cid"`
  121. Title string `json:"title"`
  122. ApplyUID int64 `json:"-"`
  123. Pic string `json:"pic"`
  124. Uname string `json:"uname"`
  125. Msg string `json:"msg"`
  126. Playtime float32 `json:"playtime"`
  127. Ctime string `json:"ctime"`
  128. }
  129. // ApplyListFromDM str
  130. type ApplyListFromDM struct {
  131. Pager *Pager
  132. List []*Apply
  133. }
  134. // ApplyList str
  135. type ApplyList struct {
  136. Pager *Pager `json:"pager"`
  137. List []*Apply `json:"list"`
  138. }
  139. // ------------------- danmu2 upgrade -------------------//
  140. // DMMember str
  141. type DMMember struct {
  142. ID int64 `json:"id"`
  143. Type int32 `json:"type"`
  144. Aid int64 `json:"aid"`
  145. Oid int64 `json:"oid"`
  146. Mid int64 `json:"mid"`
  147. MidHash string `json:"mid_hash"`
  148. Pool int32 `json:"pool"`
  149. Attrs string `json:"attrs"`
  150. Progress int32 `json:"progress"`
  151. Mode int32 `json:"mode"`
  152. Msg string `json:"msg"`
  153. State int32 `json:"state"`
  154. FontSize int32 `json:"fontsize"`
  155. Color string `json:"color"`
  156. Ctime time.Time `json:"ctime"`
  157. Uname string `json:"uname"`
  158. Title string `json:"title"`
  159. }
  160. // RecentPage str
  161. type RecentPage struct {
  162. Pn int64 `json:"num"`
  163. Ps int64 `json:"size"`
  164. Total int64 `json:"total"`
  165. }
  166. // ResNewRecent str
  167. type ResNewRecent struct {
  168. Result []*DMMember `json:"result"`
  169. Page *RecentPage `json:"page"`
  170. }
  171. //SearchDMResult dm list
  172. type SearchDMResult struct {
  173. Page struct {
  174. Num int64 `json:"num"`
  175. Size int64 `json:"size"`
  176. Total int64 `json:"total"`
  177. } `json:"page"`
  178. Result []*DMMember `json:"result"`
  179. }
  180. // SubtitleSubjectReply str
  181. type SubtitleSubjectReply struct {
  182. AllowSubmit bool `json:"allow"`
  183. Lan string `json:"lan"`
  184. LanDoc string `json:"lan_doc"`
  185. }