report.go 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. package controllers
  2. import (
  3. "hongze/hongze_api/models"
  4. "hongze/hongze_api/utils"
  5. "html"
  6. "strings"
  7. "time"
  8. )
  9. //报告
  10. type ReportController struct {
  11. BaseAuthController
  12. }
  13. // @Title 日评详情
  14. // @Description 日评详情接口
  15. // @Param ReportId query int true "报告id"
  16. // @Success 200 {object} models.ReportDetailResp
  17. // @router /detail [get]
  18. func (this *ReportController) Detail() {
  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 = "请登录,用户信息为空"
  28. br.Ret = 408
  29. return
  30. }
  31. var status int
  32. var msg string
  33. reportId, err := this.GetInt("ReportId")
  34. if err != nil {
  35. br.Msg = "参数获取失败"
  36. br.ErrMsg = "参数获取失败,Err:" + err.Error()
  37. return
  38. }
  39. if reportId <= 0 {
  40. br.Msg = "参数错误"
  41. br.ErrMsg = "参数错误,报告id小于等于0"
  42. return
  43. }
  44. report, err := models.GetReportById(reportId)
  45. if err != nil {
  46. br.Msg = "获取报告详情失败"
  47. br.ErrMsg = "获取报告详情失败,Err:" + err.Error()
  48. return
  49. }
  50. if report == nil {
  51. status = 1
  52. msg = "报告不存在"
  53. }
  54. report.ContentSub = html.UnescapeString(report.ContentSub)
  55. report.Content = html.UnescapeString(report.Content)
  56. company, err := models.GetCompanyById(user.CompanyId)
  57. if err != nil && err.Error() != utils.ErrNoRow() {
  58. if err.Error() != utils.ErrNoRow() {
  59. br.Msg = "获取报告详情失败"
  60. br.ErrMsg = "获取用户管理企业信息失败,Err:" + err.Error()
  61. return
  62. } else {
  63. status = 2
  64. msg = "您还未开通权限,如有需要请联系对口销售"
  65. report.Content = report.ContentSub
  66. }
  67. }
  68. if company == nil {
  69. status = 2
  70. msg = "您还未开通权限,如有需要请联系对口销售"
  71. report.Content = report.ContentSub
  72. } else {
  73. if company.CompanyType == 3 || company.CompanyType == 4 {
  74. status = 2
  75. msg = "您还未开通权限,如有需要请联系对口销售"
  76. report.Content = report.ContentSub
  77. }
  78. }
  79. reportType := "rddp"
  80. reportPermissionList, err := models.GetReportVarietyListByUserIdExt(user.UserId, reportType)
  81. if err != nil {
  82. if err.Error() != utils.ErrNoRow() {
  83. br.Msg = "获取报告详情失败"
  84. br.ErrMsg = "获取用户管理企业信息失败,Err:" + err.Error()
  85. return
  86. } else {
  87. status = 2
  88. msg = "您还未开通权限,如有需要请联系对口销售"
  89. report.Content = report.ContentSub
  90. }
  91. }
  92. permissionMap := make(map[int]int)
  93. for _, v := range reportPermissionList {
  94. if _, ok := permissionMap[v.ReportChapterTypeId]; !ok {
  95. permissionMap[v.ReportChapterTypeId] = v.ReportChapterTypeId
  96. }
  97. }
  98. if _, ok := permissionMap[reportId]; !ok {
  99. tips := ""
  100. status = 2
  101. report.Content = report.ContentSub
  102. classifyNameSecond := report.ClassifyNameSecond
  103. if strings.Contains(classifyNameSecond, "宏观商品复盘") ||
  104. strings.Contains(classifyNameSecond, "股债日评") ||
  105. strings.Contains(classifyNameSecond, "每日经济数据备忘录") {
  106. tips = "宏观"
  107. } else if strings.Contains(classifyNameSecond, "知白守黑日评") ||
  108. strings.Contains(classifyNameSecond, "动力煤数据点评") {
  109. tips = "黑色"
  110. } else if strings.Contains(classifyNameSecond, "化里化外日评") ||
  111. strings.Contains(classifyNameSecond, "EIA原油库存点评") ||
  112. strings.Contains(classifyNameSecond, "苯乙烯数据点评") ||
  113. strings.Contains(classifyNameSecond, "聚酯数据点评") {
  114. tips = "化工"
  115. } else if strings.Contains(classifyNameSecond, "有声有色日度闲篇") {
  116. tips = "有色"
  117. }
  118. msg = "您还未开通" + tips + "权限,如有需要请联系对口销售"
  119. }
  120. resp := new(models.ReportDetailResp)
  121. resp.Status = status
  122. resp.Msg = msg
  123. resp.Report = report
  124. //新增阅读记录
  125. if status == 0 {
  126. record := new(models.ReportViewRecord)
  127. record.UserId = user.UserId
  128. record.ReportId = reportId
  129. record.CreateTime = time.Now()
  130. err = models.AddReportViewRecord(record)
  131. if err != nil {
  132. go utils.SendEmail(utils.APPNAME+"失败提醒", "新增报告阅读记录失败:Err:"+err.Error(), utils.EmailSendToUsers)
  133. }
  134. }
  135. br.Ret = 200
  136. br.Success = true
  137. br.Msg = "获取成功"
  138. br.Data = resp
  139. }
  140. // @Title 日评列表
  141. // @Description 日评列表接口
  142. // @Param PageSize query int true "每页数据条数"
  143. // @Param CurrentIndex query int true "当前页页码,从1开始"
  144. // @Param ClassifyId query int true "分类id"
  145. // @Success 200 {object} models.ReportListResp
  146. // @router /list [get]
  147. func (this *ReportController) ListReport() {
  148. br := new(models.BaseResponse).Init()
  149. defer func() {
  150. this.Data["json"] = br
  151. this.ServeJSON()
  152. }()
  153. user := this.User
  154. if user == nil {
  155. br.Msg = "请登录"
  156. br.ErrMsg = "请登录,用户信息为空"
  157. br.Ret = 408
  158. return
  159. }
  160. pageSize, _ := this.GetInt("PageSize")
  161. currentIndex, _ := this.GetInt("CurrentIndex")
  162. classifyId, _ := this.GetInt("ClassifyId")
  163. if classifyId <= 0 {
  164. br.Msg = "参数错误"
  165. br.ErrMsg = "参数错误,分类id小于等于0"
  166. return
  167. }
  168. var startSize int
  169. if pageSize <= 0 {
  170. pageSize = utils.PageSize20
  171. }
  172. if currentIndex <= 0 {
  173. currentIndex = 1
  174. }
  175. startSize = utils.StartIndex(currentIndex, pageSize)
  176. total, err := models.GetReportListCount(classifyId)
  177. if err != nil {
  178. br.Msg = "获取数据失败"
  179. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  180. return
  181. }
  182. list, err := models.GetReportList(classifyId, startSize, pageSize)
  183. if err != nil {
  184. br.Msg = "获取失败"
  185. br.ErrMsg = "获取失败,Err:" + err.Error()
  186. return
  187. }
  188. listLen := len(list)
  189. for i := 0; i < listLen; i++ {
  190. item := list[i]
  191. list[i].Content = html.UnescapeString(item.Content)
  192. list[i].ContentSub = html.UnescapeString(item.ContentSub)
  193. count, err := models.GetReportPermission(user.UserId, item.ClassifyNameSecond)
  194. if err != nil {
  195. br.Msg = "获取失败"
  196. br.ErrMsg = "判断报告是否拥有权限失败,Err:" + err.Error()
  197. return
  198. }
  199. if count > 0 {
  200. list[i].HasPermission = 1
  201. }
  202. }
  203. page := models.GetPaging(currentIndex, pageSize, total)
  204. resp := new(models.ReportListResp)
  205. resp.Paging = page
  206. resp.List = list
  207. br.Ret = 200
  208. br.Success = true
  209. br.Msg = "获取成功"
  210. br.Data = resp
  211. }
  212. // @Title 新增报告浏览记录
  213. // @Description 新增报告浏览记录接口
  214. // @Param ReportId query int true "报告id"
  215. // @Success 200 新增成功
  216. // @router /addUpdateLabel [post]
  217. func (this *ReportController) AddUpdateLabelReport() {
  218. br := new(models.BaseResponse).Init()
  219. defer func() {
  220. this.Data["json"] = br
  221. this.ServeJSON()
  222. }()
  223. user := this.User
  224. if user == nil {
  225. br.Msg = "请登录"
  226. br.ErrMsg = "请登录,用户信息为空"
  227. br.Ret = 408
  228. return
  229. }
  230. reportId, err := this.GetInt("ReportId")
  231. if err != nil {
  232. br.Msg = "参数获取失败"
  233. br.ErrMsg = "参数获取失败,Err:" + err.Error()
  234. return
  235. }
  236. if reportId <= 0 {
  237. br.Msg = "参数错误"
  238. br.ErrMsg = "参数错误,报告id小于等于0"
  239. return
  240. }
  241. record := new(models.ReportViewLog)
  242. record.UserId = user.UserId
  243. record.ReportId = reportId
  244. record.CreateTime = time.Now()
  245. err = models.AddReportViewLog(record)
  246. if err != nil {
  247. br.Msg = "获取数据失败"
  248. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  249. return
  250. }
  251. br.Ret = 200
  252. br.Success = true
  253. br.Msg = "新增成功"
  254. }
  255. // @Title 新增报告浏览记录
  256. // @Description 新增报告浏览记录接口
  257. // @Param ReportId query int true "报告id"
  258. // @Success 200 新增成功
  259. // @router /addViewRecord [post]
  260. func (this *ReportController) AddViewRecordReport() {
  261. br := new(models.BaseResponse).Init()
  262. defer func() {
  263. this.Data["json"] = br
  264. this.ServeJSON()
  265. }()
  266. user := this.User
  267. if user == nil {
  268. br.Msg = "请登录"
  269. br.ErrMsg = "请登录,用户信息为空"
  270. br.Ret = 408
  271. return
  272. }
  273. reportId, err := this.GetInt("ReportId")
  274. if err != nil {
  275. br.Msg = "参数获取失败"
  276. br.ErrMsg = "参数获取失败,Err:" + err.Error()
  277. return
  278. }
  279. if reportId <= 0 {
  280. br.Msg = "参数错误"
  281. br.ErrMsg = "参数错误,报告id小于等于0"
  282. return
  283. }
  284. record := new(models.ReportViewRecord)
  285. record.UserId = user.UserId
  286. record.ReportId = reportId
  287. record.CreateTime = time.Now()
  288. err = models.AddReportViewRecord(record)
  289. if err != nil {
  290. br.Msg = "获取数据失败"
  291. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  292. return
  293. }
  294. br.Ret = 200
  295. br.Success = true
  296. br.Msg = "新增成功"
  297. }
  298. // @Title 新增音频阅读记录
  299. // @Description 新增音频阅读记录接口
  300. // @Param ReportId query int true "报告id"
  301. // @Success 200 新增成功
  302. // @router /addAudioRecord [post]
  303. func (this *ReportController) AddAudioRecord() {
  304. br := new(models.BaseResponse).Init()
  305. defer func() {
  306. this.Data["json"] = br
  307. this.ServeJSON()
  308. }()
  309. user := this.User
  310. if user == nil {
  311. br.Msg = "请登录"
  312. br.ErrMsg = "请登录,用户信息为空"
  313. br.Ret = 408
  314. return
  315. }
  316. reportId, err := this.GetInt("ReportId")
  317. if err != nil {
  318. br.Msg = "参数获取失败"
  319. br.ErrMsg = "参数获取失败,Err:" + err.Error()
  320. return
  321. }
  322. if reportId <= 0 {
  323. br.Msg = "参数错误"
  324. br.ErrMsg = "参数错误,报告id小于等于0"
  325. return
  326. }
  327. record := new(models.ReportAudioRecord)
  328. record.UserId = user.UserId
  329. record.ReportId = reportId
  330. record.CreateTime = time.Now()
  331. err = models.AddReportAudioRecord(record)
  332. if err != nil {
  333. br.Msg = "获取数据失败"
  334. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  335. return
  336. }
  337. br.Ret = 200
  338. br.Success = true
  339. br.Msg = "新增成功"
  340. }