subject.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // All const variable used in dm subject
  6. const (
  7. SubTypeVideo = int32(1) // 主题类型
  8. SubStateOpen = int32(0) // 主题打开
  9. SubStateClosed = int32(1) // 主题关闭
  10. AttrSubGuest = uint(0) // 允许游客弹幕
  11. AttrSubSpolier = uint(1) // 允许剧透弹幕
  12. AttrSubMission = uint(2) // 允许活动弹幕
  13. AttrSubAdvance = uint(3) // 允许高级弹幕
  14. AttrSubMonitorBefore = uint(4) // 先审后发视频
  15. AttrSubMonitorAfter = uint(5) // 先发后审视频
  16. AttrSubMaskOpen = uint(6) // 开启蒙版
  17. AttrSubMblMaskReady = uint(7) // 移动端蒙版生产完成
  18. AttrSubWebMaskReady = uint(8) // web端蒙版生产完成
  19. )
  20. // Subject dm_subject
  21. type Subject struct {
  22. ID int64 `json:"id"`
  23. Type int32 `json:"type"`
  24. Oid int64 `json:"oid"`
  25. Pid int64 `json:"pid"`
  26. Mid int64 `json:"mid"`
  27. State int32 `json:"state"`
  28. Attr int32 `json:"attr"`
  29. ACount int64 `json:"acount"`
  30. Count int64 `json:"count"`
  31. MCount int64 `json:"mcount"`
  32. MoveCnt int64 `json:"move_count"`
  33. Maxlimit int64 `json:"maxlimit"`
  34. Childpool int32 `json:"childpool"`
  35. Ctime time.Time `json:"ctime"`
  36. Mtime time.Time `json:"mtime"`
  37. }
  38. // ViewVideoSubtitle .
  39. type ViewVideoSubtitle struct {
  40. Author *ViewAuthor `json:"author,omitempty"`
  41. ID int64 `json:"id"`
  42. Lan string `json:"lan"`
  43. LanDoc string `json:"lan_doc"`
  44. SubtitleURL string `json:"subtitle_url"`
  45. }
  46. // ViewAuthor .
  47. type ViewAuthor struct {
  48. Mid int64 `json:"mid"`
  49. Name string `json:"name"`
  50. Sex string `json:"sex"`
  51. Face string `json:"face"`
  52. Sign string `json:"sign"`
  53. Rank int32 `json:"rank"`
  54. }
  55. // AttrVal return val of subject'attr
  56. func (s *Subject) AttrVal(bit uint) int32 {
  57. return (s.Attr >> bit) & int32(1)
  58. }
  59. // AttrSet set val of subject'attr
  60. func (s *Subject) AttrSet(v int32, bit uint) {
  61. s.Attr = s.Attr&(^(1 << bit)) | (v << bit)
  62. }
  63. // SubjectInfo dm subject info
  64. type SubjectInfo struct {
  65. Closed bool `json:"closed"`
  66. Realname bool `json:"real_name"`
  67. Count int64 `json:"count"`
  68. MaskList Mask `json:"mask"`
  69. VideoSubtitle []*ViewVideoSubtitle `json:"subtitles"`
  70. }
  71. // IsMonitoring check if the subject is monitoring or not.
  72. func (s *Subject) IsMonitoring() bool {
  73. return s.AttrVal(AttrSubMonitorBefore) == AttrYes ||
  74. s.AttrVal(AttrSubMonitorAfter) == AttrYes
  75. }