research.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "hongze/hongze_clpt/models"
  6. "hongze/hongze_clpt/services"
  7. "hongze/hongze_clpt/utils"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type MobileResearchController struct {
  13. BaseAuthMobileController
  14. }
  15. // @Title 研选文章类型列表
  16. // @Description 研选文章类型列表接口
  17. // @Success 200 {object} models.CygxArticleTypeListResp
  18. // @router /article/typeList [get]
  19. func (this *MobileResearchController) ArticleType() {
  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.Ret = 408
  29. return
  30. }
  31. key := utils.YAN_XUAN_TAB_KEY
  32. conf, e := models.GetConfigByCode(key)
  33. if e != nil {
  34. br.Msg = "获取失败"
  35. br.ErrMsg = "获取首页头部导航失败, Err: " + e.Error()
  36. return
  37. }
  38. if conf.ConfigValue == "" {
  39. br.Msg = "获取失败"
  40. br.ErrMsg = "首页头部导航配置值有误"
  41. return
  42. }
  43. list := new(models.CygxArticleTypeListResp)
  44. if e = json.Unmarshal([]byte(conf.ConfigValue), &list); e != nil {
  45. br.Msg = "获取失败"
  46. br.ErrMsg = "首页头部导航配置值解析失败, Err: " + e.Error()
  47. return
  48. }
  49. resp := new(models.CygxArticleTypeListResp)
  50. resp = list
  51. br.Ret = 200
  52. br.Success = true
  53. br.Msg = "获取成功"
  54. br.Data = resp
  55. }
  56. // @Title 研选最新报告列表
  57. // @Description 研选最新报告列表接口
  58. // @Param PageSize query int true "每页数据条数"
  59. // @Param CurrentIndex query int true "当前页页码,从1开始"
  60. // @Param ArticleTypeIds query array true "文章类型ID多个用 , 隔开"
  61. // @Success 200 {object} models.IndustrialManagementNewList
  62. // @router /article/newList [get]
  63. func (this *MobileResearchController) ArticleNewList() {
  64. br := new(models.BaseResponse).Init()
  65. defer func() {
  66. this.Data["json"] = br
  67. this.ServeJSON()
  68. }()
  69. user := this.User
  70. if user == nil {
  71. br.Msg = "请重新登录"
  72. br.Ret = 408
  73. return
  74. }
  75. pageSize, _ := this.GetInt("PageSize")
  76. currentIndex, _ := this.GetInt("CurrentIndex")
  77. articleTypeIds := this.GetString("ArticleTypeIds")
  78. var startSize int
  79. if pageSize <= 0 {
  80. pageSize = utils.PageSize20
  81. }
  82. if currentIndex <= 0 {
  83. currentIndex = 1
  84. }
  85. startSize = paging.StartIndex(currentIndex, pageSize)
  86. var condition string
  87. var conditiontype string
  88. var pars []interface{}
  89. condition = ` AND publish_status = 1 `
  90. if articleTypeIds == "" || strings.Contains(articleTypeIds, "999") {
  91. conditiontype = " AND is_show_yanx = 1 "
  92. } else {
  93. conditiontype = ` AND group_id IN (` + articleTypeIds + `) `
  94. }
  95. listType, err := models.GetCygxArticleTypeListCondition(conditiontype)
  96. if err != nil {
  97. br.Msg = "获取信息失败"
  98. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  99. return
  100. }
  101. needYanxuanSpecial := true
  102. if articleTypeIds != "" && !strings.Contains(articleTypeIds, "999") {
  103. needYanxuanSpecial = false
  104. }
  105. //只勾选了研选专栏时去掉文章的统计
  106. if articleTypeIds == "999" {
  107. condition += ` AND 1<0 `
  108. }
  109. articleTypeIds = ""
  110. for _, v := range listType {
  111. articleTypeIds += strconv.Itoa(v.ArticleTypeId) + ","
  112. }
  113. articleTypeIds = strings.TrimRight(articleTypeIds, ",")
  114. condition += ` AND a.article_type_id IN (` + articleTypeIds + `) `
  115. total, err := models.GetArticleResearchCount(condition, pars, needYanxuanSpecial)
  116. if err != nil {
  117. br.Msg = "获取信息失败"
  118. br.ErrMsg = "GetArticleResearchCount,Err:" + err.Error()
  119. return
  120. }
  121. list, err := models.GetArticleResearchListYx(condition, pars, startSize, pageSize, user.UserId, needYanxuanSpecial)
  122. if err != nil {
  123. br.Msg = "获取信息失败"
  124. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  125. return
  126. }
  127. list, err = services.HandleArticleCategoryImg(list, user)
  128. if err != nil {
  129. br.Msg = "获取信息失败"
  130. br.ErrMsg = "HandleArticleCategoryImg,Err:" + err.Error()
  131. return
  132. }
  133. //处理对应的文章类型标签按钮
  134. nameMap, styleMap, err := services.GetArticleTypeMap()
  135. if err != nil {
  136. br.Msg = "获取信息失败"
  137. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  138. return
  139. }
  140. page := paging.GetPaging(currentIndex, pageSize, total)
  141. resp := new(models.ArticleResearchListResp)
  142. for _, v := range list {
  143. item := models.ArticleResearchResp{
  144. ArticleId: v.ArticleId,
  145. ArticleTypeId: v.ArticleTypeId,
  146. Title: v.Title,
  147. PublishDate: v.PublishDate,
  148. DepartmentId: v.DepartmentId,
  149. NickName: v.NickName,
  150. IsCollect: v.IsCollect,
  151. Pv: v.Pv,
  152. CollectNum: v.CollectNum,
  153. Abstract: v.Abstract,
  154. Annotation: v.Annotation,
  155. ImgUrlPc: v.ImgUrlPc,
  156. ArticleTypeName: nameMap[v.ArticleTypeId],
  157. ButtonStyle: styleMap[v.ArticleTypeId],
  158. List: v.List,
  159. SpecialColumnId: v.SpecialColumnId,
  160. TopTime: v.TopTime,
  161. }
  162. if v.IsSpecial == 1 {
  163. //去除图片标签
  164. item.Annotation = utils.ArticleRemoveImgUrl(item.Annotation)
  165. item.Annotation, err = utils.ExtractText(item.Annotation)
  166. item.IsSpecial = true
  167. item.ImgUrlPc = utils.CYGX_YANXUAN_SPECIAL_IMG_PC
  168. if v.CompanyTags != "" {
  169. item.CompanyTags = strings.Split(v.CompanyTags, ",")
  170. } else {
  171. item.CompanyTags = []string{}
  172. }
  173. if v.IndustryTags != "" {
  174. item.IndustryTags = strings.Split(v.IndustryTags, ",")
  175. } else {
  176. item.IndustryTags = []string{}
  177. }
  178. item.ArticleTypeName = utils.CYGX_YANXUAN_SPECIAL
  179. if v.SpecialType == 1 {
  180. item.Title = "【笔记】" + item.Title
  181. } else if v.SpecialType == 2 {
  182. item.Title = "【观点】" + item.Title
  183. }
  184. if v.MyCollectNum > 0 {
  185. item.IsCollect = true
  186. }
  187. }
  188. if item.ArticleTypeName == "纪要" || item.ArticleTypeName == "沙龙" || item.ArticleTypeName == "专家访谈" {
  189. item.Annotation = "核心结论:" + item.Annotation
  190. } else if !item.IsSpecial {
  191. item.Annotation = "核心观点:" + item.Annotation
  192. }
  193. resp.List = append(resp.List, &item)
  194. }
  195. resp.Paging = page
  196. br.Ret = 200
  197. br.Success = true
  198. br.Msg = "获取成功"
  199. br.Data = resp
  200. }
  201. // @Title KOL榜列表
  202. // @Description KOL榜列表接口
  203. // @Param PageSize query int true "每页数据条数"
  204. // @Param CurrentIndex query int true "当前页页码,从1开始"
  205. // @Param ThemeType query int true "主题类型,1关注度、2更新时间 "
  206. // @Success 200 {object} models.DepartmentListResp
  207. // @router /kolList [get]
  208. func (this *MobileResearchController) KolList() {
  209. br := new(models.BaseResponse).Init()
  210. defer func() {
  211. this.Data["json"] = br
  212. this.ServeJSON()
  213. }()
  214. user := this.User
  215. if user == nil {
  216. br.Msg = "请重新登录"
  217. br.Ret = 408
  218. return
  219. }
  220. themeType, _ := this.GetInt("ThemeType")
  221. pageSize, _ := this.GetInt("PageSize")
  222. currentIndex, _ := this.GetInt("CurrentIndex")
  223. var startSize int
  224. if pageSize <= 0 {
  225. pageSize = utils.PageSize15
  226. }
  227. if currentIndex <= 0 {
  228. currentIndex = 1
  229. }
  230. startSize = utils.StartIndex(currentIndex, pageSize)
  231. total, err := models.GetDepartmentlistCount("")
  232. if err != nil {
  233. br.Msg = "获取失败"
  234. br.ErrMsg = "获取失败,Err:" + err.Error()
  235. return
  236. }
  237. var condition string
  238. var conditionOrder string
  239. if themeType == 2 {
  240. conditionOrder = `ORDER BY publish_date DESC `
  241. } else {
  242. conditionOrder = `ORDER BY sum_num DESC `
  243. }
  244. list, err := models.GetDepartmentList(condition, conditionOrder, user.UserId, startSize, pageSize)
  245. if err != nil {
  246. br.Msg = "获取信息失败"
  247. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  248. return
  249. }
  250. listIndustrial, err := models.GetIndustrialDepartmentList()
  251. if err != nil {
  252. br.Msg = "获取信息失败"
  253. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  254. return
  255. }
  256. mapHot := make(map[int]bool)
  257. //if themeType == 2 {
  258. conditionHot := `ORDER BY sum_num DESC `
  259. listhot, err := models.GetDepartmentList(condition, conditionHot, user.UserId, 0, 3)
  260. if err != nil {
  261. br.Msg = "获取信息失败"
  262. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  263. return
  264. }
  265. for _, v := range listhot {
  266. mapHot[v.DepartmentId] = true
  267. }
  268. //}
  269. departmentMap := make(map[string]string)
  270. for k, v := range list {
  271. if v.FllowNum > 0 {
  272. list[k].IsFollow = true
  273. }
  274. list[k].IsHot = mapHot[v.DepartmentId]
  275. list[k].PublishDate = utils.StrTimeToTime(v.PublishDate).Format(utils.FormatDate) //时间字符串格式转时间格式
  276. for _, v2 := range listIndustrial {
  277. if v2.DepartmentId == v.DepartmentId {
  278. if departmentMap["D"+strconv.Itoa(v2.DepartmentId)+"In"+strconv.Itoa(v2.IndustrialManagementId)] == "" && len(list[k].List) < 4 {
  279. list[k].List = append(list[k].List, v2)
  280. departmentMap["D"+strconv.Itoa(v2.DepartmentId)+"In"+strconv.Itoa(v2.IndustrialManagementId)] = v.NickName
  281. }
  282. }
  283. }
  284. }
  285. resp := new(models.DepartmentListResp)
  286. page := paging.GetPaging(currentIndex, pageSize, total)
  287. resp.Paging = page
  288. resp.List = list
  289. br.Ret = 200
  290. br.Success = true
  291. br.Msg = "获取成功"
  292. br.Data = resp
  293. }
  294. // @Title 主题热度/近期更新更多,列表
  295. // @Description 主题热度/近期更新更多,列表接口
  296. // @Param ThemeType query int true "主题类型,1主题热度、2近期更新 默认1"
  297. // @Param PageSize query int true "每页数据条数"
  298. // @Param CurrentIndex query int true "当前页页码,从1开始"
  299. // @Success 200 {object} models.IndustrialManagementHotListResp
  300. // @router /hotList [get]
  301. func (this *MobileResearchController) HotList() {
  302. br := new(models.BaseResponse).Init()
  303. defer func() {
  304. this.Data["json"] = br
  305. this.ServeJSON()
  306. }()
  307. user := this.User
  308. if user == nil {
  309. br.Msg = "请重新登录"
  310. br.Ret = 408
  311. return
  312. }
  313. themeType, _ := this.GetInt("ThemeType")
  314. pageSize, _ := this.GetInt("PageSize")
  315. currentIndex, _ := this.GetInt("CurrentIndex")
  316. var startSize int
  317. if pageSize <= 0 {
  318. pageSize = utils.PageSize15
  319. }
  320. if currentIndex <= 0 {
  321. currentIndex = 1
  322. }
  323. startSize = utils.StartIndex(currentIndex, pageSize)
  324. var condition string
  325. var conditionOrder string
  326. articleTypeIds, err := services.GetYanXuanArticleTypeIds()
  327. if err != nil {
  328. br.Msg = "获取信息失败"
  329. br.ErrMsg = "GetYanXuanArticleTypeIds,Err:" + err.Error()
  330. return
  331. }
  332. if articleTypeIds == "" {
  333. br.Msg = "获取信息失败"
  334. br.ErrMsg = "研选分类ID不能为空"
  335. return
  336. }
  337. condition = ` AND a.article_type_id IN (` + articleTypeIds + `) `
  338. if themeType == 2 {
  339. conditionOrder = `ORDER BY publish_date DESC `
  340. } else {
  341. conditionOrder = `ORDER BY sum_num DESC `
  342. }
  343. total, err := models.GetThemeHeatListCount(condition)
  344. if err != nil {
  345. br.Msg = "获取失败"
  346. br.ErrMsg = "获取失败,Err:" + err.Error()
  347. return
  348. }
  349. list, err := models.GetThemeHeatList(user.UserId, condition, conditionOrder, startSize, pageSize)
  350. if err != nil {
  351. br.Msg = "获取信息失败"
  352. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  353. return
  354. }
  355. followTypeMap := services.GetCygxIndustryFllowListTypeMapByMobile(user.Mobile) // 关注的对应状态
  356. listSubjcet, err := models.GetThemeHeatSubjectList(condition)
  357. if err != nil {
  358. br.Msg = "获取信息失败"
  359. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  360. return
  361. }
  362. mapHot := make(map[int]bool)
  363. mapNew, err := services.GetYanXuanIndustrialManagementIdNewMap(articleTypeIds)
  364. if err != nil {
  365. br.Msg = "获取信息失败"
  366. br.ErrMsg = "GetYanXuanIndustrialManagementIdNewMap,Err:" + err.Error()
  367. return
  368. }
  369. //if themeType == 2 {
  370. mapHot, err = services.GetYanXuanIndustrialManagementIdHotMap(articleTypeIds)
  371. if err != nil {
  372. br.Msg = "获取信息失败"
  373. br.ErrMsg = "GetYanXuanIndustrialManagementIdNewMap,Err:" + err.Error()
  374. return
  375. }
  376. //}
  377. for k, v := range list {
  378. list[k].IsNew = mapNew[v.IndustrialManagementId]
  379. list[k].IsHot = mapHot[v.IndustrialManagementId]
  380. list[k].PublishDate = utils.StrTimeToTime(v.PublishDate).Format(utils.FormatDate) //时间字符串格式转时间格式
  381. if v.FllowNum > 0 {
  382. list[k].IsFollow = true
  383. }
  384. list[k].FollowType = followTypeMap[v.IndustrialManagementId]
  385. for _, v2 := range listSubjcet {
  386. if v2.IndustrialManagementId == v.IndustrialManagementId {
  387. list[k].IndustrialSubjectList = append(list[k].IndustrialSubjectList, v2)
  388. }
  389. }
  390. }
  391. page := paging.GetPaging(currentIndex, pageSize, total)
  392. resp := new(models.IndustrialManagementHotListResp)
  393. resp.Paging = page
  394. resp.List = list
  395. br.Ret = 200
  396. br.Success = true
  397. br.Msg = "获取成功"
  398. br.Data = resp
  399. }
  400. // @Title 主题详情
  401. // @Description 主题详情接口
  402. // @Param IndustrialManagementId query int true "分类ID"
  403. // @Success 200 {object} models.GetThemeDetailResp
  404. // @router /theme/detail [get]
  405. func (this *MobileResearchController) ThemeDetail() {
  406. br := new(models.BaseResponse).Init()
  407. defer func() {
  408. this.Data["json"] = br
  409. this.ServeJSON()
  410. }()
  411. user := this.User
  412. if user == nil {
  413. br.Msg = "请重新登录"
  414. br.Ret = 408
  415. return
  416. }
  417. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  418. if industrialManagementId < 1 {
  419. br.Msg = "请输入产业ID"
  420. return
  421. }
  422. detailIndustrial, err := models.GetIndustrialManagementDetail(industrialManagementId)
  423. if err != nil {
  424. br.Msg = "获取信息失败"
  425. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  426. return
  427. }
  428. var condition string
  429. articleTypeIds, err := services.GetYanXuanArticleTypeIds()
  430. if err != nil {
  431. br.Msg = "获取信息失败"
  432. br.ErrMsg = "GetYanXuanArticleTypeIds,Err:" + err.Error()
  433. return
  434. }
  435. if articleTypeIds != "" {
  436. condition = ` AND a.article_type_id IN (` + articleTypeIds + `) `
  437. } else {
  438. br.Msg = "获取信息失败"
  439. br.ErrMsg = "研选分类ID不能为空"
  440. return
  441. }
  442. resp := new(models.GetThemeDetailResp)
  443. list, err := models.GetThemeDetail(user.UserId, industrialManagementId, condition)
  444. if err != nil {
  445. br.Msg = "获取信息失败"
  446. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  447. return
  448. }
  449. list, err = services.HandleArticleCategoryImg(list, user)
  450. if err != nil {
  451. br.Msg = "获取信息失败"
  452. br.ErrMsg = "HandleArticleCategoryImg,Err:" + err.Error()
  453. return
  454. }
  455. //处理对应的文章类型标签按钮
  456. nameMap, styleMap, err := services.GetArticleTypeMap()
  457. if err != nil {
  458. br.Msg = "获取信息失败"
  459. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  460. return
  461. }
  462. var articleIds []int
  463. for _, v := range list {
  464. item := models.ArticleResearchResp{
  465. ArticleId: v.ArticleId,
  466. ArticleTypeId: v.ArticleTypeId,
  467. Title: v.Title,
  468. PublishDate: v.PublishDate,
  469. DepartmentId: v.DepartmentId,
  470. NickName: v.NickName,
  471. IsCollect: v.IsCollect,
  472. Pv: v.Pv,
  473. CollectNum: v.CollectNum,
  474. Abstract: v.Abstract,
  475. Annotation: v.Annotation,
  476. ImgUrlPc: v.ImgUrlPc,
  477. ArticleTypeName: nameMap[v.ArticleTypeId],
  478. ButtonStyle: styleMap[v.ArticleTypeId],
  479. List: v.List,
  480. }
  481. if item.ArticleTypeName == "纪要" || item.ArticleTypeName == "沙龙" || item.ArticleTypeName == "专家访谈" {
  482. item.Annotation = "核心结论:" + item.Annotation
  483. } else {
  484. item.Annotation = "核心观点:" + item.Annotation
  485. }
  486. resp.List = append(resp.List, &item)
  487. articleIds = append(articleIds, v.ArticleId)
  488. }
  489. //处理用户数是否关注该产业
  490. userFollowIndustrialMap, err := services.GetUserFollowIndustrialMap(user)
  491. if err != nil {
  492. br.Msg = "获取信息失败"
  493. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  494. return
  495. }
  496. if _, ok := userFollowIndustrialMap[industrialManagementId]; ok {
  497. resp.IsFollow = true
  498. }
  499. listSub, err := models.GetcygxIndustrialSubject(industrialManagementId)
  500. if err != nil {
  501. br.Msg = "获取信息失败"
  502. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  503. return
  504. }
  505. //处理文章关联的标的
  506. articleGroupSubjectMap, subjectMap, err := services.GetArticleGroupSubjectMap(articleIds)
  507. if err != nil {
  508. br.Msg = "获取信息失败"
  509. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  510. return
  511. }
  512. if len(articleGroupSubjectMap) > 0 {
  513. for k, v := range resp.List {
  514. resp.List[k].ListSubject = articleGroupSubjectMap[v.ArticleId]
  515. }
  516. }
  517. for _, v := range listSub {
  518. itemSubJect := new(models.IndustrialSubject)
  519. itemSubJect.SubjectName = v.SubjectName
  520. itemSubJect.IndustrialSubjectId = v.IndustrialSubjectId
  521. if subjectMap[v.IndustrialSubjectId] != "" {
  522. resp.ListSubject = append(resp.ListSubject, itemSubJect)
  523. }
  524. }
  525. followTypeMap := services.GetCygxIndustryFllowListTypeMapByMobile(user.Mobile) // 关注的对应状态
  526. resp.IndustryName = detailIndustrial.IndustryName
  527. resp.FollowType = followTypeMap[industrialManagementId]
  528. resp.IndustrialManagementId = detailIndustrial.IndustrialManagementId
  529. br.Ret = 200
  530. br.Success = true
  531. br.Msg = "获取成功"
  532. br.Data = resp
  533. }
  534. // @Title 研选作者详情
  535. // @Description 研选作者详情接口
  536. // @Param DepartmentId query int true "作者ID"
  537. // @Success 200 {object} models.DepartmentDetailResp
  538. // @router /departmentId/detail [get]
  539. func (this *MobileResearchController) DepartmentIdDetail() {
  540. br := new(models.BaseResponse).Init()
  541. defer func() {
  542. this.Data["json"] = br
  543. this.ServeJSON()
  544. }()
  545. user := this.User
  546. if user == nil {
  547. br.Msg = "请重新登录"
  548. br.Ret = 408
  549. return
  550. }
  551. pageSize, _ := this.GetInt("PageSize")
  552. currentIndex, _ := this.GetInt("CurrentIndex")
  553. var startSize int
  554. if pageSize <= 0 {
  555. pageSize = utils.PageSize20
  556. }
  557. if currentIndex <= 0 {
  558. currentIndex = 1
  559. }
  560. startSize = paging.StartIndex(currentIndex, pageSize)
  561. departmentId, _ := this.GetInt("DepartmentId")
  562. if departmentId < 1 {
  563. br.Msg = "请输入作者ID"
  564. return
  565. }
  566. var condition string
  567. var pars []interface{}
  568. articleTypeIds, err := services.GetYanXuanArticleTypeIds()
  569. if err != nil {
  570. br.Msg = "获取信息失败"
  571. br.ErrMsg = "GetYanXuanArticleTypeIds,Err:" + err.Error()
  572. return
  573. }
  574. needYanxuanSpecial := true
  575. if articleTypeIds != "" && !strings.Contains(articleTypeIds, "999") {
  576. needYanxuanSpecial = false
  577. }
  578. //只勾选了研选专栏时去掉文章的统计
  579. if articleTypeIds == "999" {
  580. condition += ` AND 1<0 `
  581. }
  582. if articleTypeIds != "" {
  583. condition = ` AND a.article_type_id IN (` + articleTypeIds + `) `
  584. } else {
  585. br.Msg = "获取信息失败"
  586. br.ErrMsg = "研选分类ID不能为空"
  587. return
  588. }
  589. resp := new(models.DepartmentDetailResp)
  590. detail, err := models.GetDepartmentDetail(user.UserId, departmentId, condition)
  591. if err != nil {
  592. br.Msg = "获取信息失败"
  593. br.ErrMsg = "获取作者信息失败,Err:" + err.Error()
  594. return
  595. }
  596. resp.DepartmentId = detail.DepartmentId
  597. resp.NickName = detail.NickName
  598. resp.ImgUrl = detail.ImgUrl
  599. resp.FllowNum = detail.FllowNum
  600. resp.ArticleNum = detail.ArticleNum
  601. resp.CollectNum = detail.CollectNum
  602. if detail.MyFllowNum > 0 {
  603. resp.IsFollow = true
  604. }
  605. condition += ` AND a.department_id = ` + strconv.Itoa(departmentId)
  606. total, err := models.GetArticleResearchCount(condition, pars, needYanxuanSpecial)
  607. if err != nil {
  608. br.Msg = "获取信息失败"
  609. br.ErrMsg = "GetArticleResearchCount,Err:" + err.Error()
  610. return
  611. }
  612. list, err := models.GetArticleResearchList(condition, pars, startSize, pageSize, user.UserId, needYanxuanSpecial)
  613. if err != nil {
  614. br.Msg = "获取信息失败"
  615. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  616. return
  617. }
  618. list, err = services.HandleArticleCategoryImg(list, user)
  619. if err != nil {
  620. br.Msg = "获取信息失败"
  621. br.ErrMsg = "HandleArticleCategoryImg,Err:" + err.Error()
  622. return
  623. }
  624. //处理对应的文章类型标签按钮
  625. nameMap, styleMap, err := services.GetArticleTypeMap()
  626. if err != nil {
  627. br.Msg = "获取信息失败"
  628. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  629. return
  630. }
  631. //resp := new(models.ArticleResearchListResp)
  632. for _, v := range list {
  633. item := models.ArticleResearchResp{
  634. ArticleId: v.ArticleId,
  635. ArticleTypeId: v.ArticleTypeId,
  636. Title: v.Title,
  637. PublishDate: v.PublishDate,
  638. DepartmentId: v.DepartmentId,
  639. NickName: v.NickName,
  640. IsCollect: v.IsCollect,
  641. Pv: v.Pv,
  642. CollectNum: v.CollectNum,
  643. Abstract: v.Abstract,
  644. Annotation: v.Annotation,
  645. ImgUrlPc: v.ImgUrlPc,
  646. ArticleTypeName: nameMap[v.ArticleTypeId],
  647. ButtonStyle: styleMap[v.ArticleTypeId],
  648. List: v.List,
  649. }
  650. if item.ArticleTypeName == "纪要" || item.ArticleTypeName == "沙龙" || item.ArticleTypeName == "专家访谈" {
  651. item.Annotation = "核心结论:" + item.Annotation
  652. } else {
  653. item.Annotation = "核心观点:" + item.Annotation
  654. }
  655. resp.List = append(resp.List, &item)
  656. }
  657. condition = ` AND a.department_id = ` + strconv.Itoa(departmentId)
  658. listIndustrial, err := models.GetIndustrialManagementNewList(condition)
  659. if err != nil {
  660. br.Msg = "获取信息失败"
  661. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  662. return
  663. }
  664. page := paging.GetPaging(currentIndex, pageSize, total)
  665. resp.ListIndustrial = listIndustrial
  666. resp.Paging = page
  667. br.Ret = 200
  668. br.Success = true
  669. br.Msg = "获取成功"
  670. br.Data = resp
  671. }
  672. // @Title 关注作者/取消关注作者
  673. // @Description 关注作者/取消关注作者 接口
  674. // @Param request body models.CygxArticleDepartmentId true "type json string"
  675. // @Success 200
  676. // @router /fllowDepartment [post]
  677. func (this *MobileResearchController) FllowDepartment() {
  678. br := new(models.BaseResponse).Init()
  679. defer func() {
  680. this.Data["json"] = br
  681. this.ServeJSON()
  682. }()
  683. user := this.User
  684. if user == nil {
  685. br.Msg = "请重新登录"
  686. br.Ret = 408
  687. return
  688. }
  689. uid := user.UserId
  690. var req models.CygxArticleDepartmentId
  691. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  692. if err != nil {
  693. br.Msg = "参数解析异常!"
  694. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  695. return
  696. }
  697. departmentId := req.DepartmentId
  698. var condition string
  699. countDepartment, err := models.GetDepartmentCount(departmentId)
  700. if err != nil {
  701. br.Msg = "获取数据失败!"
  702. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  703. return
  704. }
  705. if countDepartment == 0 {
  706. br.Msg = "作者不存在!"
  707. br.ErrMsg = "作者ID不存在:" + strconv.Itoa(departmentId)
  708. return
  709. }
  710. countUser, err := models.GetArticleDepartmentFollowByUid(uid)
  711. count, err := models.GetArticleDepartmentFollow(uid, departmentId, condition)
  712. if err != nil {
  713. br.Msg = "获取数据失败!"
  714. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  715. return
  716. }
  717. resp := new(models.CygxArticleDepartmentFollowResp)
  718. if countUser == 0 {
  719. resp.GoFollow = true
  720. }
  721. if count == 0 {
  722. item := new(models.CygxArticleDepartmentFollow)
  723. item.DepartmentId = departmentId
  724. item.UserId = uid
  725. item.Email = user.Email
  726. item.Mobile = user.Mobile
  727. item.RealName = user.RealName
  728. item.CompanyId = user.CompanyId
  729. item.CompanyName = user.CompanyName
  730. item.Type = 1
  731. item.CreateTime = time.Now()
  732. item.ModifyTime = time.Now()
  733. _, err = models.AddArticleDepartmentFollow(item)
  734. if err != nil {
  735. br.Msg = "操作失败"
  736. br.ErrMsg = "操作失败,Err:" + err.Error()
  737. return
  738. }
  739. resp.Status = 1
  740. } else {
  741. var doType int
  742. condition = ` AND type = 1`
  743. count, err = models.GetArticleDepartmentFollow(uid, departmentId, condition)
  744. if err != nil {
  745. br.Msg = "操作失败!"
  746. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  747. return
  748. }
  749. if count == 1 {
  750. resp.Status = 2
  751. doType = 2
  752. } else {
  753. resp.Status = 1
  754. doType = 1
  755. }
  756. err = models.RemoveArticleDepartmentFollow(uid, departmentId, doType)
  757. if err != nil {
  758. br.Msg = "操作失败"
  759. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  760. return
  761. }
  762. }
  763. br.Msg = "操作成功"
  764. br.Ret = 200
  765. br.Success = true
  766. br.Data = resp
  767. }
  768. // @Title 研选月度收藏榜
  769. // @Description 研选月度收藏榜接口
  770. // @Param PageSize query int true "每页数据条数"
  771. // @Success 200 {object} models.ReportBillboardListResp
  772. // @router /article/billboard [get]
  773. func (this *MobileResearchController) Billboard() {
  774. br := new(models.BaseResponse).Init()
  775. defer func() {
  776. this.Data["json"] = br
  777. this.ServeJSON()
  778. }()
  779. user := this.User
  780. if user == nil {
  781. br.Msg = "请重新登录"
  782. br.Ret = 408
  783. return
  784. }
  785. pageSize, _ := this.GetInt("PageSize", 15)
  786. var condition string
  787. var pars []interface{}
  788. articleTypeIds, err := services.GetYanXuanArticleTypeIds()
  789. if err != nil {
  790. br.Msg = "获取信息失败"
  791. br.ErrMsg = "GetYanXuanArticleTypeIds,Err:" + err.Error()
  792. return
  793. }
  794. if articleTypeIds != "" {
  795. condition = ` AND a.article_type_id IN (` + articleTypeIds + `) `
  796. } else {
  797. br.Msg = "获取信息失败"
  798. br.ErrMsg = "研选分类ID不能为空"
  799. return
  800. }
  801. // 根据关注时间一个月前至昨日的增量数据排序
  802. nowTime := time.Now().Local()
  803. startTime := nowTime.AddDate(0, -1, 0)
  804. endTime := nowTime.AddDate(0, 0, -1)
  805. condition += ` AND ac.create_time BETWEEN ? AND ?`
  806. pars = append(pars, startTime, endTime)
  807. list, err := models.GetReportCollectionBillboardListYx(pageSize, pars, condition)
  808. if err != nil {
  809. br.Msg = "获取失败"
  810. br.ErrMsg = "获取报告阅读增量排行榜失败, Err:" + err.Error()
  811. return
  812. }
  813. list, err = services.HandleArticleCategoryImg(list, user)
  814. if err != nil {
  815. br.Msg = "获取信息失败"
  816. br.ErrMsg = "HandleArticleCategoryImg,Err:" + err.Error()
  817. return
  818. }
  819. //处理对应的文章类型标签按钮
  820. nameMap, styleMap, err := services.GetArticleTypeMap()
  821. if err != nil {
  822. br.Msg = "获取信息失败"
  823. br.ErrMsg = "GetArticleTypeMap Err:" + err.Error()
  824. return
  825. }
  826. resp := new(models.ArticleResearchListResp)
  827. for _, v := range list {
  828. item := models.ArticleResearchResp{
  829. ArticleId: v.ArticleId,
  830. ArticleTypeId: v.ArticleTypeId,
  831. Title: v.Title,
  832. PublishDate: v.PublishDate,
  833. DepartmentId: v.DepartmentId,
  834. NickName: v.NickName,
  835. IsCollect: v.IsCollect,
  836. Pv: v.Pv,
  837. CollectNum: v.CollectNum,
  838. Abstract: v.Abstract,
  839. Annotation: v.Annotation,
  840. ImgUrlPc: v.ImgUrlPc,
  841. ArticleTypeName: nameMap[v.ArticleTypeId],
  842. ButtonStyle: styleMap[v.ArticleTypeId],
  843. List: v.List,
  844. }
  845. resp.List = append(resp.List, &item)
  846. }
  847. br.Ret = 200
  848. br.Success = true
  849. br.Msg = "获取成功"
  850. br.Data = resp
  851. }