micro_roadshow.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "hongze/hongze_cygx/models"
  6. "hongze/hongze_cygx/services"
  7. "hongze/hongze_cygx/utils"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. // 微路演
  13. type MicroRoadShowController struct {
  14. BaseAuthController
  15. }
  16. // @Title 微路演列表
  17. // @Description 微路演列表接口
  18. // @Param PageSize query int true "每页数据条数"
  19. // @Param CurrentIndex query int true "当前页页码,从1开始"
  20. // @Param KeyWord query string false "搜索关键词"
  21. // @Param AudioId query int false "音频ID"
  22. // @Param VideoId query int false "视频ID"
  23. // @Param AudioIds query string false "活动音频IDs"
  24. // @Param ActivityVideoIds query string false "活动视频IDs"
  25. // @Param VideoIds query string false "视频IDs"
  26. // @Param ActivityVideoId query int false "活动视频ID"
  27. // @Param Filter query int false "筛选条件 0:全部 1:视频 2:音频"
  28. // @Success 200 {object} models.HomeListResp
  29. // @router /list [get]
  30. func (this *MicroRoadShowController) List() {
  31. br := new(models.BaseResponse).Init()
  32. defer func() {
  33. this.Data["json"] = br
  34. this.ServeJSON()
  35. }()
  36. user := this.User
  37. if user == nil {
  38. br.Msg = "请登录"
  39. br.ErrMsg = "请登录,用户信息为空"
  40. br.Ret = 408
  41. return
  42. }
  43. pageSize, _ := this.GetInt("PageSize")
  44. currentIndex, _ := this.GetInt("CurrentIndex")
  45. keywords := this.GetString("KeyWord")
  46. audioId, _ := this.GetInt("AudioId")
  47. videoId, _ := this.GetInt("VideoId")
  48. audioIds := this.GetString("AudioIds")
  49. videoIds := this.GetString("VideoIds")
  50. activityVideoIds := this.GetString("ActivityVideoIds")
  51. activityVideoId, _ := this.GetInt("ActivityVideoId")
  52. filter, _ := this.GetInt("Filter", 0)
  53. if pageSize <= 0 {
  54. pageSize = utils.PageSize20
  55. }
  56. if currentIndex <= 0 {
  57. currentIndex = 1
  58. }
  59. keyWordArr, err := services.GetIndustryMapNameSliceV3(keywords)
  60. if err != nil {
  61. br.Msg = "获取失败"
  62. br.ErrMsg = "获取分词失败,GetIndustryMapNameSliceV3 Err: " + err.Error()
  63. return
  64. }
  65. keyWordArr = services.RemoveDuplicatesAndEmpty(keyWordArr)
  66. var list []*models.MicroRoadShowPageList
  67. var total int
  68. var e error
  69. // 微路演列表
  70. list, total, e = services.GetMicroRoadShowPageListV8(pageSize, currentIndex, audioId, videoId, activityVideoId, filter, keywords, audioIds, videoIds, activityVideoIds)
  71. if e != nil {
  72. br.Msg = "获取失败"
  73. br.ErrMsg = "获取微路演列表失败, Err: " + e.Error()
  74. return
  75. }
  76. var pageSizeIk int
  77. pageSizeIk = pageSize - len(list)
  78. //获取总的数量
  79. totalIk, e := services.CountMicroRoadShowPageListIkWord(audioId, videoId, activityVideoId, filter, keyWordArr, audioIds, videoIds, activityVideoIds)
  80. if e != nil {
  81. br.Msg = "获取失败"
  82. br.ErrMsg = "获取微路演联想词列表失败, Err: " + e.Error()
  83. return
  84. }
  85. //处理IK分词部分的分页获取条数
  86. startSizeIk := utils.StartIndex(currentIndex, pageSize)
  87. startSizeIk = startSizeIk - total
  88. if startSizeIk < 0 {
  89. startSizeIk = 0
  90. }
  91. if pageSizeIk > 0 {
  92. lisIk, e := services.GetMicroRoadShowPageListIkWord(startSizeIk, pageSizeIk, audioId, videoId, activityVideoId, filter, keyWordArr, audioIds, videoIds, activityVideoIds)
  93. if e != nil {
  94. br.Msg = "获取失败"
  95. br.ErrMsg = "获取微路演列表失败, Err: " + e.Error()
  96. return
  97. }
  98. for _, item := range lisIk {
  99. list = append(list, item)
  100. }
  101. }
  102. total = totalIk
  103. userId := user.UserId
  104. listMycollect, err := models.GetUserMicroRoadshowCollectList(userId)
  105. if err != nil {
  106. br.Msg = "获取数据失败"
  107. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  108. return
  109. }
  110. mapaudioIds := make(map[int]int) //活动音频
  111. mapvideoIds := make(map[int]int) // 微路演视频
  112. mapactivityVideoIds := make(map[int]int) // 活动视频
  113. for _, item := range listMycollect {
  114. if item.ActivityVoiceId > 0 {
  115. mapaudioIds[item.ActivityVoiceId] = item.ActivityVoiceId
  116. } else if item.VideoId > 0 {
  117. mapvideoIds[item.VideoId] = item.VideoId
  118. } else if item.ActivityVideoId > 0 {
  119. mapactivityVideoIds[item.ActivityVoiceId] = item.ActivityVoiceId
  120. }
  121. }
  122. for _, item := range list {
  123. if item.Type == 1 {
  124. //音频
  125. if mapaudioIds[item.Id] > 0 {
  126. item.IsCollect = true
  127. }
  128. } else if item.Type == 2 {
  129. //活动视频
  130. if mapactivityVideoIds[item.Id] > 0 {
  131. item.IsCollect = true
  132. }
  133. } else if item.Type == 3 {
  134. //微路演视频
  135. if mapvideoIds[item.Id] > 0 {
  136. item.IsCollect = true
  137. }
  138. }
  139. }
  140. // 用户权限
  141. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  142. if e != nil {
  143. br.Msg = "获取失败"
  144. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  145. return
  146. }
  147. // 获取默认图配置
  148. audioMap, videoMap, audioShareMap, videoShareMap, e := services.GetMicroRoadShowDefaultImgConfig()
  149. if e != nil {
  150. br.Msg = "获取失败"
  151. br.ErrMsg = "获取微路演列表失败, Err: " + e.Error()
  152. return
  153. }
  154. for i := range list {
  155. // 权限
  156. au := new(models.UserPermissionAuthInfo)
  157. au.SellerName = authInfo.SellerName
  158. au.SellerMobile = authInfo.SellerMobile
  159. au.HasPermission = authInfo.HasPermission
  160. au.OperationMode = authInfo.OperationMode
  161. if au.HasPermission == 1 {
  162. // 非宏观权限进一步判断是否有权限
  163. if list[i].ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, list[i].ChartPermissionName) {
  164. au.HasPermission = 2
  165. }
  166. }
  167. // 无权限的弹框提示
  168. if au.HasPermission != 1 {
  169. if au.OperationMode == services.UserPermissionOperationModeCall {
  170. if list[i].Type == 1 {
  171. au.PopupMsg = services.UserPermissionPopupMsgCallActivity
  172. } else {
  173. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  174. }
  175. } else {
  176. if list[i].Type == 1 {
  177. au.PopupMsg = services.UserPermissionPopupMsgApplyActivity
  178. } else {
  179. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  180. }
  181. }
  182. }
  183. list[i].AuthInfo = au
  184. list[i].PublishTime = utils.StrTimeToTime(list[i].PublishTime).Format(utils.FormatDate)
  185. // 默认图
  186. if list[i].BackgroundImg == "" {
  187. if list[i].Type == 1 {
  188. list[i].BackgroundImg = audioMap[list[i].ChartPermissionId]
  189. } else {
  190. list[i].BackgroundImg = videoMap[list[i].ChartPermissionId]
  191. }
  192. }
  193. // 分享图
  194. if list[i].ShareImg == "" {
  195. if list[i].Type == 1 {
  196. list[i].ShareImg = audioShareMap[list[i].ChartPermissionId]
  197. } else {
  198. list[i].ShareImg = videoShareMap[list[i].ChartPermissionId]
  199. }
  200. }
  201. }
  202. resp := new(models.MicroRoadShowListResp)
  203. page := paging.GetPaging(currentIndex, pageSize, total)
  204. resp.List = list
  205. resp.Paging = page
  206. br.Ret = 200
  207. br.Success = true
  208. br.Msg = "获取成功"
  209. br.Data = resp
  210. }
  211. // @Title 记录用户浏览音频回放接口
  212. // @Description 记录用户浏览音频回放接口
  213. // @Param request body models.ActivityIdRep true "type json string"
  214. // @Success Ret=200 {object} models.AppointmentResp
  215. // @router /videoHistory/add [post]
  216. func (this *MicroRoadShowController) VideoHistoryAdd() {
  217. br := new(models.BaseResponse).Init()
  218. defer func() {
  219. this.Data["json"] = br
  220. this.ServeJSON()
  221. }()
  222. user := this.User
  223. if user == nil {
  224. br.Msg = "请登录"
  225. br.ErrMsg = "请登录,用户信息为空"
  226. br.Ret = 408
  227. return
  228. }
  229. uid := user.UserId
  230. var req models.AddVideoHistoryReq
  231. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  232. if err != nil {
  233. br.Msg = "参数解析异常!"
  234. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  235. return
  236. }
  237. videoId := req.VideoId
  238. playSeconds := req.PlaySeconds
  239. sourceType := req.SourceType
  240. if sourceType == 0 {
  241. sourceType = 1
  242. }
  243. var sellerName string
  244. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  245. if err != nil {
  246. br.Msg = "报名失败!"
  247. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  248. return
  249. }
  250. if sourceType == 1 {
  251. item := models.CygxMicroRoadshowVideoHistory{
  252. VideoId: videoId,
  253. UserId: uid,
  254. Mobile: user.Mobile,
  255. Email: user.Email,
  256. CompanyId: user.CompanyId,
  257. CompanyName: user.CompanyName,
  258. RealName: user.RealName,
  259. SellerName: sellerName,
  260. PlaySeconds: strconv.Itoa(playSeconds),
  261. CreateTime: time.Now(),
  262. ModifyTime: time.Now(),
  263. }
  264. if playSeconds != 0 {
  265. lastItem, err := models.GetLastCygxMicroRoadshowVideoHistory(videoId, user.UserId)
  266. if err != nil {
  267. br.Msg = "操作失败"
  268. br.ErrMsg = "操作失败,GetLastCygxMicroRoadshowVideoHistory Err:" + err.Error()
  269. return
  270. }
  271. err = models.UpdateLastCygxActivityVideoHistory(strconv.Itoa(playSeconds), lastItem.Id)
  272. if err != nil {
  273. br.Msg = "更新失败"
  274. br.ErrMsg = "更新失败,UpdateLastCygxActivityVideoHistory Err:" + err.Error()
  275. return
  276. }
  277. } else {
  278. err = models.AddCygxMicroRoadshowVideoHistory(&item)
  279. if err != nil {
  280. br.Msg = "操作失败"
  281. br.ErrMsg = "操作失败,Err:" + err.Error()
  282. return
  283. }
  284. err = models.UpdateCygxActivityVideoCounts(videoId)
  285. if err != nil {
  286. br.Msg = "更新失败"
  287. br.ErrMsg = "更新失败,Err:" + err.Error()
  288. return
  289. }
  290. }
  291. go services.MicroRoadshowVideoUserRmind(user, videoId)
  292. } else if sourceType == 2 {
  293. err = services.AddActivityVideoHistory(user, videoId)
  294. if err != nil {
  295. br.Msg = "更新失败"
  296. br.ErrMsg = "更新失败,AddActivityVideoHistory Err:" + err.Error()
  297. return
  298. }
  299. }
  300. br.Ret = 200
  301. br.Success = true
  302. br.Msg = "操作成功"
  303. return
  304. }
  305. // @Title 微路演新增留言
  306. // @Description 微路演新增留言接口
  307. // @Param request body models.AddVideoCommnetReq true "type json string"
  308. // @Success Ret=200 {object} models.AppointmentResp
  309. // @router /comment/add [post]
  310. func (this *MicroRoadShowController) CommentAdd() {
  311. br := new(models.BaseResponse).Init()
  312. defer func() {
  313. this.Data["json"] = br
  314. this.ServeJSON()
  315. }()
  316. user := this.User
  317. if user == nil {
  318. br.Msg = "请登录"
  319. br.ErrMsg = "请登录,用户信息为空"
  320. br.Ret = 408
  321. return
  322. }
  323. uid := user.UserId
  324. var req models.AddVideoCommnetReq
  325. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  326. if err != nil {
  327. br.Msg = "参数解析异常!"
  328. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  329. return
  330. }
  331. sourceType := req.SourceType
  332. if sourceType == 0 {
  333. sourceType = 1
  334. }
  335. item := models.CygxArticleComment{
  336. UserId: uid,
  337. CreateTime: time.Now(),
  338. RealName: user.RealName,
  339. Mobile: user.Mobile,
  340. Email: user.Email,
  341. CompanyId: user.CompanyId,
  342. CompanyName: user.CompanyName,
  343. Content: req.Content,
  344. Title: req.Title,
  345. }
  346. var resourceId int
  347. if sourceType == 1 {
  348. activityVoiceInfo, _ := models.GetCygxActivityVoiceByActivityId(req.Id)
  349. if activityVoiceInfo == nil {
  350. br.Msg = "操作失败"
  351. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(req.Id)
  352. return
  353. }
  354. item.ActivityId = req.Id
  355. item.ActivityVoiceId = activityVoiceInfo.ActivityVoiceId
  356. resourceId = activityVoiceInfo.ActivityId
  357. } else if sourceType == 2 {
  358. activityInfo, _ := models.GetCygxActivityVideoByActivityId(req.Id)
  359. if activityInfo == nil {
  360. br.Msg = "操作失败"
  361. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(req.Id)
  362. return
  363. }
  364. item.VideoId = activityInfo.VideoId
  365. item.ActivityId = req.Id
  366. resourceId = activityInfo.ActivityId
  367. } else if sourceType == 3 {
  368. item.VideoId = req.Id
  369. microVideo, e := models.GetMicroRoadshowVideoById(req.Id)
  370. if e != nil {
  371. br.Msg = "操作失败"
  372. br.ErrMsg = "微路演视频信息有误, 不存在的VideoId: " + strconv.Itoa(req.Id)
  373. return
  374. }
  375. item.IndustryId = microVideo.IndustryId
  376. resourceId = microVideo.IndustryId
  377. }
  378. _, err = models.AddArticleComment(&item)
  379. if err != nil {
  380. br.Msg = "提交失败"
  381. br.ErrMsg = "提交留言失败,Err:" + err.Error()
  382. return
  383. }
  384. services.SendWxMsgWithMicroRoadshowAsk(req, user, resourceId)
  385. br.Ret = 200
  386. br.Success = true
  387. br.Msg = "操作成功"
  388. return
  389. }
  390. // @Title 微路演收藏
  391. // @Description 微路演收藏
  392. // @Param request body models.MicroRoadshowCollectReq true "type json string"
  393. // @Success 200 {object} models.FontsCollectResp
  394. // @router /collect [post]
  395. func (this *MicroRoadShowController) Collect() {
  396. br := new(models.BaseResponse).Init()
  397. defer func() {
  398. this.Data["json"] = br
  399. this.ServeJSON()
  400. }()
  401. user := this.User
  402. if user == nil {
  403. br.Msg = "请重新登录"
  404. br.Ret = 408
  405. return
  406. }
  407. uid := user.UserId
  408. var req models.MicroRoadshowCollectReq
  409. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  410. if err != nil {
  411. br.Msg = "参数解析异常!"
  412. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  413. return
  414. }
  415. if req.SourceType == 1 {
  416. _, err := models.GetCygxActivityVoiceById(req.Id)
  417. if err != nil {
  418. br.Msg = "获取信息失败"
  419. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  420. return
  421. }
  422. count, err := models.GetVoiceCollectCount(uid, req.Id)
  423. if err != nil {
  424. br.Msg = "获取数据失败!"
  425. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  426. return
  427. }
  428. resp := new(models.ArticleCollectResp)
  429. if count <= 0 {
  430. item := new(models.CygxArticleCollect)
  431. item.ActivityVoiceId = req.Id
  432. item.UserId = uid
  433. item.CreateTime = time.Now()
  434. item.Mobile = user.Mobile
  435. item.Email = user.Email
  436. item.CompanyId = user.CompanyId
  437. item.CompanyName = user.CompanyName
  438. item.RealName = user.RealName
  439. _, err = models.AddCygxArticleCollect(item)
  440. if err != nil {
  441. br.Msg = "收藏失败"
  442. br.ErrMsg = "收藏失败,Err:" + err.Error()
  443. return
  444. }
  445. br.Msg = "收藏成功"
  446. resp.Status = 1
  447. // 文章收藏消息发送
  448. //go services.ArticleUserRemind(user, detail, 2)
  449. } else {
  450. err = models.RemoveVoiceCollect(uid, req.Id)
  451. if err != nil {
  452. br.Msg = "取消收藏失败"
  453. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  454. return
  455. }
  456. br.Msg = "已取消收藏"
  457. resp.Status = 2
  458. }
  459. collectTotal, err := models.GetVoiceCollectUsersCount(req.Id)
  460. if err != nil {
  461. br.Msg = "获取数据失败"
  462. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  463. return
  464. }
  465. resp.CollectCount = collectTotal
  466. br.Ret = 200
  467. br.Success = true
  468. br.Data = resp
  469. } else if req.SourceType == 2 {
  470. _, err := models.GetCygxActivityVideoById(req.Id)
  471. if err != nil {
  472. br.Msg = "获取信息失败"
  473. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  474. return
  475. }
  476. count, err := models.GetActivityVideoCollectCount(uid, req.Id)
  477. if err != nil {
  478. br.Msg = "获取数据失败!"
  479. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  480. return
  481. }
  482. resp := new(models.ArticleCollectResp)
  483. if count <= 0 {
  484. item := new(models.CygxArticleCollect)
  485. item.ActivityVideoId = req.Id
  486. item.UserId = uid
  487. item.CreateTime = time.Now()
  488. item.Mobile = user.Mobile
  489. item.Email = user.Email
  490. item.CompanyId = user.CompanyId
  491. item.CompanyName = user.CompanyName
  492. item.RealName = user.RealName
  493. _, err = models.AddCygxArticleCollect(item)
  494. if err != nil {
  495. br.Msg = "收藏失败"
  496. br.ErrMsg = "收藏失败,Err:" + err.Error()
  497. return
  498. }
  499. br.Msg = "收藏成功"
  500. resp.Status = 1
  501. // 文章收藏消息发送
  502. //go services.ArticleUserRemind(user, detail, 2)
  503. } else {
  504. err = models.RemoveActivityVideoCollect(uid, req.Id)
  505. if err != nil {
  506. br.Msg = "取消收藏失败"
  507. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  508. return
  509. }
  510. br.Msg = "已取消收藏"
  511. resp.Status = 2
  512. }
  513. collectTotal, err := models.GetActivityVideoCollectUsersCount(req.Id)
  514. if err != nil {
  515. br.Msg = "获取数据失败"
  516. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  517. return
  518. }
  519. resp.CollectCount = collectTotal
  520. br.Ret = 200
  521. br.Success = true
  522. br.Data = resp
  523. } else if req.SourceType == 3 {
  524. _, err := models.GetMicroRoadshowVideoById(req.Id)
  525. if err != nil {
  526. br.Msg = "获取信息失败"
  527. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  528. return
  529. }
  530. count, err := models.GetVideoCollectCount(uid, req.Id)
  531. if err != nil {
  532. br.Msg = "获取数据失败!"
  533. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  534. return
  535. }
  536. resp := new(models.ArticleCollectResp)
  537. if count <= 0 {
  538. item := new(models.CygxArticleCollect)
  539. item.VideoId = req.Id
  540. item.UserId = uid
  541. item.CreateTime = time.Now()
  542. item.Mobile = user.Mobile
  543. item.Email = user.Email
  544. item.CompanyId = user.CompanyId
  545. item.CompanyName = user.CompanyName
  546. item.RealName = user.RealName
  547. _, err = models.AddCygxArticleCollect(item)
  548. if err != nil {
  549. br.Msg = "收藏失败"
  550. br.ErrMsg = "收藏失败,Err:" + err.Error()
  551. return
  552. }
  553. br.Msg = "收藏成功"
  554. resp.Status = 1
  555. // 文章收藏消息发送
  556. //go services.ArticleUserRemind(user, detail, 2)
  557. } else {
  558. err = models.RemoveVideoCollect(uid, req.Id)
  559. if err != nil {
  560. br.Msg = "取消收藏失败"
  561. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  562. return
  563. }
  564. br.Msg = "已取消收藏"
  565. resp.Status = 2
  566. }
  567. collectTotal, err := models.GetVideoCollectUsersCount(req.Id)
  568. if err != nil {
  569. br.Msg = "获取数据失败"
  570. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  571. return
  572. }
  573. resp.CollectCount = collectTotal
  574. br.Ret = 200
  575. br.Success = true
  576. br.Data = resp
  577. }
  578. }
  579. // @Title 我的收藏微路演列表
  580. // @Description 我的收藏微路演列表接口
  581. // @Param PageSize query int true "每页数据条数"
  582. // @Param CurrentIndex query int true "当前页页码,从1开始"
  583. // @Success 200 {object} models.HomeListResp
  584. // @router /mycollect [get]
  585. func (this *MicroRoadShowController) Mycollect() {
  586. br := new(models.BaseResponse).Init()
  587. defer func() {
  588. this.Data["json"] = br
  589. this.ServeJSON()
  590. }()
  591. user := this.User
  592. if user == nil {
  593. br.Msg = "请登录"
  594. br.ErrMsg = "请登录,用户信息为空"
  595. br.Ret = 408
  596. return
  597. }
  598. pageSize, _ := this.GetInt("PageSize")
  599. currentIndex, _ := this.GetInt("CurrentIndex")
  600. if pageSize <= 0 {
  601. pageSize = utils.PageSize20
  602. }
  603. if currentIndex <= 0 {
  604. currentIndex = 1
  605. }
  606. userId := user.UserId
  607. listMycollect, err := models.GetUserMicroRoadshowCollectList(userId)
  608. if err != nil {
  609. br.Msg = "获取数据失败"
  610. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  611. return
  612. }
  613. var audioIds []string
  614. var videoIds []string
  615. var activityVideoIds []string
  616. for _, item := range listMycollect {
  617. if item.ActivityVoiceId > 0 {
  618. audioIds = append(audioIds, strconv.Itoa(item.ActivityVoiceId))
  619. } else if item.VideoId > 0 {
  620. videoIds = append(videoIds, strconv.Itoa(item.VideoId))
  621. } else if item.ActivityVideoId > 0 {
  622. activityVideoIds = append(activityVideoIds, strconv.Itoa(item.ActivityVideoId))
  623. }
  624. }
  625. if len(audioIds) == 0 && len(videoIds) == 0 && len(activityVideoIds) == 0 {
  626. resp := new(models.MicroRoadShowListResp)
  627. page := paging.GetPaging(currentIndex, pageSize, 0)
  628. resp.List = make([]*models.MicroRoadShowPageList, 0)
  629. resp.Paging = page
  630. br.Ret = 200
  631. br.Success = true
  632. br.Msg = "获取成功"
  633. br.Data = resp
  634. return
  635. }
  636. audioIdstr := strings.Join(audioIds, ",")
  637. ideoIdsStr := strings.Join(videoIds, ",")
  638. activityVideoIdsStr := strings.Join(activityVideoIds, ",")
  639. // 微路演列表
  640. list, total, e := services.GetMicroRoadShowMycollect(pageSize, currentIndex, audioIdstr, ideoIdsStr, activityVideoIdsStr)
  641. if e != nil {
  642. br.Msg = "获取失败"
  643. br.ErrMsg = "获取微路演列表失败, Err: " + e.Error()
  644. return
  645. }
  646. for _, item := range list {
  647. if item.Type == 1 {
  648. //音频
  649. count, err := models.GetVoiceCollectCount(user.UserId, item.Id)
  650. if err != nil {
  651. br.Msg = "获取数据失败!"
  652. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  653. return
  654. }
  655. if count > 0 {
  656. item.IsCollect = true
  657. }
  658. } else if item.Type == 2 {
  659. //活动视频
  660. count, err := models.GetActivityVideoCollectCount(user.UserId, item.Id)
  661. if err != nil {
  662. br.Msg = "获取数据失败!"
  663. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  664. return
  665. }
  666. if count > 0 {
  667. item.IsCollect = true
  668. }
  669. } else if item.Type == 3 {
  670. //微路演视频
  671. count, err := models.GetVideoCollectCount(user.UserId, item.Id)
  672. if err != nil {
  673. br.Msg = "获取数据失败!"
  674. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  675. return
  676. }
  677. if count > 0 {
  678. item.IsCollect = true
  679. }
  680. }
  681. }
  682. // 用户权限
  683. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  684. if e != nil {
  685. br.Msg = "获取失败"
  686. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  687. return
  688. }
  689. // 获取默认图配置
  690. audioMap, videoMap, audioShareMap, videoShareMap, e := services.GetMicroRoadShowDefaultImgConfig()
  691. if e != nil {
  692. br.Msg = "获取失败"
  693. br.ErrMsg = "获取微路演列表失败, Err: " + e.Error()
  694. return
  695. }
  696. for i := range list {
  697. // 权限
  698. au := new(models.UserPermissionAuthInfo)
  699. au.SellerName = authInfo.SellerName
  700. au.SellerMobile = authInfo.SellerMobile
  701. au.HasPermission = authInfo.HasPermission
  702. au.OperationMode = authInfo.OperationMode
  703. if au.HasPermission == 1 {
  704. // 非宏观权限进一步判断是否有权限
  705. if list[i].ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, list[i].ChartPermissionName) {
  706. au.HasPermission = 2
  707. }
  708. }
  709. // 无权限的弹框提示
  710. if au.HasPermission != 1 {
  711. if au.OperationMode == services.UserPermissionOperationModeCall {
  712. if list[i].Type == 1 {
  713. au.PopupMsg = services.UserPermissionPopupMsgCallActivity
  714. } else {
  715. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  716. }
  717. } else {
  718. if list[i].Type == 1 {
  719. au.PopupMsg = services.UserPermissionPopupMsgApplyActivity
  720. } else {
  721. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  722. }
  723. }
  724. }
  725. list[i].AuthInfo = au
  726. list[i].PublishTime = utils.StrTimeToTime(list[i].PublishTime).Format(utils.FormatDate)
  727. // 默认图
  728. if list[i].BackgroundImg == "" {
  729. if list[i].Type == 1 {
  730. list[i].BackgroundImg = audioMap[list[i].ChartPermissionId]
  731. } else {
  732. list[i].BackgroundImg = videoMap[list[i].ChartPermissionId]
  733. }
  734. }
  735. // 分享图
  736. if list[i].ShareImg == "" {
  737. if list[i].Type == 1 {
  738. list[i].ShareImg = audioShareMap[list[i].ChartPermissionId]
  739. } else {
  740. list[i].ShareImg = videoShareMap[list[i].ChartPermissionId]
  741. }
  742. }
  743. }
  744. resp := new(models.MicroRoadShowListResp)
  745. page := paging.GetPaging(currentIndex, pageSize, total)
  746. resp.List = list
  747. resp.Paging = page
  748. br.Ret = 200
  749. br.Success = true
  750. br.Msg = "获取成功"
  751. br.Data = resp
  752. }