archive.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. package archive
  2. import (
  3. "go-common/app/service/main/archive/api"
  4. a "go-common/app/service/main/archive/model/archive"
  5. "go-common/library/time"
  6. )
  7. var (
  8. // VjInfo 审核当前拥挤状态的数据映射
  9. VjInfo = map[int8]*VideoJam{
  10. 0: {
  11. Level: 0,
  12. State: "状态正在计算中",
  13. Comment: "状态正在计算中",
  14. },
  15. 1: {
  16. Level: 1,
  17. State: "畅通",
  18. Comment: "预计稿件过审时间小于20分钟(剧集、活动投稿除外)",
  19. },
  20. 2: {
  21. Level: 2,
  22. State: "繁忙",
  23. Comment: "预计稿件过审时间小于40分钟(剧集、活动投稿除外)",
  24. },
  25. 3: {
  26. Level: 3,
  27. State: "拥挤",
  28. Comment: "预计稿件过审时间小于60分钟(剧集、活动投稿除外)",
  29. },
  30. 4: {
  31. Level: 4,
  32. State: "爆满",
  33. Comment: "预计稿件过审时间小于120分钟(剧集、活动投稿除外)",
  34. },
  35. 5: {
  36. Level: 5,
  37. State: "阻塞",
  38. Comment: "预计稿件过审时间大于120分钟(剧集、活动投稿除外)",
  39. },
  40. }
  41. )
  42. const (
  43. // CopyrightOrigin 自制
  44. CopyrightOrigin = int64(1)
  45. // CopyrightReprint 转载
  46. CopyrightReprint = int64(2)
  47. // TagPredictFromWeb web tag推荐
  48. TagPredictFromWeb = int8(0)
  49. // TagPredictFromAPP app tag推荐
  50. TagPredictFromAPP = int8(1)
  51. // TagPredictFromWindows windows tag推荐
  52. TagPredictFromWindows = int8(2)
  53. )
  54. // Const State
  55. const (
  56. // attribute yes and no
  57. AttrYes = int32(1)
  58. AttrNo = int32(0)
  59. // attribute bit
  60. AttrBitNoRank = uint(0)
  61. AttrBitNoDynamic = uint(1)
  62. AttrBitNoWeb = uint(2)
  63. AttrBitNoMobile = uint(3)
  64. AttrBitNoSearch = uint(4)
  65. AttrBitOverseaLock = uint(5)
  66. AttrBitNoRecommend = uint(6)
  67. AttrBitNoReprint = uint(7)
  68. AttrBitHasHD5 = uint(8)
  69. AttrBitIsPGC = uint(9)
  70. AttrBitAllowBp = uint(10)
  71. AttrBitIsBangumi = uint(11)
  72. AttrBitIsPorder = uint(12)
  73. AttrBitLimitArea = uint(13)
  74. AttrBitAllowTag = uint(14)
  75. AttrBitIsFromArcAPI = uint(15) // TODO: delete
  76. AttrBitJumpURL = uint(16)
  77. AttrBitIsMovie = uint(17)
  78. AttrBitBadgepay = uint(18)
  79. AttrBitIsJapan = uint(19) //日文稿件
  80. AttrBitNoPushBplus = uint(20) //是否动态禁止
  81. AttrBitParentMode = uint(21) //家长模式
  82. AttrBitUGCPay = uint(22) //UGC付费
  83. AttrBitHasBGM = uint(23) //稿件带有BGM
  84. AttrBitIsCoop = uint(24) //联合投稿
  85. )
  86. // OldArchiveVideoAudit archive with audit.
  87. // NOTE: old struct, will delete!!!
  88. type OldArchiveVideoAudit struct {
  89. *api.Arc
  90. RejectReson string `json:"reject,omitempty"`
  91. Dtime time.Time `json:"dtime,omitempty"`
  92. VideoAudits []*OldVideoAudit `json:"video_audit,omitempty"`
  93. StateDesc string `json:"state_desc"`
  94. StatePanel int `json:"state_panel"`
  95. ParentTName string `json:"parent_tname"`
  96. Attrs *Attrs `json:"attrs"`
  97. UgcPay int8 `json:"ugcpay"`
  98. }
  99. // OldVideoAudit video audit.
  100. // NOTE: old struct, will delete!!!
  101. type OldVideoAudit struct {
  102. Reason string `json:"reason,omitempty"`
  103. Eptitle string `json:"eptitle,omitempty"`
  104. IndexOrder int `json:"index_order"`
  105. }
  106. // ArcVideoAudit archive video audit.
  107. type ArcVideoAudit struct {
  108. *ArcVideo
  109. Stat *api.Stat `json:"stat"`
  110. StatePanel int `json:"state_panel"`
  111. ParentTName string `json:"parent_tname"`
  112. TypeName string `json:"typename"`
  113. OpenAppeal int64 `json:"open_appeal"`
  114. }
  115. // Flow type
  116. type Flow struct {
  117. ID uint `json:"id"`
  118. Remark string `json:"remark"`
  119. }
  120. // Porder type
  121. type Porder struct {
  122. ID int64 `json:"id"`
  123. AID int64 `json:"aid"`
  124. IndustryID int64 `json:"industry_id"`
  125. BrandID int64 `json:"brand_id"`
  126. BrandName string `json:"brand_name"`
  127. Official int8 `json:"is_official"`
  128. ShowType string `json:"show_type"`
  129. Advertiser string `json:"advertiser"`
  130. Agent string `json:"agent"`
  131. Ctime time.Time `json:"ctime,omitempty"`
  132. Mtime time.Time `json:"mtime,omitempty"`
  133. }
  134. // Staff type
  135. type Staff struct {
  136. ID int64 `json:"id"`
  137. AID int64 `json:"aid"`
  138. MID int64 `json:"mid"`
  139. StaffMID int64 `json:"staff_mid"`
  140. StaffTitle string `json:"staff_title"`
  141. }
  142. // StaffApply type
  143. type StaffApply struct {
  144. ID int64 `json:"id"`
  145. Type int8 `json:"apply_type"`
  146. ASID int64 `json:"apply_as_id"`
  147. ApplyAID int64 `json:"apply_aid"`
  148. ApplyUpMID int64 `json:"apply_up_mid"`
  149. ApplyStaffMID int64 `json:"apply_staff_mid"`
  150. ApplyTitle string `json:"apply_title"`
  151. ApplyTitleID int64 `json:"apply_title_id"`
  152. State int8 `json:"apply_state"`
  153. StaffState int8 `json:"staff_state"`
  154. StaffTitle string `json:"staff_title"`
  155. }
  156. // Commercial type
  157. type Commercial struct {
  158. AID int64 `json:"aid"`
  159. POrderID int64 `json:"porder_id"` // 私
  160. OrderID int64 `json:"order_id"` // 商
  161. GameID int64 `json:"game_id"`
  162. //IndustryID int64 `json:"industry_id"` // open after mall
  163. //BrandID int64 `json:"brand_id"`
  164. }
  165. // InMovieType judge type for pubdate
  166. func InMovieType(tid int16) bool {
  167. return tid == 83 || tid == 145 || tid == 146 || tid == 147
  168. }
  169. // StatePanel judge archive state for app panel.
  170. func StatePanel(s int8) (st int) {
  171. if s == a.StateForbidWait ||
  172. s == a.StateForbidFixed ||
  173. s == a.StateForbidLater ||
  174. s == a.StateForbidAdminDelay ||
  175. s == a.StateForbidSubmit ||
  176. s == a.StateForbidUserDelay {
  177. st = 1 //处理中
  178. } else if s == a.StateForbidRecicle {
  179. st = 2 //退回可编辑
  180. } else if s == a.StateForbidPolice || s == a.StateForbidLock {
  181. st = 3 //退回全部不可编辑
  182. } else if s == a.StateForbidXcodeFail {
  183. st = 4 //退回分区不可编辑
  184. } else {
  185. st = 0 //正常开放
  186. }
  187. return
  188. }
  189. // IsCloseState judge arc state.
  190. func IsCloseState(s int) bool {
  191. return s == -2 || s == -4 || s == -5 || s == -14
  192. }
  193. // ShortDesc cut down to short desc for adapter app and windows clients
  194. func ShortDesc(desc string) string {
  195. rs := []rune(desc)
  196. length := len(rs)
  197. max := 250
  198. if length < max {
  199. max = length
  200. }
  201. return string(rs[:max])
  202. }
  203. // AttrVal get attribute.
  204. func (a *ArcVideoAudit) AttrVal(bit uint) int32 {
  205. return (a.Archive.Attribute >> bit) & int32(1)
  206. }
  207. // IsOwner fn
  208. func (a *ArcVideoAudit) IsOwner(mid int64) int8 {
  209. if a.Archive.Mid == mid {
  210. return 1
  211. }
  212. return 0
  213. }