micro_roadshow.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package controllers
  2. import "hongze/hongze_mfyx/models"
  3. // 微路演 (查看留言详情,之前老的项目写到这个模块下了)
  4. type MicroRoadShowController struct {
  5. BaseAuthController
  6. }
  7. // @Title 模版消息留言详情
  8. // @Description 模版消息留言详情接口
  9. // @Param SourceId query int true "资源ID"
  10. // @Param SourceType query int true "留言类型,1:文章、2:活动、3:微路演视频、4:活动视频、5:活动音频"
  11. // @Success Ret=200 {object} models.CygxArticleCommentWxResp
  12. // @router /comment/detail [get]
  13. func (this *MicroRoadShowController) CommentDetail() {
  14. br := new(models.BaseResponse).Init()
  15. defer func() {
  16. this.Data["json"] = br
  17. this.ServeJSON()
  18. }()
  19. user := this.User
  20. if user == nil {
  21. br.Msg = "请登录"
  22. br.ErrMsg = "请登录,用户信息为空"
  23. br.Ret = 408
  24. return
  25. }
  26. sourceId, _ := this.GetInt("SourceId")
  27. sourceType, _ := this.GetInt("SourceType")
  28. resp := new(models.CygxArticleCommentWxResp)
  29. if sourceType == 1 || sourceType == 3 || sourceType == 4 || sourceType == 5 {
  30. detail, err := models.GetArticleCommentById(sourceId)
  31. if err != nil {
  32. br.Msg = "获取失败"
  33. br.ErrMsg = "获取用户权限失败, Err: " + err.Error()
  34. return
  35. }
  36. resp.Content = detail.Content
  37. if sourceType == 1 {
  38. resp.SourceId = detail.ArticleId
  39. resp.RedirectType = 1
  40. } else if sourceType == 3 {
  41. resp.SourceId = detail.IndustryId
  42. resp.RedirectType = 3
  43. } else {
  44. resp.SourceId = detail.ActivityId
  45. resp.RedirectType = 2
  46. }
  47. } else {
  48. detail, err := models.GetCygxActivityHelpAskById(sourceId)
  49. if err != nil {
  50. br.Msg = "获取失败"
  51. br.ErrMsg = "获取用户权限失败, Err: " + err.Error()
  52. return
  53. }
  54. resp.Content = detail.Content
  55. resp.SourceId = detail.ActivityId
  56. resp.RedirectType = 2
  57. }
  58. br.Ret = 200
  59. br.Success = true
  60. br.Data = resp
  61. br.Msg = "操作成功"
  62. return
  63. }