micro_roadshow.go 26 KB

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