home.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. package controllers
  2. import (
  3. "github.com/rdlucklib/rdluck_tools/paging"
  4. "hongze/hongze_clpt/models"
  5. "hongze/hongze_clpt/services"
  6. "hongze/hongze_clpt/utils"
  7. "strconv"
  8. "strings"
  9. "time"
  10. )
  11. type HomeController struct {
  12. BaseAuthController
  13. }
  14. type BaseHomeController struct {
  15. BaseCommonController
  16. }
  17. type MobileHomeController struct {
  18. BaseAuthMobileController
  19. }
  20. // @Title 首页列表接口
  21. // @Description 首页列表接口
  22. // @Param PageSize query int true "每页数据条数"
  23. // @Param CurrentIndex query int true "当前页页码,从1开始"
  24. // @Param ChartPermissionId query int true "品类id,最新传0"
  25. // @Param CtagId query int true "图表子类ID"
  26. // @Param ListType query int true "列表类型,1最新,2 纪要 ,3图表 默认1"
  27. // @Success 200 {object} models.HomeArtAndChartListResp
  28. // @router /list [get]
  29. func (this *MobileHomeController) List() {
  30. br := new(models.BaseResponse).Init()
  31. defer func() {
  32. this.Data["json"] = br
  33. this.ServeJSON()
  34. }()
  35. user := this.User
  36. if user == nil {
  37. br.Msg = "请登录"
  38. br.ErrMsg = "请登录,用户信息为空"
  39. br.Ret = 408
  40. return
  41. }
  42. pageSize, _ := this.GetInt("PageSize")
  43. currentIndex, _ := this.GetInt("CurrentIndex")
  44. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  45. ctagId, _ := this.GetInt("CtagId")
  46. listType, _ := this.GetInt("ListType")
  47. var startSize int
  48. if pageSize <= 0 {
  49. pageSize = utils.PageSize20
  50. }
  51. if currentIndex <= 0 {
  52. currentIndex = 1
  53. }
  54. if listType <= 0 {
  55. listType = 1
  56. }
  57. startSize = paging.StartIndex(currentIndex, pageSize)
  58. var condition string
  59. var pars []interface{}
  60. var total, chartTotal int
  61. resp := new(models.HomeArtAndChartListResp)
  62. page := paging.GetPaging(currentIndex, pageSize, total)
  63. var chartList []*models.HomeChartListResp
  64. var err error
  65. if listType == 1 {
  66. if currentIndex <= 2 {
  67. listCtagId := [10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
  68. var chartIds string
  69. for _, v := range listCtagId {
  70. chartListTwo, err := models.GetChartList(`AND ctag_id = `+strconv.Itoa(v), pars, 0, 2)
  71. if err != nil {
  72. br.Msg = "获取信息失败"
  73. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  74. return
  75. }
  76. for _, vChart := range chartListTwo {
  77. chartIds += strconv.Itoa(vChart.ChartId) + ","
  78. }
  79. }
  80. chartIds = strings.TrimRight(chartIds, ",")
  81. condition += ` AND chart_id IN (` + chartIds + `) `
  82. chartList, err = models.GetChartList(condition, pars, startSize, pageSize)
  83. if err != nil {
  84. br.Msg = "获取信息失败"
  85. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  86. return
  87. }
  88. }
  89. } else if listType == 3 {
  90. if chartPermissionId > 0 {
  91. condition += ` AND a.ptag_id =? `
  92. pars = append(pars, chartPermissionId)
  93. }
  94. if ctagId > 0 {
  95. condition += ` AND a.ctag_id =? `
  96. pars = append(pars, ctagId)
  97. }
  98. chartList, err = models.GetChartList(condition, pars, startSize, pageSize)
  99. if err != nil {
  100. br.Msg = "获取信息失败"
  101. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  102. return
  103. }
  104. chartTotal, err = models.GetChartCount(condition, pars)
  105. if err != nil {
  106. br.Msg = "获取信息失败"
  107. br.Msg = "获取帖子总数失败,Err:" + err.Error()
  108. return
  109. }
  110. }
  111. for k, v := range chartList {
  112. if v.PtagName != "" {
  113. chartList[k].CtagNamePc = v.PtagName
  114. }
  115. if v.CtagName != "" {
  116. chartList[k].CtagNamePc += "," + v.CtagName
  117. }
  118. if v.PtagNameTwo != "" {
  119. chartList[k].CtagNamePc += "," + v.PtagNameTwo
  120. }
  121. if v.CtagNameTwo != "" {
  122. chartList[k].CtagNamePc += "," + v.CtagNameTwo
  123. }
  124. chartList[k].IsNeedJump = true
  125. chartList[k].Source = 2
  126. if v.PtagName != "" {
  127. labelItem := new(models.LabelList)
  128. labelItem.PtagName = v.PtagName
  129. labelItem.CtagName = v.CtagName
  130. chartList[k].LabelList = append(chartList[k].LabelList, labelItem)
  131. }
  132. if v.PtagNameTwo != "" {
  133. labelItemTwo := new(models.LabelList)
  134. labelItemTwo.PtagName = v.PtagNameTwo
  135. labelItemTwo.CtagName = v.CtagNameTwo
  136. chartList[k].LabelList = append(chartList[k].LabelList, labelItemTwo)
  137. }
  138. if len(chartList[k].LabelList) == 0 {
  139. chartList[k].LabelList = make([]*models.LabelList, 0)
  140. }
  141. }
  142. if len(chartList) == 0 {
  143. chartList = make([]*models.HomeChartListResp, 0)
  144. }
  145. resp.ChartList = chartList
  146. if listType != 3 {
  147. userType, _, err := services.GetUserType(user.CompanyId)
  148. if err != nil {
  149. br.Msg = "获取信息失败"
  150. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  151. return
  152. }
  153. condition = ` AND is_summary = 1 `
  154. if chartPermissionId > 0 {
  155. categoryId, err := models.GetCategoryIdHome(chartPermissionId)
  156. if err != nil && err.Error() != utils.ErrNoRow() {
  157. br.Msg = "获取信息失败"
  158. br.ErrMsg = "获取分类权限信息失败,Err:" + err.Error()
  159. return
  160. }
  161. categoryinfo, err := models.GetChartPermissionById(chartPermissionId)
  162. if err != nil {
  163. br.Msg = "获取信息失败"
  164. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  165. return
  166. }
  167. if userType == 1 && strings.Contains(categoryinfo.PermissionName, utils.CHART_PERMISSION_NAME_YANXUAN) {
  168. resp.Paging = page
  169. br.Ret = 200
  170. br.Success = true
  171. br.Msg = "获取成功"
  172. br.Data = resp
  173. return
  174. }
  175. page = paging.GetPaging(currentIndex, pageSize, total)
  176. if categoryId != "" {
  177. condition += ` AND category_id IN(` + categoryId + `)`
  178. //condition += ` OR ( category_name LIKE '%` + utils.CHART_PERMISSION_NAME_YANXUAN + `%' AND publish_status = 1 AND is_summary = 1 )`
  179. } else {
  180. condition += ` AND category_name LIKE '%` + utils.CHART_PERMISSION_NAME_YANXUAN + `%'`
  181. }
  182. }
  183. //永续客户无法查看研选分类的内容
  184. if userType == 1 {
  185. condition += ` AND category_name NOT LIKE '%` + utils.CHART_PERMISSION_NAME_YANXUAN + `%'`
  186. }
  187. total, err = models.GetHomeCount(condition, pars)
  188. if err != nil {
  189. br.Msg = "获取信息失败"
  190. br.Msg = "获取帖子总数失败,Err:" + err.Error()
  191. return
  192. }
  193. listPublic, err := models.GetHomeListPublic(condition, pars, startSize, pageSize)
  194. if err != nil {
  195. br.Msg = "获取信息失败"
  196. br.Msg = "获取帖子数据失败,Err:" + err.Error()
  197. return
  198. }
  199. listPublic, err = services.HandleArticleCategoryImg(listPublic, user)
  200. if err != nil {
  201. br.Msg = "获取失败"
  202. br.ErrMsg = "获取报告封面图片失败, Err:" + err.Error()
  203. return
  204. }
  205. var list []*models.HomeArticle
  206. if len(listPublic) == 0 {
  207. list = make([]*models.HomeArticle, 0)
  208. } else {
  209. for _, v := range listPublic {
  210. list = append(list, &models.HomeArticle{
  211. ArticleId: v.ArticleId,
  212. Title: v.Title,
  213. Annotation: v.Annotation,
  214. Abstract: v.Abstract,
  215. ImgUrlPc: v.ImgUrlPc,
  216. PublishDate: v.PublishDate,
  217. IsResearch: v.IsResearch,
  218. })
  219. }
  220. }
  221. resp.List = list
  222. }
  223. if chartTotal > total {
  224. total = chartTotal
  225. }
  226. page = paging.GetPaging(currentIndex, pageSize, total)
  227. resp.Paging = page
  228. br.Ret = 200
  229. br.Success = true
  230. br.Msg = "获取成功"
  231. br.Data = resp
  232. }
  233. // @Title 首页列表接口
  234. // @Description 首页列表接口
  235. // @Param TagIds query string true "标签选择"
  236. // @Param PageSize query int true "每页数据条数"
  237. // @Param CurrentIndex query int true "当前页页码,从1开始"
  238. // @Success 200 {object} models.HomeArtAndChartListResp
  239. // @router /new [get]
  240. func (this *MobileHomeController) NewList() {
  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. //uid := user.UserId
  254. pageSize, _ := this.GetInt("PageSize")
  255. currentIndex, _ := this.GetInt("CurrentIndex")
  256. tagIds := this.GetString("TagIds")
  257. var startSize int
  258. if pageSize <= 0 {
  259. pageSize = utils.PageSize20
  260. }
  261. if currentIndex <= 0 {
  262. currentIndex = 1
  263. }
  264. startSize = paging.StartIndex(currentIndex, pageSize)
  265. var condition string
  266. var conditionInit string
  267. var pars []interface{}
  268. var total int
  269. resp := new(models.HomeResourceDataListNewResp)
  270. var articleTypes, activityTypes, industries, subjectNames string
  271. articleTypeCondSlice := make([]string, 0)
  272. activityTypesCondSlice := make([]string, 0)
  273. industriesCondSlice := make([]string, 0)
  274. subjectNamesSlice := make([]string, 0)
  275. articleTypeSlice := make([]string, 0)
  276. if tagIds != "" {
  277. tags := strings.Split(tagIds, ",")
  278. for _, tagIdStr := range tags {
  279. tagId, err := strconv.Atoi(tagIdStr)
  280. if err != nil {
  281. br.Msg = "转换失败"
  282. br.ErrMsg = "tagid转换失败,Err:" + err.Error()
  283. return
  284. }
  285. tagInfo, err := models.GetCygxTagByTagId(tagId)
  286. if err != nil && err.Error() != utils.ErrNoRow() {
  287. br.Msg = "获取失败"
  288. br.ErrMsg = "GetCygxTagByTagId,Err:" + err.Error()
  289. return
  290. }
  291. // 只有AB或CD的情况
  292. if (tagInfo.ActivityTypes == "" && tagInfo.ArticleTypes == "") || (tagInfo.Industries == "" && tagInfo.SubjectNames == "") {
  293. if tagInfo.ActivityTypes != "" {
  294. activityTypes += tagInfo.ActivityTypes + ","
  295. }
  296. if tagInfo.ArticleTypes != "" {
  297. articleTypes += tagInfo.ArticleTypes + ","
  298. }
  299. if tagInfo.Industries != "" {
  300. industries += tagInfo.Industries + ","
  301. }
  302. if tagInfo.SubjectNames != "" {
  303. subjectNames += tagInfo.SubjectNames + ","
  304. }
  305. } else {
  306. // ABCD都有的情况
  307. // 每一个tag都单独处理
  308. var articleType, activityType, industry, subjectName string
  309. if tagInfo.ActivityTypes != "" {
  310. activityType = tagInfo.ActivityTypes
  311. }
  312. if tagInfo.ArticleTypes != "" {
  313. articleType = tagInfo.ArticleTypes
  314. }
  315. if tagInfo.Industries != "" {
  316. industry = tagInfo.Industries
  317. }
  318. if tagInfo.SubjectNames != "" {
  319. subjectName = tagInfo.SubjectNames
  320. }
  321. articleTypeCond := ``
  322. var articleTypeStr string
  323. if articleType != "" {
  324. articleTypeSlice := strings.Split(articleType, ",")
  325. newArticleTypeSlice := make([]string, 0)
  326. for _, s := range articleTypeSlice {
  327. newArticleTypeSlice = append(newArticleTypeSlice, "'"+s+"'")
  328. }
  329. articleTypeStr = strings.Join(newArticleTypeSlice, ",")
  330. articleTypeStr = strings.TrimRight(articleTypeStr, ",")
  331. articleTypeCond += ` AND (art.sub_category_name In (` + articleTypeStr + `) OR (art.article_type_name In (` + articleTypeStr + `) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
  332. }
  333. activityTypesCond := ``
  334. if activityType != "" {
  335. activityTypeSlice := strings.Split(activityType, ",")
  336. newActivityTypeSlice := make([]string, 0)
  337. for _, s := range activityTypeSlice {
  338. newActivityTypeSlice = append(newActivityTypeSlice, "'"+s+"'")
  339. }
  340. activityTypeStr := strings.Join(newActivityTypeSlice, ",")
  341. activityTypeStr = strings.TrimRight(activityTypeStr, ",")
  342. activityTypesCond += ` AND act.activity_type_name In (` + activityTypeStr + `) `
  343. }
  344. industriesCond := ``
  345. var industryStr string
  346. if industry != "" {
  347. industrieSlice := strings.Split(industry, ",")
  348. newIndustrieSlice := make([]string, 0)
  349. for _, s := range industrieSlice {
  350. newIndustrieSlice = append(newIndustrieSlice, "'"+s+"'")
  351. }
  352. industryStr = strings.Join(newIndustrieSlice, ",")
  353. industryStr = strings.TrimRight(industryStr, ",")
  354. industriesCond += ` AND im.industry_name In (` + industryStr + `) `
  355. }
  356. subjectNamesCond := ``
  357. var subjectNameStr string
  358. if subjectName != "" {
  359. subjectNameSlice := strings.Split(subjectName, ",")
  360. newSubjectNameSlice := make([]string, 0)
  361. for _, s := range subjectNameSlice {
  362. newSubjectNameSlice = append(newSubjectNameSlice, "'"+s+"'")
  363. }
  364. subjectNameStr = strings.Join(newSubjectNameSlice, ",")
  365. subjectNameStr = strings.TrimRight(subjectNameStr, ",")
  366. subjectNamesCond += ` AND cis.subject_name In (` + subjectNameStr + `) `
  367. }
  368. articleTypeCondSlice = append(articleTypeCondSlice, articleTypeCond)
  369. activityTypesCondSlice = append(activityTypesCondSlice, activityTypesCond)
  370. industriesCondSlice = append(industriesCondSlice, industryStr)
  371. subjectNamesSlice = append(subjectNamesSlice, subjectNameStr)
  372. articleTypeSlice = append(articleTypeSlice, articleType)
  373. }
  374. }
  375. }
  376. // 先拿abdc都有的tag取合集的ids。。。
  377. soloTagArticleIds, soloTagActivityIds, soloMmIds, err := models.GetCygxCygxArticleListByConditionSoloTag(articleTypeCondSlice, activityTypesCondSlice, industriesCondSlice, subjectNamesSlice, articleTypeSlice)
  378. if err != nil && err.Error() != utils.ErrNoRow() {
  379. br.Msg = "获取失败"
  380. br.ErrMsg = "获取活动权限数据失败,Err:" + err.Error()
  381. return
  382. }
  383. articleTypes = strings.TrimRight(articleTypes, ",")
  384. activityTypes = strings.TrimRight(activityTypes, ",")
  385. industries = strings.TrimRight(industries, ",")
  386. subjectNames = strings.TrimRight(subjectNames, ",")
  387. articleTypesCond := ``
  388. var articleTypeStr string
  389. if articleTypes != "" {
  390. articleTypeSlice := strings.Split(articleTypes, ",")
  391. newArticleTypeSlice := make([]string, 0)
  392. for _, s := range articleTypeSlice {
  393. newArticleTypeSlice = append(newArticleTypeSlice, "'"+s+"'")
  394. }
  395. articleTypeStr = strings.Join(newArticleTypeSlice, ",")
  396. articleTypeStr = strings.TrimRight(articleTypeStr, ",")
  397. articleTypesCond += ` AND (art.sub_category_name In (` + articleTypeStr + `) OR (art.article_type_name In (` + articleTypeStr + `) AND art.article_type_name <> '路演精华' AND art.article_type_id <> 0 ) ) `
  398. }
  399. activityTypesCond := ``
  400. if activityTypes != "" {
  401. activityTypeSlice := strings.Split(activityTypes, ",")
  402. newActivityTypeSlice := make([]string, 0)
  403. for _, s := range activityTypeSlice {
  404. newActivityTypeSlice = append(newActivityTypeSlice, "'"+s+"'")
  405. }
  406. activityTypeStr := strings.Join(newActivityTypeSlice, ",")
  407. activityTypeStr = strings.TrimRight(activityTypeStr, ",")
  408. activityTypesCond += ` AND act.activity_type_name In (` + activityTypeStr + `) `
  409. }
  410. industriesCond := ``
  411. var industryStr string
  412. if industries != "" {
  413. industrieSlice := strings.Split(industries, ",")
  414. newIndustrieSlice := make([]string, 0)
  415. for _, s := range industrieSlice {
  416. newIndustrieSlice = append(newIndustrieSlice, "'"+s+"'")
  417. }
  418. industryStr = strings.Join(newIndustrieSlice, ",")
  419. industryStr = strings.TrimRight(industryStr, ",")
  420. industriesCond += ` AND im.industry_name In (` + industryStr + `) `
  421. }
  422. subjectNamesCond := ``
  423. var subjectNameStr string
  424. if subjectNames != "" {
  425. subjectNameSlice := strings.Split(subjectNames, ",")
  426. newSubjectNameSlice := make([]string, 0)
  427. for _, s := range subjectNameSlice {
  428. newSubjectNameSlice = append(newSubjectNameSlice, "'"+s+"'")
  429. }
  430. subjectNameStr = strings.Join(newSubjectNameSlice, ",")
  431. subjectNameStr = strings.TrimRight(subjectNameStr, ",")
  432. subjectNamesCond += ` AND cis.subject_name In (` + subjectNameStr + `) `
  433. }
  434. var tagArticleIds, tagActivityIds, mmIds string
  435. if articleTypesCond != "" || activityTypesCond != "" || industryStr != "" || subjectNameStr != "" {
  436. tagArticleIds, tagActivityIds, mmIds, err = models.GetCygxCygxArticleListByCondition(articleTypesCond, activityTypesCond, industryStr, subjectNameStr, articleTypeStr)
  437. if err != nil && err.Error() != utils.ErrNoRow() {
  438. br.Msg = "获取失败"
  439. br.ErrMsg = "获取单个标签ids失败,Err:" + err.Error()
  440. return
  441. }
  442. }
  443. if soloTagArticleIds != "" {
  444. if tagArticleIds != "" {
  445. tagArticleIds += "," + soloTagArticleIds
  446. } else {
  447. tagArticleIds = soloTagArticleIds
  448. }
  449. }
  450. if soloTagActivityIds != "" {
  451. if tagActivityIds != "" {
  452. tagActivityIds += "," + soloTagActivityIds
  453. } else {
  454. tagActivityIds = soloTagActivityIds
  455. }
  456. }
  457. if soloMmIds != "" {
  458. if mmIds != "" {
  459. mmIds += "," + soloMmIds
  460. } else {
  461. mmIds = soloMmIds
  462. }
  463. }
  464. //查询近一个月的数据
  465. conditionInit = " AND publish_date > '" + time.Now().AddDate(0, 0, -30).Format(utils.FormatDateTime) + "'"
  466. //conditionInit += ` AND source IN ('newchart')`
  467. if user.CompanyId <= 1 {
  468. condition += " AND source IN ('roadshow','article') "
  469. startSize = 0
  470. pageSize = utils.PageSize5
  471. } else {
  472. condition += ` AND source NOT IN ('activity','activityspecial','newchart') ` + conditionInit
  473. //conditionActivity, err := services.GetActivityonditionList(user, "", "", "", "1,2,3", "", 0, 0, "", 0, 1)
  474. conditionActivity, err := services.ActivityConditioninitSql(user, "", 0)
  475. if err != nil && err.Error() != utils.ErrNoRow() {
  476. br.Msg = "获取失败"
  477. br.ErrMsg = "获取活动权限数据失败,Err:" + err.Error()
  478. return
  479. }
  480. conditionActivity += ` AND art.publish_status = 1 `
  481. var conditionOrder string
  482. conditionOrder = ` ORDER BY art.activity_time DESC , art.active_state ASC `
  483. conditionActivity += conditionOrder
  484. actPageSize := 200
  485. if tagIds != "" {
  486. actPageSize = 2000
  487. }
  488. listActivity, err := models.GetActivityListHomeNew(conditionActivity, 0, actPageSize)
  489. if err != nil {
  490. br.Msg = "获取失败"
  491. br.ErrMsg = "获取可见活动数据失败,Err:" + err.Error()
  492. return
  493. }
  494. var activityIds []int
  495. for _, v := range listActivity {
  496. activityIds = append(activityIds, v.ActivityId)
  497. }
  498. lenActivityIds := len(activityIds)
  499. listActivitySpecial, _, err := services.GetActivitySpecialList(user, 1, 200, "", "", "")
  500. if err != nil {
  501. br.Msg = "获取失败"
  502. br.ErrMsg = "获取专项调研可见权限失败失败,Err:" + err.Error()
  503. return
  504. }
  505. var activityspecialIds []int
  506. for _, v := range listActivitySpecial {
  507. activityspecialIds = append(activityspecialIds, v.ActivityId)
  508. }
  509. lenActivityspecialIds := len(activityspecialIds)
  510. if tagIds != "" {
  511. if tagArticleIds != "" {
  512. condition = ` AND ((source = 'article' AND source_id IN (` + tagArticleIds + `) ) `
  513. if mmIds != "" {
  514. condition += ` OR ( source = 'meetingreviewchapt' AND source_id IN (` + mmIds + `) ) `
  515. }
  516. if tagActivityIds != "" && lenActivityIds > 0 {
  517. condition += ` OR (source = 'activity' AND source_id IN (` + tagActivityIds + `) AND source_id IN (` + utils.GetOrmInReplace(lenActivityIds) + `) )) `
  518. pars = append(pars, activityIds)
  519. } else {
  520. // 无可见活动
  521. condition += ` OR (source = 'activity' AND source_id IN (0))) `
  522. }
  523. } else if tagActivityIds != "" {
  524. condition = ` AND ((source = 'article' AND source_id IN (0)) `
  525. if mmIds != "" {
  526. condition += ` OR ( source = 'meetingreviewchapt' AND source_id IN (` + mmIds + `) ) `
  527. }
  528. if tagActivityIds != "" && lenActivityIds > 0 {
  529. condition += ` OR (source = 'activity' AND source_id IN (` + tagActivityIds + `) AND source_id IN (` + utils.GetOrmInReplace(lenActivityIds) + `))) `
  530. pars = append(pars, activityIds)
  531. } else {
  532. // 无可见活动
  533. condition += ` OR (source = 'activity' AND source_id IN (0))) `
  534. }
  535. } else if mmIds != "" {
  536. condition = ` AND ( source = 'meetingreviewchapt' AND source_id IN (` + mmIds + `) ) `
  537. } else {
  538. condition += ` AND ((source = 'article' AND source_id IN (0)) OR (source = 'activity' AND source_id IN (0))) `
  539. }
  540. }
  541. if lenActivityIds > 0 && tagIds == "" {
  542. condition += ` OR ( source = 'activity' AND source_id IN (` + utils.GetOrmInReplace(lenActivityIds) + `) ` + conditionInit + ` ) `
  543. pars = append(pars, activityIds)
  544. }
  545. if lenActivityspecialIds > 0 && tagIds == "" {
  546. condition += ` OR ( source = 'activityspecial' AND source_id IN (` + utils.GetOrmInReplace(lenActivityspecialIds) + `) ` + conditionInit + ` ) `
  547. pars = append(pars, activityspecialIds)
  548. }
  549. }
  550. total, err = models.GetResourceDataCount(condition, pars)
  551. if err != nil {
  552. br.Msg = "获取失败"
  553. br.ErrMsg = "获取数据总数失败,Err:" + err.Error()
  554. return
  555. }
  556. if user.CompanyId <= 1 {
  557. total = utils.PageSize5
  558. }
  559. page := paging.GetPaging(currentIndex, pageSize, total)
  560. //Source string `description:"资源类型 报告 :article 、图表 :newchart、微路演 :roadshow、活动 :activity、活动视频:activityvideo、活动音频:activityvoice、专项调研活动:activityspecial"`
  561. list, err := services.GetResourceDataList(condition, pars, startSize, pageSize, user)
  562. if err != nil {
  563. br.Msg = "获取失败"
  564. br.ErrMsg = "获取数据列表失败,Err:" + err.Error()
  565. return
  566. }
  567. page = paging.GetPaging(currentIndex, pageSize, total)
  568. resp.Paging = page
  569. resp.List = list
  570. br.Ret = 200
  571. br.Success = true
  572. br.Msg = "获取成功"
  573. br.Data = resp
  574. }