archive.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package archive
  2. import (
  3. "go-common/library/time"
  4. )
  5. // State + Attr + Copyright + Upfrom
  6. const (
  7. // open state
  8. StateOpen = int8(0)
  9. StateOrange = int8(1)
  10. // forbit state
  11. StateForbidWait = int8(-1)
  12. StateForbidRecicle = int8(-2)
  13. StateForbidPolice = int8(-3)
  14. StateForbidLock = int8(-4)
  15. StateForbidFackLock = int8(-5)
  16. StateForbidFixed = int8(-6)
  17. StateForbidLater = int8(-7)
  18. // StateForbidPatched = int8(-8)
  19. StateForbidWaitXcode = int8(-9)
  20. StateForbidAdminDelay = int8(-10)
  21. StateForbidFixing = int8(-11)
  22. // StateForbidStorageFail = int8(-12)
  23. StateForbidOnlyComment = int8(-13)
  24. // StateForbidTmpRecicle = int8(-14)
  25. StateForbidDispatch = int8(-15)
  26. StateForbidXcodeFail = int8(-16)
  27. StateForbidSubmit = int8(-30)
  28. StateForbidUserDelay = int8(-40)
  29. StateForbidUpDelete = int8(-100)
  30. // attribute yes and no
  31. AttrYes = int32(1)
  32. AttrNo = int32(0)
  33. // attribute bit
  34. AttrBitNoRank = uint(0)
  35. AttrBitNoIndex = uint(1)
  36. AttrBitNoWeb = uint(2)
  37. AttrBitNoMobile = uint(3)
  38. AttrBitNoSearch = uint(4)
  39. AttrBitOverseaLock = uint(5)
  40. AttrBitNoRecommend = uint(6)
  41. // AttrBitHideCoins = uint(7)
  42. AttrBitHasHD5 = uint(8)
  43. // AttrBitVisitorDm = uint(9)
  44. AttrBitAllowBp = uint(10)
  45. AttrBitIsBangumi = uint(11)
  46. // AttrBitAllowDownload = uint(12)
  47. AttrBitHideClick = uint(13)
  48. AttrBitAllowTag = uint(14)
  49. AttrBitIsFromArcAPI = uint(15)
  50. AttrBitJumpURL = uint(16)
  51. AttrBitIsMovie = uint(17)
  52. AttrBitBadgepay = uint(18)
  53. AttrBitStaff = uint(24) //联合投稿
  54. // copyright state
  55. CopyrightUnknow = int8(0)
  56. CopyrightOriginal = int8(1)
  57. CopyrightCopy = int8(2)
  58. //up_from
  59. UpFromWeb = int8(0)
  60. UpFromPGC = int8(1)
  61. UpFromWindows = int8(2)
  62. UpFromAPP = int8(3)
  63. UpFromMAC = int8(4)
  64. UpFromSecretPGC = int8(5)
  65. UpFromCoopera = int8(6)
  66. UpFromCreator = int8(7) // 创作姬
  67. UpFromAPPAndroid = int8(8) // 安卓主APP
  68. UpFromAPPiOS = int8(9) // iOS主APP
  69. UpFromCM = int8(10) // Web商单用户投稿
  70. UpFromIpad = int8(11) // ipad投稿的用户
  71. AdvertisingTypeID = 166 // 广告分区的typeid
  72. )
  73. var (
  74. _copyright = map[int8]int8{
  75. CopyrightUnknow: CopyrightUnknow,
  76. CopyrightOriginal: CopyrightOriginal,
  77. CopyrightCopy: CopyrightCopy,
  78. }
  79. )
  80. // InCopyrights check copyright in all copyrights.
  81. func InCopyrights(cp int8) (ok bool) {
  82. _, ok = _copyright[cp]
  83. return
  84. }
  85. // Archive is archive model.
  86. type Archive struct {
  87. Aid int64 `json:"aid"`
  88. Mid int64 `json:"mid"`
  89. TypeID int16 `json:"tid"`
  90. // HumanRank int `json:"-"`
  91. Title string `json:"title"`
  92. Author string `json:"author"`
  93. Cover string `json:"cover"`
  94. Tag string `json:"tag"`
  95. Duration int64 `json:"duration"`
  96. Copyright int8 `json:"copyright"`
  97. Source string `json:"source"`
  98. NoReprint int8 `json:"no_reprint"`
  99. UgcPay int8 `json:"ugcpay"`
  100. OrderID int64 `json:"order_id"`
  101. Desc string `json:"desc"`
  102. MissionID int `json:"mission_id"`
  103. // Round int8 `json:"-"`
  104. // Forward int64 `json:"-"`
  105. Attribute int32 `json:"attribute"`
  106. // Access int16 `json:"-"`
  107. // desc_format
  108. DescFormatID int `json:"desc_format_id,omitempty"`
  109. State int8 `json:"state"`
  110. StateDesc string `json:"state_desc"`
  111. // dynamic
  112. Dynamic string `json:"dynamic"`
  113. Porder *Porder `json:"porder"`
  114. // time
  115. DTime time.Time `json:"dtime"`
  116. PTime time.Time `json:"ptime"`
  117. CTime time.Time `json:"ctime"`
  118. // MTime time.Time `json:"-"`
  119. }
  120. // NotAllowUp check archive is or not allow update state.
  121. func (a *Archive) NotAllowUp() bool {
  122. return a.State == StateForbidUpDelete || a.State == StateForbidLock || a.State == StateForbidPolice
  123. }
  124. // AttrVal get attribute.
  125. func (a *Archive) AttrVal(bit uint) int32 {
  126. return (a.Attribute >> bit) & int32(1)
  127. }
  128. // Type type from archive
  129. type Type struct {
  130. ID int16 `json:"id"`
  131. PID int16 `json:"pid"`
  132. Name string `json:"name"`
  133. Description string `json:"description"`
  134. }
  135. // DescFormat str
  136. type DescFormat struct {
  137. ID int `json:"id"`
  138. TypeID int16 `json:"typeid"`
  139. Copyright int8 `json:"copyright"`
  140. Lang int8 `json:"lang"`
  141. }
  142. // FilterData filter-service data
  143. type FilterData struct {
  144. Level int64 `json:"level"`
  145. Limit int64 `json:"limit"`
  146. Msg string `json:"msg"`
  147. TypeID []int64 `json:"typeid"`
  148. Hit []string `json:"hit"`
  149. }
  150. // PayAsset str
  151. type PayAsset struct {
  152. Price int `json:"price"`
  153. PlatformPrice map[string]int `json:"platform_price"`
  154. }