academy.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. package academy
  2. import (
  3. "go-common/library/time"
  4. mdlArt "go-common/app/interface/openplatform/article/model"
  5. "go-common/app/service/main/archive/api"
  6. )
  7. const (
  8. _ = iota
  9. //Course 教程级别
  10. Course
  11. //Operation 运营标签
  12. Operation
  13. //Classify 分类标签
  14. Classify
  15. //ArticleClass 专栏分类
  16. ArticleClass
  17. //H5 移动端tag分类
  18. H5
  19. //RecommendTag 推荐理由
  20. RecommendTag
  21. //BusinessForAll //所有类型稿件
  22. BusinessForAll = 0
  23. //BusinessForArchive //视频稿件
  24. BusinessForArchive = 1
  25. //BusinessForArticle //专栏稿件
  26. BusinessForArticle = 2
  27. )
  28. //H5Conf for h5 conf.
  29. type H5Conf struct {
  30. //OfficialID 官方推荐id
  31. OfficialID int64
  32. //EditorChoiceID 编辑精选id
  33. EditorChoiceID int64
  34. //NewbCourseID 新人课程id
  35. NewbCourseID int64
  36. //ResourceID 资源管理位id 防重复
  37. ResourceID int64
  38. }
  39. //TagClassMap for tag type map.
  40. func TagClassMap(ty int) (s string) {
  41. switch ty {
  42. case Course:
  43. s = "course_level"
  44. case Operation:
  45. s = "operation_tag"
  46. case Classify:
  47. s = "classify_tag"
  48. case ArticleClass:
  49. s = "article_class"
  50. case H5:
  51. s = "h5"
  52. case RecommendTag:
  53. s = "recommend_tag"
  54. }
  55. return
  56. }
  57. //Tag for academy tag.
  58. type Tag struct {
  59. ID int64 `json:"id"`
  60. ParentID int64 `json:"parent_id"`
  61. Type int8 `json:"type"`
  62. State int8 `json:"-"`
  63. Business int8 `json:"-"`
  64. Name string `json:"name"`
  65. Desc string `json:"-"`
  66. CTime time.Time `json:"-"`
  67. MTime time.Time `json:"-"`
  68. Children []*Tag `json:"children,omitempty"`
  69. }
  70. //TagClassify map tag type name.
  71. func TagClassify() map[int]string {
  72. return map[int]string{
  73. Course: "教程级别",
  74. Operation: "运营标签",
  75. Classify: "分类标签",
  76. ArticleClass: "专栏分类",
  77. }
  78. }
  79. //Archive for academy achive & article.
  80. type Archive struct {
  81. ID int64 `json:"id"`
  82. OID int64 `json:"oid"`
  83. State int8 `json:"-"`
  84. Business int `json:"business"`
  85. CTime time.Time `json:"-"`
  86. MTime time.Time `json:"-"`
  87. TIDs []int64 `json:"-"`
  88. }
  89. //ArchiveTag for academy achive & tag relation .
  90. type ArchiveTag struct {
  91. ID int64 `json:"id"`
  92. OID int64 `json:"oid"`
  93. TID int64 `json:"tid"`
  94. State int8 `json:"-"`
  95. CTime time.Time `json:"-"`
  96. MTime time.Time `json:"-"`
  97. }
  98. //ArchiveMeta for archive meta.
  99. type ArchiveMeta struct {
  100. OID int64 `json:"oid"`
  101. MID int64 `json:"mid"`
  102. State int32 `json:"state"`
  103. Forbid int8 `json:"forbid"`
  104. Cover string `json:"cover"`
  105. Type string `json:"type"`
  106. Title string `json:"title"`
  107. HighLightTitle string `json:"highlight_title"`
  108. UName string `json:"uname"`
  109. Face string `json:"face"`
  110. Comment string `json:"comment"`
  111. CTime time.Time `json:"-"`
  112. MTime time.Time `json:"-"`
  113. Tags map[string][]*Tag `json:"tags"`
  114. Duration int64 `json:"duration"`
  115. ArcStat *api.Stat `json:"arc_stat,omitempty"`
  116. ArtStat *mdlArt.Stats `json:"art_stat,omitempty"`
  117. Business int `json:"business"`
  118. Rights api.Rights `json:"rights,omitempty"`
  119. }
  120. //ArchiveList for archive list.
  121. type ArchiveList struct {
  122. Items []*ArchiveMeta `json:"items"`
  123. Page *ArchivePage `json:"page"`
  124. }
  125. //ArchivePage for archive pagination.
  126. type ArchivePage struct {
  127. Pn int `json:"pn"`
  128. Ps int `json:"ps"`
  129. Total int `json:"total"`
  130. }
  131. //FeedBack for user advise.
  132. type FeedBack struct {
  133. // MID int64 `json:"mid"` //TODO
  134. Category string `json:"category"`
  135. Course string `json:"course"`
  136. Suggest string `json:"suggest"`
  137. CTime time.Time `json:"ctime"`
  138. MTime time.Time `json:"mtime"`
  139. }
  140. // EsParam for es page.
  141. type EsParam struct {
  142. OID int64
  143. Tid []int64
  144. TidsMap map[int][]int64
  145. Business int
  146. Pn int
  147. Ps int
  148. Keyword string
  149. Order string
  150. IP string
  151. Seed int64 //支持h5随机推荐
  152. Duration int //支持h5时长筛选
  153. }
  154. // EsPage for es page.
  155. type EsPage struct {
  156. Num int `json:"num"`
  157. Size int `json:"size"`
  158. Total int `json:"total"`
  159. }
  160. // EsArc for search archive.
  161. type EsArc struct {
  162. OID int64 `json:"oid"`
  163. TID []int64 `json:"tid"`
  164. Business int `json:"business"`
  165. Title []string `json:"title"` //highlight
  166. }
  167. // SearchResult archive list from search.
  168. type SearchResult struct {
  169. Page *EsPage `json:"page"`
  170. Result []*EsArc `json:"result"`
  171. }
  172. //LinkTag for link tag.
  173. type LinkTag struct {
  174. ID int64 `json:"id"`
  175. TID int64 `json:"tid"`
  176. LinkID int64 `json:"link_id"`
  177. }
  178. //RecArchive for archive.
  179. type RecArchive struct {
  180. OID int64 `json:"oid"`
  181. MID int64 `json:"mid"`
  182. Cover string `json:"cover"`
  183. Title string `json:"title"`
  184. Business int `json:"business,omitempty"` //只针对标签课程
  185. Duration int64 `json:"duration,omitempty"`
  186. ArcStat *api.Stat `json:"arc_stat,omitempty"`
  187. ArtStat *mdlArt.Stats `json:"art_stat,omitempty"`
  188. Tags map[string][]*Tag `json:"tags,omitempty"`
  189. }
  190. //RecArcList for recommend archive list.
  191. type RecArcList struct {
  192. Items []*RecArchive `json:"items"`
  193. Name string `json:"name"`
  194. TID int64 `json:"tid"`
  195. }
  196. //RecConf for tag conf.
  197. type RecConf struct {
  198. TIDs []int64
  199. PID int64
  200. }
  201. //KV key for tag ids val for type ids
  202. type KV struct {
  203. Key []int64 `json:"key"`
  204. Val []int64 `json:"val"`
  205. }
  206. //CourseRec for course rec
  207. type CourseRec struct {
  208. ID int64 `json:"id"`
  209. Rank int64 `json:"rank"`
  210. Shoot *KV `json:"shoot"`
  211. Scene *KV `json:"scene"`
  212. Edit *KV `json:"edit"`
  213. Mmd *KV `json:"mmd"`
  214. Sing *KV `json:"sing"`
  215. Bang *KV `json:"bang"`
  216. Other *KV `json:"other"`
  217. }
  218. //Drawn for Drawn rec
  219. type Drawn struct {
  220. ID int64 `json:"id"`
  221. Rank int64 `json:"rank"`
  222. MobilePlan *KV `json:"mobile_plan"`
  223. ScreenPlan *KV `json:"screen_plan"`
  224. RecordPlan *KV `json:"record_plan"`
  225. Other *KV `json:"other"`
  226. }
  227. //Video for Video rec
  228. type Video struct {
  229. ID int64 `json:"id"`
  230. Rank int64 `json:"rank"`
  231. MobileMake *KV `json:"mobile_make"`
  232. AudioEdit *KV `json:"audio_edit"`
  233. EditCompose *KV `json:"edit_compose"`
  234. Other *KV `json:"other"`
  235. }
  236. //Person for person rec
  237. type Person struct {
  238. ID int64 `json:"id"`
  239. Rank int64 `json:"rank"`
  240. Other *KV `json:"other"`
  241. }
  242. //Recommend for all type
  243. type Recommend struct {
  244. Course *CourseRec `json:"course"`
  245. Drawn *Drawn `json:"drawn"`
  246. Video *Video `json:"video"`
  247. Person *Person `json:"person"`
  248. }