report.go 10 KB

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