account.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package account
  2. import "go-common/library/time"
  3. // MyInfo get user info for pre archive.
  4. type MyInfo struct {
  5. Mid int64 `json:"mid"`
  6. Name string `json:"uname"`
  7. Face string `json:"face"`
  8. Banned bool `json:"banned"`
  9. Level int `json:"level"`
  10. Activated bool `json:"activated"`
  11. Deftime time.Time `json:"deftime"`
  12. DeftimeEnd time.Time `json:"deftime_end"`
  13. DeftimeMsg string `json:"deftime_msg"`
  14. Commercial int `json:"commercial"`
  15. VideoRate uint `json:"video_rate,omitempty"`
  16. AudioRate uint `json:"audio_rate,omitempty"`
  17. IdentifyInfo *IdentifyInfo `json:"identify_check"`
  18. DmSubtitle bool `json:"subtitle"` //弹幕子业务之字幕协同创作
  19. DymcLottery bool `json:"lottery"` //动态子业务之抽奖
  20. UploadSize map[string]bool `json:"uploadsize"` // upload_size <= 8G
  21. }
  22. // IdentifyInfo str
  23. type IdentifyInfo struct {
  24. Code int `json:"code"`
  25. Msg string `json:"msg"`
  26. }
  27. var (
  28. // IdentifyEnum define
  29. IdentifyEnum = map[int]string{
  30. 0: "已实名认证",
  31. 1: "根据国家实名制认证的相关要求,您需要换绑一个非170/171的手机号,才能继续进行操作。",
  32. 2: "根据国家实名制认证的相关要求,您需要绑定手机号,才能继续进行操作。",
  33. }
  34. )
  35. const (
  36. // IsUp is up
  37. IsUp = 1
  38. // NotUp not up
  39. NotUp = 0
  40. )
  41. // UpInfo up type infos.
  42. type UpInfo struct {
  43. Archive int `json:"archive"`
  44. Article int `json:"article"`
  45. Pic int `json:"pic"`
  46. Blink int `json:"blink"`
  47. }
  48. //IsUper judge up auth by archive/article/pic/blink.
  49. func IsUper(up *UpInfo) (ok bool) {
  50. if up.Archive == 1 || up.Article == 1 || up.Blink == 1 || up.Pic == 1 {
  51. ok = true
  52. }
  53. return
  54. }
  55. // Friend str
  56. type Friend struct {
  57. Mid int64 `json:"mid"`
  58. Name string `json:"name"`
  59. Face string `json:"face"`
  60. Sign string `json:"sign"`
  61. Comment string `json:"comment"`
  62. ShouldFollow int8 `json:"should_follow"`
  63. }
  64. // SearchUp UP主搜索结果
  65. type SearchUp struct {
  66. Mid int64 `json:"mid"`
  67. Name string `json:"name"`
  68. Face string `json:"face"`
  69. IsBlock bool `json:"is_block"`
  70. Relation int `json:"relation"`
  71. Silence int32 `json:"silence"`
  72. }