collection.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_cygx/models"
  6. "hongze/hongze_cygx/services"
  7. "hongze/hongze_cygx/utils"
  8. "time"
  9. )
  10. // Collection
  11. type CollectionController struct {
  12. BaseAuthController
  13. }
  14. // @Title 精选看板、路演banner列表
  15. // @Description 精选看板、路演banner列表接口
  16. // @Success Ret=200 {object} cygx.CollectionBannerListResp
  17. // @router /banner/list [get]
  18. func (this *CollectionController) BannerList() {
  19. br := new(models.BaseResponse).Init()
  20. defer func() {
  21. this.Data["json"] = br
  22. this.ServeJSON()
  23. }()
  24. user := this.User
  25. if user == nil {
  26. br.Msg = "请登录"
  27. br.ErrMsg = "请登录,SysUser Is Empty"
  28. br.Ret = 408
  29. return
  30. }
  31. resp := new(models.CollectionBannerListResp)
  32. var listA []*models.CollectionBannerResp
  33. listB := new(models.CollectionBannerResp)
  34. listA = []*models.CollectionBannerResp{
  35. &models.CollectionBannerResp{Title: "", IndexImg: "https://hzstatic.hzinsights.com/cygx/banner/xcx/lyhf.png", Path: "/activityPages/themeActivity/themeActivitytitle=1&type=专家电话会&id=&whichDay=&permissionIds=&showJurisdiction="},
  36. }
  37. listB.Title = ""
  38. listB.IndexImg = "https://hzstatic.hzinsights.com/cygx/banner/xcx/jxkb.png"
  39. listB.IsShowSustainable = true
  40. resp.ListA = listA
  41. resp.ListB = listB
  42. br.Ret = 200
  43. br.Success = true
  44. br.Msg = "获取成功"
  45. br.Data = resp
  46. }
  47. // @Title 精选看板跳转详情地址
  48. // @Description 精选看板跳转详情地址接口
  49. // @Success Ret=200 {object} cygx.CollectionBannerListResp
  50. // @router /detail [get]
  51. func (this *CollectionController) Detail() {
  52. br := new(models.BaseResponse).Init()
  53. defer func() {
  54. this.Data["json"] = br
  55. this.ServeJSON()
  56. }()
  57. user := this.User
  58. if user == nil {
  59. br.Msg = "请登录"
  60. br.ErrMsg = "请登录,SysUser Is Empty"
  61. br.Ret = 408
  62. return
  63. }
  64. resp := new(models.CollectionDetailResp)
  65. if user.Mobile != "" {
  66. userTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
  67. resp.HttpUrl = utils.COLLECTIONS_INFO_HTTP_URL + "?token=" + userTokenByMobile
  68. } else {
  69. resp.HttpUrl = utils.COLLECTIONS_INFO_HTTP_URL
  70. }
  71. br.Ret = 200
  72. br.Success = true
  73. br.Msg = "获取成功"
  74. br.Data = resp
  75. }
  76. // @Title 提交精选看板申请接口
  77. // @Description 提交精选看板申请接口
  78. // @Param request body cygx.CygxBannerIdReq true "type json string"
  79. // @Success 200 Ret=200 提交成功
  80. // @router /apply/add [post]
  81. func (this *CollectionController) ApplyAdd() {
  82. br := new(models.BaseResponse).Init()
  83. defer func() {
  84. this.Data["json"] = br
  85. this.ServeJSON()
  86. }()
  87. user := this.User
  88. if user == nil {
  89. br.Msg = "请登录"
  90. br.ErrMsg = "请登录,用户信息为空"
  91. br.Ret = 408
  92. return
  93. }
  94. var req models.ApplyCollectionReq
  95. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  96. if err != nil {
  97. br.Msg = "参数解析异常!"
  98. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  99. return
  100. }
  101. content := req.Content
  102. if content == "" {
  103. br.Msg = "内容不能为空"
  104. br.ErrMsg = "内容不能为空"
  105. return
  106. }
  107. item := new(models.CygxApplyCollection)
  108. item.UserId = user.UserId
  109. item.CreateTime = time.Now()
  110. item.ModifyTime = time.Now()
  111. item.Mobile = user.Mobile
  112. item.Email = user.Email
  113. item.CompanyId = user.CompanyId
  114. item.CompanyName = user.CompanyName
  115. item.Content = content
  116. item.RegisterPlatform = utils.REGISTER_PLATFORM
  117. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  118. if err != nil && err.Error() != utils.ErrNoRow() {
  119. return
  120. }
  121. item.RealName = user.RealName
  122. if sellerItem != nil {
  123. item.SellerName = sellerItem.RealName
  124. }
  125. newId, err := models.AddCygxApplyCollection(item)
  126. fmt.Println(newId)
  127. //err = services.AddCygxBannerYxSurvey(user, content)
  128. //services.SendCygxBannerYxSurveyTemplateMsg(user, content, int(newId))
  129. if err != nil {
  130. br.Msg = "申请失败"
  131. br.ErrMsg = "申请失败,Err:" + err.Error()
  132. return
  133. }
  134. br.Ret = 200
  135. br.Success = true
  136. br.Msg = "记录成功"
  137. }
  138. // @Title 获取申请详情
  139. // @Description 获取申请详情接口
  140. // @Param ApplyCollectionId query int true "ID"
  141. // @Success Ret=200 {object} cygx.CygxApplyCollectionDetailResp
  142. // @router /apply/detail [get]
  143. func (this *CollectionController) ApplyDetail() {
  144. br := new(models.BaseResponse).Init()
  145. defer func() {
  146. this.Data["json"] = br
  147. this.ServeJSON()
  148. }()
  149. user := this.User
  150. if user == nil {
  151. br.Msg = "请登录"
  152. br.ErrMsg = "请登录,用户信息为空"
  153. br.Ret = 408
  154. return
  155. }
  156. resp := new(models.CygxApplyCollectionDetailResp)
  157. applyCollectionId, _ := this.GetInt("ApplyCollectionId")
  158. if applyCollectionId < 1 {
  159. br.Msg = "请输入详情ID"
  160. return
  161. }
  162. detail, err := models.GetCygxApplyCollectionDetail(applyCollectionId)
  163. if err != nil {
  164. br.Msg = "详情不存在"
  165. br.ErrMsg = "获取失败,Err:" + err.Error()
  166. return
  167. }
  168. resp.Detail = detail
  169. br.Ret = 200
  170. br.Success = true
  171. br.Msg = "获取成功"
  172. br.Data = resp
  173. }