micro_roadshow.go 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "time"
  6. )
  7. // MicroRoadShowListResp 微路演列表响应体
  8. type MicroRoadShowListResp struct {
  9. Paging *paging.PagingItem
  10. List []*MicroRoadShowPageList
  11. }
  12. // MicroRoadShowPageList 微路演列表
  13. type MicroRoadShowPageList struct {
  14. Id int `description:"音视频ID"`
  15. Title string `description:"标题"`
  16. ResourceUrl string `description:"链接"`
  17. Type int `description:"类型: 1-音频; 2-视频"`
  18. PublishTime string `description:"发布时间"`
  19. BackgroundImg string `description:"背景图"`
  20. ChartPermissionId int `description:"行业ID"`
  21. ChartPermissionName string `description:"行业名称"`
  22. PlaySeconds string `description:"音视频时长"`
  23. ActivityId int `description:"活动ID"`
  24. AuthInfo *UserPermissionAuthInfo
  25. }
  26. // GetMicroRoadShowAudioPageList 获取微路演音频列表-分页
  27. func GetMicroRoadShowAudioPageList(startSize, pageSize int, condition string, pars []interface{}) (total int, list []*MicroRoadShowPageList, err error) {
  28. o := orm.NewOrm()
  29. sql := `SELECT
  30. a.activity_voice_id AS id,
  31. a.voice_name AS title,
  32. a.voice_url AS resource_url,
  33. 1 AS type,
  34. b.activity_time AS publish_time,
  35. b.chart_permission_id,
  36. b.chart_permission_name,
  37. a.voice_play_seconds AS play_seconds,
  38. a.img_url AS background_img,
  39. a.activity_id
  40. FROM
  41. cygx_activity_voice AS a
  42. JOIN cygx_activity AS b ON a.activity_id = b.activity_id
  43. WHERE 1 = 1 `
  44. if condition != `` {
  45. sql += condition
  46. }
  47. sql += ` ORDER BY publish_time DESC`
  48. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  49. err = o.Raw(totalSql, pars).QueryRow(&total)
  50. if err != nil {
  51. return
  52. }
  53. sql += ` LIMIT ?,?`
  54. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  55. return
  56. }
  57. // GetMicroRoadShowVideoPageList 获取微路演视频列表-分页
  58. func GetMicroRoadShowVideoPageList(startSize, pageSize int, condition string, pars []interface{}) (total int, list []*MicroRoadShowPageList, err error) {
  59. o := orm.NewOrm()
  60. sql := `SELECT
  61. video_id AS id,
  62. video_name AS title,
  63. video_url AS resource_url,
  64. 2 AS type,
  65. publish_date AS publish_time,
  66. chart_permission_id,
  67. chart_permission_name,
  68. video_duration AS play_seconds,
  69. img_url AS background_img
  70. FROM
  71. cygx_micro_roadshow_video
  72. WHERE
  73. publish_status = 1 `
  74. if condition != `` {
  75. sql += condition
  76. }
  77. sql += ` ORDER BY publish_time DESC`
  78. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  79. err = o.Raw(totalSql, pars).QueryRow(&total)
  80. if err != nil {
  81. return
  82. }
  83. sql += ` LIMIT ?,?`
  84. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  85. return
  86. }
  87. type AddVideoHistoryReq struct {
  88. VideoId int `description:"视频ID"`
  89. PlaySeconds int `description:"播放时长"`
  90. }
  91. type CygxMicroRoadshowVideoHistory struct {
  92. Id int `orm:"column(id);pk"description:"微路演视频浏览记录表id"`
  93. VideoId int `description:"微路演视频id"`
  94. UserId int `description:"用户id"`
  95. Mobile string `description:"手机号"`
  96. Email string `description:"邮箱"`
  97. CompanyId int `description:"公司Id"`
  98. CompanyName string `description:"公司名称"`
  99. RealName string `description:"用户实际名称"`
  100. SellerName string `description:"所属销售"`
  101. PlaySeconds string `description:"播放时间 单位s"`
  102. CreateTime time.Time `description:"视频创建时间"`
  103. ModifyTime time.Time `description:"视频修改时间"`
  104. }
  105. func GetLastCygxMicroRoadshowVideoHistory(videoId, userId int) (item *CygxMicroRoadshowVideoHistory, err error) {
  106. o := orm.NewOrm()
  107. sql := ` SELECT * FROM cygx_micro_roadshow_video_history WHERE video_id=? AND user_id=? ORDER BY create_time DESC limit 1 `
  108. err = o.Raw(sql, videoId, userId).QueryRow(&item)
  109. return
  110. }
  111. func AddCygxMicroRoadshowVideoHistory(item *CygxMicroRoadshowVideoHistory) (err error) {
  112. o := orm.NewOrm()
  113. _, err = o.Insert(item)
  114. return
  115. }
  116. // MicroAudioUnionList 微路演音频联合列表
  117. type MicroAudioUnionList struct {
  118. Id int `description:"音视频ID"`
  119. AudioTitle string `description:"标题"`
  120. AudioResourceUrl string `description:"链接"`
  121. AudioType int `description:"类型: 1-音频; 2-视频"`
  122. AudioPublishTime string `description:"发布时间"`
  123. AudioImgUrl string `description:"背景图"`
  124. AudioChartPermissionId int `description:"行业ID"`
  125. AudioChartPermissionName string `description:"行业名称"`
  126. AudioPlaySeconds string `description:"音视频时长"`
  127. AudioActivityId int `description:"活动ID"`
  128. AuthInfo *UserPermissionAuthInfo
  129. }
  130. // HomeNewestUnionList 首页最新纪要-音频联合查询结果
  131. type HomeNewestUnionList struct {
  132. ArticleId int `description:"文章id"`
  133. Title string `description:"标题"`
  134. TitleEn string `description:"英文标题 "`
  135. UpdateFrequency string `description:"更新周期"`
  136. CreateDate string `description:"创建时间"`
  137. PublishDate string `description:"发布时间"`
  138. Body string `description:"内容"`
  139. BodyHtml string `description:"内容带有HTML标签"`
  140. Abstract string `description:"摘要"`
  141. CategoryName string `description:"一级分类"`
  142. SubCategoryName string `description:"二级分类"`
  143. ExpertBackground string `description:"专家背景"`
  144. IsResearch bool `description:"是否属于研选"`
  145. Pv int `description:"PV"`
  146. ImgUrlPc string `description:"图片链接"`
  147. CategoryId string `description:"文章分类"`
  148. HttpUrl string `description:"文章链接跳转地址"`
  149. IsNeedJump bool `description:"是否需要跳转链接地址"`
  150. Source int `description:"来源 1:文章, 2:图表"`
  151. Annotation string `description:"核心观点"`
  152. HomeType int `description:"数据类型:0-纪要(默认); 1-微路演音频"`
  153. MicroAudioUnionList
  154. }
  155. // GetHomeNewestListUnionList 首页最新纪要-音频联合查询
  156. func GetHomeNewestListUnionList(condition string, pars []interface{}, startSize, pageSize int) (list []*HomeNewestUnionList, err error) {
  157. sql := `SELECT
  158. id, article_id, title, title_en, update_frequency, create_date, publish_date, body, abstract, category_name, sub_category_name, expert_background, category_id, source, annotation,
  159. (SELECT count(1) FROM cygx_article_history_record_newpv as h WHERE h.article_id = art.article_id ) as pv,
  160. 0 AS home_type, "" AS audio_title, "" AS audio_resource_url, 0 AS audio_type, "" AS audio_publish_time, 0 AS audio_chart_permission_id, "" AS audio_chart_permission_name,
  161. "" AS audio_play_seconds, "" AS audio_img_url, 0 AS audio_activity_id
  162. FROM
  163. cygx_article AS art
  164. WHERE
  165. art.publish_status = 1 `
  166. if condition != `` {
  167. sql += condition
  168. }
  169. sql += ` UNION ALL
  170. SELECT
  171. a.activity_voice_id, 0, "", "", "", "", b.activity_time, "", "", "", "", "", 0, 0, "",
  172. 0, 1, a.voice_name, a.voice_url, 1, b.activity_time,
  173. b.chart_permission_id, b.chart_permission_name, a.voice_play_seconds AS audio_play_seconds, a.img_url AS audio_img_url, a.activity_id AS audio_activity_id
  174. FROM
  175. cygx_activity_voice AS a
  176. JOIN cygx_activity AS b ON a.activity_id = b.activity_id`
  177. sql += ` ORDER BY publish_date DESC`
  178. sql += ` LIMIT ?,?`
  179. _, err = orm.NewOrm().Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  180. return
  181. }
  182. // GetHomeNewestListUnionCount 首页最新纪要-音频联合查询总数
  183. func GetHomeNewestListUnionCount(condition string, pars []interface{}) (count int, err error) {
  184. o := orm.NewOrm()
  185. sql := `SELECT
  186. COUNT(1) AS count
  187. FROM
  188. (
  189. SELECT
  190. art.id
  191. FROM
  192. cygx_article AS art
  193. WHERE
  194. art.publish_status = 1 `
  195. if condition != `` {
  196. sql += condition
  197. }
  198. sql += ` UNION ALL
  199. SELECT
  200. a.activity_voice_id
  201. FROM
  202. cygx_activity_voice AS a
  203. JOIN cygx_activity AS b ON a.activity_id = b.activity_id
  204. ) z `
  205. err = o.Raw(sql, pars).QueryRow(&count)
  206. return
  207. }
  208. func UpdateLastCygxActivityVideoHistory(playSeconds string, lastId int) (err error) {
  209. o := orm.NewOrm()
  210. sql := ` UPDATE cygx_micro_roadshow_video_history SET play_seconds =? WHERE id=? `
  211. _, err = o.Raw(sql, playSeconds, lastId).Exec()
  212. return
  213. }
  214. // MicroRoadshowVideo 微路演视频
  215. type MicroRoadshowVideo struct {
  216. VideoId int `orm:"column(video_id);pk" description:"视频ID"`
  217. VideoName string `description:"视频标题"`
  218. ChartPermissionId int `description:"行业ID"`
  219. ChartPermissionName string `description:"行业名称"`
  220. IndustryId int `description:"产业ID"`
  221. IndustryName string `description:"产业名称"`
  222. PublishStatus int `description:"发布状态:0-未发布;1-已发布"`
  223. ModifyDate time.Time `description:"更新时间"`
  224. PublishDate time.Time `description:"发布时间"`
  225. VideoCounts int `description:"视频播放量"`
  226. VideoDuration int `description:"视频时长"`
  227. VideoUrl string `description:"视频地址"`
  228. CreateTime time.Time `description:"创建时间"`
  229. ImgUrl string `description:"背景图链接"`
  230. }
  231. // GetMicroRoadshowVideoById 主键获取微路演视频
  232. func GetMicroRoadshowVideoById(videoId int) (item *MicroRoadshowVideo, err error) {
  233. sql := `SELECT * FROM cygx_micro_roadshow_video WHERE video_id = ? LIMIT 1`
  234. err = orm.NewOrm().Raw(sql, videoId).QueryRow(&item)
  235. return
  236. }
  237. func UpdateCygxActivityVideoCounts(activityId int) (err error) {
  238. sql := `UPDATE cygx_micro_roadshow_video_history SET video_counts = video_counts+1 WHERE video_id = ? `
  239. o := orm.NewOrm()
  240. _, err = o.Raw(sql, activityId).Exec()
  241. return
  242. }