subtitle.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. package model
  2. import (
  3. "go-common/library/ecode"
  4. )
  5. // SubtitleLocation .
  6. const (
  7. SubtitleLocationLeftBottom = uint8(1) //左下角
  8. SubtitleLocationBottomMid = uint8(2) //底部居中
  9. SubtitleLocationRightBottom = uint8(3) //右下角
  10. SubtitleLocationLeftUp = uint8(7) //左上角
  11. SubtitleLocationUpMid = uint8(8) //顶部居中
  12. SubtitleLocationRightUp = uint8(9) //右上角
  13. SubtitleContentSizeLimit = 300
  14. )
  15. var (
  16. // SubtitleLocationMap .
  17. SubtitleLocationMap = map[uint8]struct{}{
  18. SubtitleLocationLeftBottom: {},
  19. SubtitleLocationBottomMid: {},
  20. SubtitleLocationRightBottom: {},
  21. SubtitleLocationLeftUp: {},
  22. SubtitleLocationUpMid: {},
  23. SubtitleLocationRightUp: {},
  24. }
  25. )
  26. // SubtitleStatus .
  27. type SubtitleStatus uint8
  28. // SubtitleStatus
  29. const (
  30. SubtitleStatusUnknown SubtitleStatus = iota
  31. SubtitleStatusDraft
  32. SubtitleStatusToAudit
  33. SubtitleStatusAuditBack
  34. SubtitleStatusRemove
  35. SubtitleStatusPublish
  36. SubtitleStatusCheckToAudit
  37. SubtitleStatusCheckPublish
  38. SubtitleStatusManagerBack
  39. SubtitleStatusManagerRemove
  40. )
  41. // UpperStatus .
  42. type UpperStatus uint8
  43. // UpperStatus
  44. const (
  45. UpperStatusUnknow UpperStatus = iota
  46. UpperStatusUpper
  47. )
  48. // AuthorStatus .
  49. type AuthorStatus uint8
  50. // AuthorStatus
  51. const (
  52. AuthorStatusUnknow AuthorStatus = iota
  53. AuthorStatusAuthor
  54. )
  55. // WaveFormStatus .
  56. type WaveFormStatus uint8
  57. //WaveFormStatus
  58. const (
  59. WaveFormStatusWaitting WaveFormStatus = iota
  60. WaveFormStatusSuccess
  61. WaveFormStatusFailed
  62. WaveFormStatusError // this status need retry
  63. )
  64. // Subtitle .
  65. type Subtitle struct {
  66. ID int64 `json:"id"`
  67. Oid int64 `json:"oid"`
  68. Type int32 `json:"type"`
  69. Lan uint8 `json:"lan"`
  70. Aid int64 `json:"aid"`
  71. Mid int64 `json:"mid"`
  72. AuthorID int64 `json:"author_id"`
  73. UpMid int64 `json:"up_mid"`
  74. IsSign bool `json:"is_sign"`
  75. IsLock bool `json:"is_lock"`
  76. Status SubtitleStatus `json:"status"`
  77. CheckSum string `json:"-"`
  78. SubtitleURL string `json:"subtitle_url"`
  79. PubTime int64 `json:"pub_time"`
  80. RejectComment string `json:"reject_comment"`
  81. Mtime int64 `json:"mtime"`
  82. Empty bool `json:"empty"`
  83. }
  84. // SubtitleShow .
  85. type SubtitleShow struct {
  86. ID int64 `json:"id"`
  87. Oid int64 `json:"oid"`
  88. Type int32 `json:"type"`
  89. Lan string `json:"lan"`
  90. LanDoc string `json:"lan_doc"`
  91. Mid int64 `json:"mid"`
  92. Author string `json:"author"`
  93. Aid int64 `json:"aid"`
  94. ArchiveName string `json:"archive_name"`
  95. IsSign bool `json:"is_sign"`
  96. IsLock bool `json:"is_lock"`
  97. Status SubtitleStatus `json:"status"`
  98. SubtitleURL string `json:"subtitle_url"`
  99. RejectComment string `json:"reject_comment"`
  100. AuthorStatus AuthorStatus `json:"author_status"` // 1:作者
  101. UpperStatus UpperStatus `json:"upper_status"` // 1:up主
  102. }
  103. // SubtitlePub .
  104. type SubtitlePub struct {
  105. Oid int64 `json:"oid"`
  106. Type int32 `json:"type"`
  107. Lan uint8 `json:"lan"`
  108. SubtitleID int64 `json:"subtitle_id"`
  109. IsDelete bool `json:"is_delete"`
  110. }
  111. // VideoSubtitles .
  112. type VideoSubtitles struct {
  113. AllowSubmit bool `json:"allow_submit"`
  114. Lan string `json:"lan"`
  115. LanDoc string `json:"lan_doc"`
  116. Subtitles []*VideoSubtitle `json:"subtitles"`
  117. }
  118. // VideoSubtitleCache .
  119. type VideoSubtitleCache struct {
  120. VideoSubtitles []*VideoSubtitle `json:"video_subtitles"`
  121. }
  122. // VideoSubtitle .
  123. type VideoSubtitle struct {
  124. ID int64 `json:"id"`
  125. Lan string `json:"lan"`
  126. LanDoc string `json:"lan_doc"`
  127. IsLock bool `json:"is_lock"`
  128. AuthorMid int64 `json:"author_mid,omitempty"`
  129. SubtitleURL string `json:"subtitle_url"`
  130. }
  131. // Language .
  132. type Language struct {
  133. Lan string `json:"lan"`
  134. LanDoc string `json:"lan_doc"`
  135. Pub *LanguagePub `json:"pub,omitempty"`
  136. Draft *LanguageID `json:"draft,omitempty"`
  137. Audit *LanguageID `json:"audit,omitempty"`
  138. AuditBack *LanguageID `json:"audit_back,omitempty"`
  139. }
  140. // LanguagePub .
  141. type LanguagePub struct {
  142. SubtitleID int64 `json:"subtitle_id"`
  143. IsLock bool `json:"is_lock"`
  144. IsPub bool `json:"is_pub"`
  145. }
  146. // LanguageID .
  147. type LanguageID struct {
  148. SubtitleID int64 `json:"subtitle_id"`
  149. }
  150. // SubtitlePageResult .
  151. type SubtitlePageResult struct {
  152. ID int64 `json:"id"`
  153. Oid int64 `json:"oid"`
  154. }
  155. // CountSubtitleResult .
  156. type CountSubtitleResult struct {
  157. Draft int64
  158. ToAudit int64
  159. AuditBack int64
  160. Publish int64
  161. }
  162. // SearchSubtitleResult .
  163. type SearchSubtitleResult struct {
  164. Page *SearchPage `json:"page"`
  165. Results []*SubtitlePageResult `json:"result"`
  166. }
  167. // SearchSubtitle .
  168. type SearchSubtitle struct {
  169. ID int64 `json:"id"`
  170. Oid int64 `json:"oid"`
  171. Aid int64 `json:"aid"`
  172. Type int32 `json:"type"`
  173. ArchiveName string `json:"archive_name"`
  174. VideoName string `json:"video_name"`
  175. ArchivePic string `json:"archive_pic"`
  176. AuthorID int64 `json:"author_id"`
  177. Author string `json:"author"`
  178. AuthorPic string `json:"author_pic"`
  179. Lan string `json:"lan"`
  180. LanDoc string `json:"lan_doc"`
  181. Status int32 `json:"status"`
  182. IsSign bool `json:"is_sign"`
  183. IsLock bool `json:"is_lock"`
  184. RejectComment string `json:"reject_comment"`
  185. Mtime int64 `json:"mtime"`
  186. }
  187. // SearchSubtitleResponse .
  188. type SearchSubtitleResponse struct {
  189. Page *SearchPage `json:"page"`
  190. Subtitles []*SearchSubtitle `json:"subtitles"`
  191. }
  192. // SearchSubtitleAuthorItem .
  193. type SearchSubtitleAuthorItem struct {
  194. ID int64 `json:"id"`
  195. Oid int64 `json:"oid"`
  196. Aid int64 `json:"aid"`
  197. Type int32 `json:"type"`
  198. ArchiveName string `json:"archive_name"`
  199. VideoName string `json:"video_name"`
  200. ArchivePic string `json:"archive_pic"`
  201. Lan string `json:"lan"`
  202. LanDoc string `json:"lan_doc"`
  203. Status int32 `json:"status"`
  204. IsSign bool `json:"is_sign"`
  205. IsLock bool `json:"is_lock"`
  206. RejectComment string `json:"reject_comment"`
  207. Mtime int64 `json:"mtime"`
  208. }
  209. // SearchSubtitleAuthor .
  210. type SearchSubtitleAuthor struct {
  211. Page *SearchPage `json:"page"`
  212. Subtitles []*SearchSubtitleAuthorItem `json:"subtitles"`
  213. Total int64 `json:"total"`
  214. DraftCount int64 `json:"draft_count"`
  215. AuditCount int64 `json:"audit_count"`
  216. BackCount int64 `json:"back_count"`
  217. PublishCount int64 `json:"publish_count"`
  218. }
  219. // SearchSubtitleAssit .
  220. type SearchSubtitleAssit struct {
  221. Page *SearchPage `json:"page"`
  222. Subtitles []*SearchSubtitle `json:"subtitles"`
  223. Total int64 `json:"total"`
  224. AuditCount int64 `json:"audit_count"`
  225. PublishCount int64 `json:"publish_count"`
  226. }
  227. // Subtitle state
  228. const (
  229. AttrSubtitleClose = uint(1) // 关闭稿件字幕
  230. )
  231. // SubtitleSubject .
  232. type SubtitleSubject struct {
  233. Aid int64 `json:"aid"`
  234. Allow bool `json:"allow"`
  235. Attr int32 `json:"attr"`
  236. Lan uint8 `json:"lan"`
  237. Empty bool `json:"empty"`
  238. }
  239. // AttrVal return val of subtitle subject'attr
  240. func (s *SubtitleSubject) AttrVal(bit uint) int32 {
  241. return (s.Attr >> bit) & int32(1)
  242. }
  243. // AttrSet set val of subtitle subject'attr
  244. func (s *SubtitleSubject) AttrSet(v int32, bit uint) {
  245. s.Attr = s.Attr&(^(1 << bit)) | (v << bit)
  246. }
  247. // SubtitleItem .
  248. type SubtitleItem struct {
  249. From float64 `json:"from"`
  250. To float64 `json:"to"`
  251. Location uint8 `json:"location"`
  252. Content string `json:"content"`
  253. }
  254. // SubtitleBody .
  255. type SubtitleBody struct {
  256. FontSize float64 `json:"font_size,omitempty"`
  257. FontColor string `json:"font_color,omitempty"`
  258. BackgroundAlpha float64 `json:"background_alpha,omitempty"`
  259. BackgroundColor string `json:"background_color,omitempty"`
  260. Stroke string `json:"Stroke,omitempty"`
  261. Bodys []*SubtitleItem `json:"body"`
  262. }
  263. // CheckItem .
  264. // err 兼容老接口error,等创作中心上线后去掉error返回
  265. func (s *SubtitleBody) CheckItem(duration int64) (detectErrs []*SubtitleDetectError, err error) {
  266. var (
  267. maxDuration = float64(duration) / float64(1000)
  268. )
  269. maxDuration = maxDuration + 1 // 时间刻度上线兼容1
  270. for idx, item := range s.Bodys {
  271. if len(item.Content) > SubtitleContentSizeLimit {
  272. detectErrs = append(detectErrs, &SubtitleDetectError{
  273. Line: int32(idx),
  274. ErrorMsg: ecode.SubtitleSizeLimit.Message(),
  275. })
  276. err = ecode.SubtitleSizeLimit
  277. continue
  278. }
  279. if _, ok := SubtitleLocationMap[item.Location]; !ok {
  280. detectErrs = append(detectErrs, &SubtitleDetectError{
  281. Line: int32(idx),
  282. ErrorMsg: ecode.SubtitleLocationUnValid.Message(),
  283. })
  284. err = ecode.SubtitleSizeLimit
  285. continue
  286. }
  287. if item.From >= item.To {
  288. detectErrs = append(detectErrs, &SubtitleDetectError{
  289. Line: int32(idx),
  290. ErrorMsg: ecode.SubtitleDuarionMustThanZero.Message(),
  291. })
  292. err = ecode.SubtitleSizeLimit
  293. continue
  294. }
  295. if item.From > maxDuration || item.To > maxDuration {
  296. detectErrs = append(detectErrs, &SubtitleDetectError{
  297. Line: int32(idx),
  298. ErrorMsg: ecode.SubtitleVideoDurationOverFlow.Message(),
  299. })
  300. err = ecode.SubtitleSizeLimit
  301. continue
  302. }
  303. }
  304. return
  305. }
  306. // WaveForm .
  307. type WaveForm struct {
  308. Oid int64 `json:"oid"`
  309. Type int32 `json:"type"`
  310. State WaveFormStatus `json:"state"`
  311. WaveFromURL string `json:"wave_form_url"`
  312. Mtime int64 `json:"mtime"`
  313. Empty bool
  314. }
  315. // WaveFormResp .
  316. type WaveFormResp struct {
  317. State WaveFormStatus `json:"state"`
  318. WaveFromURL string `json:"wave_form_url"`
  319. }
  320. // SubtitleLans .
  321. type SubtitleLans []*SubtitleLan
  322. // SubtitleLan .
  323. type SubtitleLan struct {
  324. Code int64 `json:"-"`
  325. Lan string `json:"lan"`
  326. DocZh string `json:"doc_zh"`
  327. DocEn string `json:"-"`
  328. IsDelete bool `json:"-"`
  329. }
  330. // GetByLan .
  331. func (ss SubtitleLans) GetByLan(lan string) (code int64) {
  332. for _, s := range ss {
  333. if s.Lan == lan {
  334. return s.Code
  335. }
  336. }
  337. return 0
  338. }
  339. // GetByID .
  340. func (ss SubtitleLans) GetByID(lanID int64) (lan string, doc string) {
  341. for _, s := range ss {
  342. if s.Code == lanID {
  343. return s.Lan, s.DocZh
  344. }
  345. }
  346. return
  347. }
  348. // SubtitleCheckMsg .
  349. type SubtitleCheckMsg struct {
  350. SubtitleID int64 `json:"subtitle_id"`
  351. Oid int64 `json:"oid"`
  352. }
  353. // FilterCheckResp .
  354. type FilterCheckResp struct {
  355. Hits map[string]string `json:"hits"`
  356. }
  357. // SubtitleDetectError .
  358. type SubtitleDetectError struct {
  359. Line int32 `json:"line"`
  360. ErrorMsg string `json:"error_msg"`
  361. }