smart_report_approval.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta/eta_hub/models"
  5. "eta/eta_hub/services"
  6. "eta/eta_hub/utils"
  7. "fmt"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. "strconv"
  10. "strings"
  11. "time"
  12. )
  13. // SmartReportController 智能研报
  14. type SmartReportController struct {
  15. BaseAuthController
  16. }
  17. // List
  18. // @Title 报告列表
  19. // @Description 报告列表
  20. // @Param PageSize query int true "每页数据条数"
  21. // @Param CurrentIndex query int true "当前页页码"
  22. // @Param TimeType query string false "筛选的时间类别: publish_time-发布时间, modify_time-更新时间"
  23. // @Param StartDate query string false "开始时间"
  24. // @Param EndDate query string false "结束时间"
  25. // @Param Frequency query string false "频度"
  26. // @Param ClassifyIdFirst query int false "一级分类ID"
  27. // @Param ClassifyIdSecond query int false "二级分类ID"
  28. // @Param State query int false "发布状态: 1-待发布; 2-已发布"
  29. // @Param Keyword query string false "搜索关键词"
  30. // @Success 200 {object} models.SmartReportListResp
  31. // @router /list [get]
  32. func (this *SmartReportController) List() {
  33. br := new(models.BaseResponse).Init()
  34. defer func() {
  35. if br.ErrMsg == "" {
  36. br.IsSendEmail = false
  37. }
  38. this.Data["json"] = br
  39. this.ServeJSON()
  40. }()
  41. type SmartReportListReq struct {
  42. PageSize int `form:"PageSize"`
  43. CurrentIndex int `form:"CurrentIndex"`
  44. TimeType string `form:"TimeType"`
  45. StartDate string `form:"StartDate"`
  46. EndDate string `form:"EndDate"`
  47. Frequency string `form:"Frequency"`
  48. ClassifyIdFirst int `form:"ClassifyIdFirst"`
  49. ClassifyIdSecond int `form:"ClassifyIdSecond"`
  50. State int `form:"State"`
  51. Keyword string `form:"Keyword"`
  52. }
  53. params := new(SmartReportListReq)
  54. if e := this.ParseForm(params); e != nil {
  55. br.Msg = "获取失败"
  56. br.ErrMsg = "入参解析失败, Err: " + e.Error()
  57. return
  58. }
  59. if params.TimeType == "" {
  60. params.TimeType = "publish_time"
  61. }
  62. if params.TimeType != "publish_time" && params.TimeType != "modify_time" {
  63. br.Msg = "请选择正确的时间类型"
  64. return
  65. }
  66. // 更新时间指的是内容更新时间
  67. if params.TimeType == "modify_time" {
  68. params.TimeType = "content_modify_time"
  69. }
  70. var condition string
  71. var pars []interface{}
  72. // 筛选项
  73. {
  74. keyword := strings.TrimSpace(params.Keyword)
  75. if keyword != "" {
  76. kw := fmt.Sprint("%", keyword, "%")
  77. condition += fmt.Sprintf(` AND (title LIKE ? OR admin_real_name LIKE ? OR last_modify_admin_name LIKE ?)`)
  78. pars = append(pars, kw, kw, kw)
  79. }
  80. if params.StartDate != "" && params.EndDate != "" {
  81. st := fmt.Sprintf("%s 00:00:00", params.StartDate)
  82. ed := fmt.Sprintf("%s 23:59:59", params.EndDate)
  83. condition += fmt.Sprintf(` AND %s >= ? AND %s <= ?`, params.TimeType, params.TimeType)
  84. pars = append(pars, st, ed)
  85. }
  86. if params.Frequency != "" {
  87. condition += ` AND frequency = ?`
  88. pars = append(pars, params.Frequency)
  89. }
  90. if params.ClassifyIdFirst > 0 {
  91. condition += ` AND classify_id_first = ?`
  92. pars = append(pars, params.ClassifyIdFirst)
  93. }
  94. if params.ClassifyIdSecond > 0 {
  95. condition += ` AND classify_id_second = ?`
  96. pars = append(pars, params.ClassifyIdSecond)
  97. }
  98. if params.State > 0 {
  99. condition += ` AND state = ?`
  100. pars = append(pars, params.State)
  101. }
  102. }
  103. resp := new(models.SmartReportListResp)
  104. reportOB := new(models.SmartReport)
  105. total, e := reportOB.GetCountByCondition(condition, pars)
  106. if e != nil {
  107. br.Msg = "获取失败"
  108. br.ErrMsg = "获取报告总数失败, Err:" + e.Error()
  109. return
  110. }
  111. if total <= 0 {
  112. page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
  113. resp.Paging = page
  114. br.Ret = 200
  115. br.Success = true
  116. br.Msg = "获取成功"
  117. br.Data = resp
  118. return
  119. }
  120. // 分页列表
  121. var startSize int
  122. if params.PageSize <= 0 {
  123. params.PageSize = utils.PageSize20
  124. }
  125. if params.CurrentIndex <= 0 {
  126. params.CurrentIndex = 1
  127. }
  128. startSize = utils.StartIndex(params.CurrentIndex, params.PageSize)
  129. // 列表查询过滤掉富文本内容
  130. fields := []string{
  131. "smart_report_id", "report_code", "classify_id_first", "classify_name_first", "classify_id_second", "classify_name_second", "add_type",
  132. "title", "abstract", "author", "frequency", "stage", "video_url", "video_name", "video_play_seconds", "video_size", "detail_img_url", "detail_pdf_url",
  133. "admin_id", "admin_real_name", "state", "publish_time", "pre_publish_time", "pre_msg_send", "msg_is_send", "msg_send_time", "create_time", "modify_time",
  134. "last_modify_admin_id", "last_modify_admin_name", "content_modify_time", "pv", "uv",
  135. }
  136. list, e := reportOB.GetPageItemsByCondition(condition, pars, fields, "", startSize, params.PageSize)
  137. if e != nil {
  138. br.Msg = "获取失败"
  139. br.ErrMsg = "获取报告分页列表失败, Err:" + e.Error()
  140. return
  141. }
  142. resp.List = list
  143. page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
  144. resp.Paging = page
  145. br.Ret = 200
  146. br.Success = true
  147. br.Msg = "获取成功"
  148. br.Data = resp
  149. }
  150. // Detail
  151. // @Title 详情
  152. // @Description 详情
  153. // @Param SmartReportId query int true "智能研报ID"
  154. // @Success 200 {object} models.SmartReportItem
  155. // @router /detail [get]
  156. func (this *SmartReportController) Detail() {
  157. br := new(models.BaseResponse).Init()
  158. defer func() {
  159. if br.ErrMsg == "" {
  160. br.IsSendEmail = false
  161. }
  162. this.Data["json"] = br
  163. this.ServeJSON()
  164. }()
  165. reportId, _ := this.GetInt("SmartReportId")
  166. if reportId <= 0 {
  167. br.Msg = "参数有误"
  168. br.ErrMsg = "报告ID有误"
  169. return
  170. }
  171. ob := new(models.SmartReport)
  172. item, e := ob.GetItemById(reportId)
  173. if e != nil {
  174. if e.Error() == utils.ErrNoRow() {
  175. br.Msg = "报告不存在, 请刷新页面"
  176. return
  177. }
  178. br.Msg = "操作失败"
  179. br.ErrMsg = "获取研报失败, Err: " + e.Error()
  180. return
  181. }
  182. // 报告状态 2待审核 3已驳回 4已审批
  183. if !utils.InArrayByInt([]int{models.SmartReportStatePublished, models.SmartReportStateRejected, models.SmartReportStateApprovaled}, item.State) {
  184. br.Msg = "报告状态错误"
  185. br.ErrMsg = "报告状态错误"
  186. return
  187. }
  188. resp := models.FormatSmartReport2Item(item)
  189. br.Ret = 200
  190. br.Success = true
  191. br.Msg = "获取成功"
  192. br.Data = resp
  193. }
  194. // Publish
  195. // @Title 发布/取消发布
  196. // @Description 发布/取消发布
  197. // @Param request body models.SmartReportPublishReq true "type json string"
  198. // @Success 200 string "操作成功"
  199. // @router /publish [post]
  200. func (this *SmartReportController) Publish() {
  201. br := new(models.BaseResponse).Init()
  202. defer func() {
  203. if br.ErrMsg == "" {
  204. br.IsSendEmail = false
  205. }
  206. this.Data["json"] = br
  207. this.ServeJSON()
  208. }()
  209. var req models.SmartReportPublishReq
  210. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  211. if err != nil {
  212. br.Msg = "参数解析异常!"
  213. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  214. return
  215. }
  216. if req.SmartReportIds == "" {
  217. br.Msg = "参数有误"
  218. br.ErrMsg = "报告ID为空"
  219. return
  220. }
  221. if req.PublishState != models.SmartReportStateRejected && req.PublishState != models.SmartReportStateApprovaled {
  222. br.Msg = "参数有误"
  223. return
  224. }
  225. reportArr := strings.Split(req.SmartReportIds, ",")
  226. for _, v := range reportArr {
  227. vint, err := strconv.Atoi(v)
  228. if err != nil {
  229. br.Msg = "参数错误"
  230. br.ErrMsg = "参数错误,Err:" + err.Error()
  231. return
  232. }
  233. ob := new(models.SmartReport)
  234. item, e := ob.GetItemById(vint)
  235. if e != nil {
  236. if e.Error() == utils.ErrNoRow() {
  237. br.Msg = "报告不存在, 请刷新页面"
  238. return
  239. }
  240. br.Msg = "操作失败"
  241. br.ErrMsg = "获取研报失败, Err: " + e.Error()
  242. return
  243. }
  244. cols := []string{"State", "ModifyTime"}
  245. item.State = req.PublishState
  246. item.ModifyTime = time.Now().Local()
  247. if e = item.Update(cols); e != nil {
  248. br.Msg = "操作失败"
  249. br.ErrMsg = "更新研报失败, Err: " + e.Error()
  250. return
  251. }
  252. // ES更新报告
  253. go func() {
  254. _ = services.SmartReportElasticUpsert(item.SmartReportId, req.PublishState)
  255. }()
  256. }
  257. br.Ret = 200
  258. br.Success = true
  259. br.Msg = "操作成功"
  260. }