param.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. package archive
  2. import (
  3. "go-common/library/time"
  4. )
  5. // ArchiveAddLogID
  6. const (
  7. // ArchiveAddLogID 投稿日志
  8. ArchiveAddLogID = int(81)
  9. // UgcpayAddarcProtocol ugc新增稿件时候记录的协议版本
  10. UgcpayAddarcProtocol = int(83)
  11. // LogTypeSuccess 投稿成功
  12. LogTypeSuccess = int(0)
  13. // LogTypeFail 投稿失败
  14. LogTypeFail = int(1)
  15. )
  16. // AppRequest str
  17. type AppRequest struct {
  18. MobiApp string
  19. Platform string
  20. Build string
  21. Device string
  22. }
  23. // ArcParam str
  24. type ArcParam struct {
  25. Aid int64 `json:"aid"`
  26. Mid int64 `json:"mid"`
  27. Author string `json:"author"`
  28. TypeID int16 `json:"tid"`
  29. Title string `json:"title"`
  30. Cover string `json:"cover"`
  31. Tag string `json:"tag"`
  32. Copyright int8 `json:"copyright"`
  33. NoReprint int8 `json:"no_reprint"`
  34. OrderID int64 `json:"order_id"`
  35. Desc string `json:"desc"`
  36. Source string `json:"source"`
  37. Attribute int32 `json:"-"` // NOTE: not allow user
  38. OpenElec int8 `json:"open_elec"`
  39. MissionID int `json:"mission_id"`
  40. FromIP int64 `json:"from_ip"`
  41. IPv6 []byte `json:"ipv6"`
  42. UpFrom int8 `json:"up_from"`
  43. BizFrom int8 `json:"biz_from"`
  44. DTime time.Time `json:"dtime"`
  45. Videos []*VideoParam `json:"videos"`
  46. Body string `json:"body,omitempty"`
  47. CodeMode bool `json:"code_mode,omitempty"`
  48. DescFormatID int `json:"desc_format_id,omitempty"`
  49. Dynamic string `json:"dynamic,omitempty"`
  50. Porder *Porder `json:"porder"`
  51. Lang string `json:"lang"`
  52. Watermark *Watermark `json:"watermark"`
  53. Geetest *Geetest `json:"geetest"`
  54. LotteryID int64 `json:"lottery_id"`
  55. Subtitle *Subtitle `json:"subtitle"`
  56. Pay *Pay `json:"pay"`
  57. UgcPay int8 `json:"ugcpay"` // videoup-service 需要按照这个字段转成attribute
  58. FollowMids []int64 `json:"follow_mids"`
  59. PoiObj *PoiObj `json:"poi_object"`
  60. Staffs []*Staff `json:"staffs"`
  61. HandleStaff bool `json:"handle_staff"`
  62. Vote *Vote `json:"vote"`
  63. }
  64. // Vote str
  65. type Vote struct {
  66. VoteID int64 `json:"vote_id"`
  67. VoteTitle string `json:"vote_title"`
  68. }
  69. // Pay str
  70. type Pay struct {
  71. Open int8 `json:"open"`
  72. Price int `json:"price"`
  73. ProtocolID string `json:"protocol_id"`
  74. ProtocolAccept int8 `json:"protocol_accept"`
  75. RefuseUpdate bool `json:"-"`
  76. }
  77. // Subtitle str only for web add and edit
  78. type Subtitle struct {
  79. Open int8 `json:"open"`
  80. Lan string `json:"lan"`
  81. }
  82. // Geetest str
  83. type Geetest struct {
  84. Challenge string `json:"challenge"`
  85. Validate string `json:"validate"`
  86. Seccode string `json:"seccode"`
  87. Success int `json:"success"`
  88. }
  89. // Watermark str
  90. type Watermark struct {
  91. State int8 `json:"state"`
  92. Ty int8 `json:"type"`
  93. Pos int8 `json:"position"`
  94. }
  95. // Porder str
  96. // new porder, ads provoder
  97. type Porder struct {
  98. FlowID uint `json:"flow_id"` // 0/1 是否确实参加了广告平台
  99. IndustryID int64 `json:"industry_id"` // 2 (游戏)
  100. BrandName string `json:"brand_name"` // FGO游戏
  101. BrandID int64 `json:"brand_id"` // 2
  102. Official int8 `json:"official"` // 0/1
  103. ShowType string `json:"show_type"` // 2,3,4
  104. }
  105. // VideoParam str
  106. type VideoParam struct {
  107. Title string `json:"title"`
  108. Desc string `json:"desc"`
  109. Filename string `json:"filename"`
  110. Cid int64 `json:"cid"`
  111. Sid int64 `json:"sid"`
  112. Editor *Editor `json:"editor"`
  113. }
  114. // Editor str
  115. type Editor struct {
  116. CID int64 `json:"cid"`
  117. UpFrom int8 `json:"upfrom"` // filled by backend
  118. // ids set
  119. Filters interface{} `json:"filters"` // 滤镜
  120. Fonts interface{} `json:"fonts"` //字体
  121. Subtitles interface{} `json:"subtitles"` //字幕
  122. Bgms interface{} `json:"bgms"` //bgm
  123. Stickers interface{} `json:"stickers"` //3d拍摄贴纸
  124. VideoupStickers interface{} `json:"videoup_stickers"` //2d投稿贴纸
  125. Transitions interface{} `json:"trans"` //视频转场特效
  126. // add from app535
  127. Themes interface{} `json:"themes"` //编辑器的主题使用相关
  128. Cooperates interface{} `json:"cooperates"` //拍摄之稿件合拍
  129. // switch env 0/1
  130. AudioRecord int8 `json:"audio_record"` //录音
  131. Camera int8 `json:"camera"` //拍摄
  132. Speed int8 `json:"speed"` //变速
  133. CameraRotate int8 `json:"camera_rotate"` //摄像头翻转
  134. // count from app536
  135. PicCount uint16 `json:"pic_count"` // 图片个数
  136. VideoCount uint16 `json:"video_count"` // 视频个数
  137. }
  138. // VideoExpire str
  139. type VideoExpire struct {
  140. Filename string `json:"filename"`
  141. Expire int64 `json:"expire"`
  142. }
  143. // CreatorParam struct
  144. type CreatorParam struct {
  145. Aid int64 `form:"aid" validate:"required"`
  146. Title string `form:"title" validate:"required"`
  147. Desc string `form:"desc" validate:"required"`
  148. Tag string `form:"tag" validate:"required"`
  149. OpenElec int8 `form:"open_elec"`
  150. Build string `form:"build" validate:"required"`
  151. Platform string `form:"platform" validate:"required"`
  152. }
  153. // Staff 稿件提交时的联合投稿人
  154. type Staff struct {
  155. Title string `json:"title"`
  156. Mid int64 `json:"mid"`
  157. }
  158. // StaffView Archive staff
  159. type StaffView struct {
  160. ID int64 `json:"id"`
  161. ApMID int64 `json:"apply_staff_mid"`
  162. ApTitle string `json:"apply_title"`
  163. ApAID int64 `json:"apply_aid"`
  164. ApType int `json:"apply_type"`
  165. ApState int `json:"apply_state"`
  166. ApStaffID int64 `json:"apply_asid"` //Staff表的主键ID
  167. StaffState int `json:"staff_state"`
  168. StaffTitle string `json:"staff_title"`
  169. }
  170. // ForbidMultiVideoType fun
  171. // 欧美电影,日本电影,国产电影,其他国家
  172. func (ap *ArcParam) ForbidMultiVideoType() bool {
  173. return ap.TypeID == 145 || ap.TypeID == 146 || ap.TypeID == 147 || ap.TypeID == 83
  174. }
  175. // ForbidAddVideoType fun
  176. // 连载剧集:15 完结剧集:34 电视剧相关:128 电影相关:82
  177. func (ap *ArcParam) ForbidAddVideoType() bool {
  178. return ap.TypeID == 15 || ap.TypeID == 34 || ap.TypeID == 128 || ap.TypeID == 82
  179. }
  180. // ForbidCopyrightAndTypes fun
  181. // // 32 完结动画; 33 连载动画
  182. func (ap *ArcParam) ForbidCopyrightAndTypes() bool {
  183. return (ap.Copyright == CopyrightOriginal) && (ap.TypeID == 32 || ap.TypeID == 33)
  184. }
  185. // EmptyVideoEditInfo fn
  186. func (ap *ArcParam) EmptyVideoEditInfo() {
  187. if (ap.UpFrom != UpFromAPPiOS) && (ap.UpFrom != UpFromAPPAndroid) {
  188. for _, v := range ap.Videos {
  189. v.Editor = nil
  190. }
  191. }
  192. }
  193. // NilPoiObj fn
  194. func (ap *ArcParam) NilPoiObj() {
  195. if (ap.UpFrom != UpFromAPPiOS) && (ap.UpFrom != UpFromAPPAndroid) {
  196. ap.PoiObj = nil
  197. }
  198. }
  199. // DisableVideoDesc fn
  200. func (ap *ArcParam) DisableVideoDesc(vs []*Video) {
  201. nvsMap := make(map[string]string)
  202. for _, v := range vs {
  203. nvsMap[v.Filename] = v.Desc
  204. }
  205. for _, pv := range ap.Videos {
  206. if nvFilename, ok := nvsMap[pv.Filename]; ok {
  207. pv.Desc = nvFilename
  208. }
  209. }
  210. }