message.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. package controllers
  2. import (
  3. "eta/eta_mini_crm_ht/models"
  4. "eta/eta_mini_crm_ht/models/response"
  5. "eta/eta_mini_crm_ht/utils"
  6. "github.com/rdlucklib/rdluck_tools/paging"
  7. "strconv"
  8. "strings"
  9. )
  10. type MessageController struct {
  11. BaseAuthController
  12. }
  13. // ReportList
  14. // @Title 研报列表
  15. // @Description pdf研报列表
  16. // @Param PageSize query int true "每页数据条数"
  17. // @Param CurrentIndex query int true "当前页页码,从1开始"
  18. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  19. // @Param KeyWord query string true "报告标题/创建人"
  20. // @Param SortType query string true "排序方式"
  21. // @Success 200 {object} models.ReportAuthorResp
  22. // @router /reportList [get]
  23. func (this *MessageController) ReportList() {
  24. br := new(models.BaseResponse).Init()
  25. defer func() {
  26. this.Data["json"] = br
  27. this.ServeJSON()
  28. }()
  29. pageSize, _ := this.GetInt("PageSize")
  30. currentIndex, _ := this.GetInt("CurrentIndex")
  31. permissionIds := this.GetString("PermissionIds")
  32. analystNames := this.GetString("AnalystNames")
  33. sortType := this.GetString("SortType")
  34. var permissionCondition string
  35. var condition string
  36. var pars []interface{}
  37. if pageSize <= 0 {
  38. pageSize = utils.PageSize20
  39. }
  40. if currentIndex <= 0 {
  41. currentIndex = 1
  42. }
  43. if permissionIds != "" {
  44. permissionArr := strings.Split(permissionIds, ",")
  45. permissionCondition += "permission_id in (" + utils.GetOrmReplaceHolder(len(permissionArr)) + ")"
  46. pars = append(pars, permissionArr)
  47. }
  48. if analystNames != "" {
  49. analystNameArr := strings.Split(analystNames, ",")
  50. condition += " AND author in (" + utils.GetOrmReplaceHolder(len(analystNameArr)) + ")"
  51. pars = append(pars, analystNameArr)
  52. }
  53. sortCondition := " ORDER BY published_time "
  54. if sortType == "" {
  55. sortType = "DESC"
  56. }
  57. sortCondition = sortCondition + sortType
  58. total, err := models.GetReportCountByCondition(condition, pars)
  59. if err != nil {
  60. br.Msg = "获取音频列表失败"
  61. br.ErrMsg = "获取音频列表统计失败,Err:" + err.Error()
  62. return
  63. }
  64. startSize := utils.StartIndex(currentIndex, pageSize)
  65. reportList, err := models.GetReportByCondition(condition, sortCondition, pars, startSize, pageSize)
  66. if err != nil {
  67. br.Msg = "获取研报列表失败"
  68. br.ErrMsg = "获取研报列表失败,Err:" + err.Error()
  69. return
  70. }
  71. var reportViewList []*models.ReportView
  72. for _, report := range reportList {
  73. reportView := report.ToView()
  74. reportViewList = append(reportViewList, reportView)
  75. }
  76. page := paging.GetPaging(currentIndex, pageSize, total)
  77. resp := new(response.ReportListResp)
  78. resp.List = reportViewList
  79. resp.Paging = page
  80. br.Ret = 200
  81. br.Success = true
  82. br.Data = resp
  83. br.Msg = "获取成功"
  84. }
  85. // AudioList
  86. // @Title 研报列表
  87. // @Description pdf研报列表
  88. // @Param PageSize query int true "每页数据条数"
  89. // @Param CurrentIndex query int true "当前页页码,从1开始"
  90. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  91. // @Param KeyWord query string true "报告标题/创建人"
  92. // @Param SortType query string true "排序方式"
  93. // @Success 200 {object} models.ReportAuthorResp
  94. // @router /audioList [get]
  95. func (this *MessageController) AudioList() {
  96. br := new(models.BaseResponse).Init()
  97. defer func() {
  98. this.Data["json"] = br
  99. this.ServeJSON()
  100. }()
  101. pageSize, _ := this.GetInt("PageSize")
  102. currentIndex, _ := this.GetInt("CurrentIndex")
  103. permissionIds := this.GetString("PermissionIds")
  104. analystIds := this.GetString("AnalystIds")
  105. sortType := this.GetString("SortType")
  106. KeyWord := this.GetString("KeyWord")
  107. var permissionCondition string
  108. var condition string
  109. var pars []interface{}
  110. if pageSize <= 0 {
  111. pageSize = utils.PageSize20
  112. }
  113. if currentIndex <= 0 {
  114. currentIndex = 1
  115. }
  116. if KeyWord != "" {
  117. condition += " AND media_name like '%" + KeyWord + "%'"
  118. }
  119. var permissionPars []interface{}
  120. if permissionIds != "" {
  121. permissionArr := strings.Split(permissionIds, ",")
  122. for _, permissionId := range permissionArr {
  123. perId, _ := strconv.Atoi(permissionId)
  124. permissionPars = append(permissionPars, perId)
  125. }
  126. permissionCondition += " AND permission_id in (" + utils.GetOrmReplaceHolder(len(permissionPars)) + ")"
  127. ids, err := models.GetMappingsByCondition(permissionCondition, permissionPars)
  128. if err != nil {
  129. condition += " AND id in (" + utils.GetOrmReplaceHolder(len(ids)) + ")"
  130. pars = append(pars, ids)
  131. }
  132. }
  133. if analystIds != "" {
  134. analystIdArr := strings.Split(analystIds, ",")
  135. var authorIds []int
  136. for _, analystId := range analystIdArr {
  137. id, _ := strconv.Atoi(analystId)
  138. authorIds = append(authorIds, id)
  139. }
  140. condition += " AND author_id in (" + utils.GetOrmReplaceHolder(len(authorIds)) + ")"
  141. pars = append(pars, authorIds)
  142. }
  143. sortCondition := " ORDER BY published_time "
  144. if sortType == "" {
  145. sortType = "DESC"
  146. }
  147. sortCondition = sortCondition + sortType
  148. total, err := models.GetMediaCountByCondition(models.Audio, condition, pars)
  149. if err != nil {
  150. br.Msg = "获取研报列表失败"
  151. br.ErrMsg = "获取研报列表统计失败,Err:" + err.Error()
  152. return
  153. }
  154. startSize := utils.StartIndex(currentIndex, pageSize)
  155. reportList, err := models.GetMediaByCondition(models.Audio, condition, sortCondition, pars, startSize, pageSize)
  156. if err != nil {
  157. br.Msg = "获取研报列表失败"
  158. br.ErrMsg = "获取研报列表失败,Err:" + err.Error()
  159. return
  160. }
  161. var reportViewList []*models.ESMedia
  162. for _, report := range reportList {
  163. reportView := report.ToView()
  164. reportViewList = append(reportViewList, reportView)
  165. }
  166. page := paging.GetPaging(currentIndex, pageSize, total)
  167. resp := new(response.MediaListResp)
  168. resp.List = reportViewList
  169. resp.Paging = page
  170. br.Ret = 200
  171. br.Success = true
  172. br.Data = resp
  173. br.Msg = "获取成功"
  174. }
  175. // VideoList
  176. // @Title 研报列表
  177. // @Description pdf研报列表
  178. // @Param PageSize query int true "每页数据条数"
  179. // @Param CurrentIndex query int true "当前页页码,从1开始"
  180. // @Param ClassifyIds query string true "二级分类id,可多选用英文,隔开"
  181. // @Param KeyWord query string true "报告标题/创建人"
  182. // @Param SortType query string true "排序方式"
  183. // @Success 200 {object} models.ReportAuthorResp
  184. // @router /videoList [get]
  185. func (this *MessageController) VideoList() {
  186. br := new(models.BaseResponse).Init()
  187. defer func() {
  188. this.Data["json"] = br
  189. this.ServeJSON()
  190. }()
  191. pageSize, _ := this.GetInt("PageSize")
  192. currentIndex, _ := this.GetInt("CurrentIndex")
  193. permissionIds := this.GetString("PermissionIds")
  194. analystIds := this.GetString("AnalystIds")
  195. sortType := this.GetString("SortType")
  196. KeyWord := this.GetString("KeyWord")
  197. var permissionCondition string
  198. var condition string
  199. var pars []interface{}
  200. if pageSize <= 0 {
  201. pageSize = utils.PageSize20
  202. }
  203. if currentIndex <= 0 {
  204. currentIndex = 1
  205. }
  206. if KeyWord != "" {
  207. condition += " AND media_name like '%" + KeyWord + "%'"
  208. }
  209. var permissionPars []interface{}
  210. if permissionIds != "" {
  211. permissionArr := strings.Split(permissionIds, ",")
  212. for _, permissionId := range permissionArr {
  213. perId, _ := strconv.Atoi(permissionId)
  214. permissionPars = append(permissionPars, perId)
  215. }
  216. permissionCondition += " AND permission_id in (" + utils.GetOrmReplaceHolder(len(permissionPars)) + ")"
  217. ids, err := models.GetMappingsByCondition(permissionCondition, permissionPars)
  218. if err != nil {
  219. condition += " AND id in (" + utils.GetOrmReplaceHolder(len(ids)) + ")"
  220. pars = append(pars, ids)
  221. }
  222. }
  223. if analystIds != "" {
  224. analystIdArr := strings.Split(analystIds, ",")
  225. var authorIds []int
  226. for _, analystId := range analystIdArr {
  227. id, _ := strconv.Atoi(analystId)
  228. authorIds = append(authorIds, id)
  229. }
  230. condition += " AND author_id in (" + utils.GetOrmReplaceHolder(len(authorIds)) + ")"
  231. pars = append(pars, authorIds)
  232. }
  233. sortCondition := " ORDER BY published_time "
  234. if sortType == "" {
  235. sortType = "DESC"
  236. }
  237. sortCondition = sortCondition + sortType
  238. total, err := models.GetMediaCountByCondition(models.Video, condition, pars)
  239. if err != nil {
  240. br.Msg = "获取研报列表失败"
  241. br.ErrMsg = "获取研报列表统计失败,Err:" + err.Error()
  242. return
  243. }
  244. startSize := utils.StartIndex(currentIndex, pageSize)
  245. List, err := models.GetMediaByCondition(models.Video, condition, sortCondition, pars, startSize, pageSize)
  246. if err != nil {
  247. br.Msg = "获取研报列表失败"
  248. br.ErrMsg = "获取研报列表失败,Err:" + err.Error()
  249. return
  250. }
  251. var reportViewList []*models.ESMedia
  252. for _, report := range List {
  253. reportView := report.ToView()
  254. reportViewList = append(reportViewList, reportView)
  255. }
  256. page := paging.GetPaging(currentIndex, pageSize, total)
  257. resp := new(response.MediaListResp)
  258. resp.List = reportViewList
  259. resp.Paging = page
  260. br.Ret = 200
  261. br.Success = true
  262. br.Data = resp
  263. br.Msg = "获取成功"
  264. }