article.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "hongze/hongze_cygx/models"
  5. "hongze/hongze_cygx/services"
  6. "hongze/hongze_cygx/utils"
  7. "html"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type ArticleController struct {
  13. BaseAuthController
  14. }
  15. type ArticleCommonController struct {
  16. BaseCommonController
  17. }
  18. // @Title 获取报告详情
  19. // @Description 获取报告详情接口
  20. // @Param ArticleId query int true "报告ID"
  21. // @Success 200 {object} models.ArticleDetailResp
  22. // @router /detail [get]
  23. func (this *ArticleController) Detail() {
  24. br := new(models.BaseResponse).Init()
  25. defer func() {
  26. this.Data["json"] = br
  27. this.ServeJSON()
  28. }()
  29. user := this.User
  30. if user == nil {
  31. br.Msg = "请登录"
  32. br.ErrMsg = "请登录,用户信息为空"
  33. br.Ret = 408
  34. return
  35. }
  36. uid := user.UserId
  37. articleId, err := this.GetInt("ArticleId")
  38. if articleId <= 0 {
  39. br.Msg = "文章不存在"
  40. br.ErrMsg = "文章不存在,文章ID错误"
  41. return
  42. }
  43. detail := new(models.ArticleDetail)
  44. hasPermission := 0
  45. hasFree := 0
  46. //判断是否已经申请过
  47. applyCount, err := models.GetApplyRecordCount(uid)
  48. if err != nil && err.Error() != utils.ErrNoRow() {
  49. br.Msg = "获取信息失败"
  50. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  51. return
  52. }
  53. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  54. if user.CompanyId > 1 {
  55. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  56. if err != nil {
  57. br.Msg = "获取信息失败"
  58. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  59. return
  60. }
  61. detail, err = models.GetArticleDetailById(articleId)
  62. if err != nil {
  63. br.Msg = "获取信息失败"
  64. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  65. return
  66. }
  67. detail.Body = html.UnescapeString(detail.Body)
  68. //detail.Abstract = html.UnescapeString(detail.Abstract)
  69. detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
  70. if companyPermission == "" {
  71. if applyCount > 0 {
  72. hasPermission = 5
  73. } else {
  74. hasPermission = 2
  75. }
  76. hasFree = 2
  77. goto Loop
  78. } else {
  79. hasFree = 1
  80. // 原有的权限校验 更改于 2021-05-18
  81. //articlePermission, err := models.GetArticlePermission(detail.SubCategoryName)
  82. //fmt.Println(articlePermission)
  83. //fmt.Println(detail.SubCategoryName)
  84. //if err != nil {
  85. // br.Msg = "获取信息失败"
  86. // br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  87. // return
  88. //}
  89. //if articlePermission == nil {
  90. // br.Msg = "获取信息失败"
  91. // br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  92. // return
  93. //}
  94. //for _, p := range articlePermission {
  95. // if strings.Contains(companyPermission, p.PermissionName) {
  96. // hasPermission = 1
  97. // historyRecord := new(models.CygxArticleHistoryRecord)
  98. // historyRecord.UserId = uid
  99. // historyRecord.ArticleId = articleId
  100. // historyRecord.CreateTime = time.Now()
  101. // historyRecord.Mobile = user.Mobile
  102. // historyRecord.Email = user.Email
  103. // historyRecord.CompanyId = user.CompanyId
  104. // historyRecord.CompanyName = user.CompanyName
  105. // go models.AddCygxArticleHistoryRecord(historyRecord)
  106. // break
  107. // } else { //无该行业权限
  108. // hasPermission = 3
  109. // }
  110. //}
  111. var articlePermissionPermissionName string
  112. if detail.CategoryId > 0 {
  113. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  114. if err != nil {
  115. br.Msg = "获取信息失败"
  116. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  117. return
  118. }
  119. if articlePermission == nil {
  120. br.Msg = "获取信息失败"
  121. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  122. return
  123. }
  124. articlePermissionPermissionName = articlePermission.PermissionName
  125. } else {
  126. articlePermissionPermissionName = detail.CategoryName
  127. }
  128. if strings.Contains(companyPermission, articlePermissionPermissionName) {
  129. hasPermission = 1
  130. historyRecord := new(models.CygxArticleHistoryRecord)
  131. historyRecord.UserId = uid
  132. historyRecord.ArticleId = articleId
  133. historyRecord.CreateTime = time.Now()
  134. historyRecord.Mobile = user.Mobile
  135. historyRecord.Email = user.Email
  136. historyRecord.CompanyId = user.CompanyId
  137. historyRecord.CompanyName = user.CompanyName
  138. go models.AddCygxArticleHistoryRecord(historyRecord)
  139. } else { //无该行业权限
  140. hasPermission = 3
  141. }
  142. if hasPermission == 1 {
  143. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  144. if !utils.Rc.IsExist(key) {
  145. //新增浏览记录
  146. record := new(models.CygxArticleViewRecord)
  147. record.UserId = uid
  148. record.ArticleId = articleId
  149. record.CreateTime = time.Now()
  150. record.Mobile = user.Mobile
  151. record.Email = user.Email
  152. record.CompanyId = user.CompanyId
  153. record.CompanyName = user.CompanyName
  154. go models.AddCygxArticleViewRecord(record)
  155. utils.Rc.Put(key, 1, 5*time.Second)
  156. models.ModifyReportLastViewTime(uid)
  157. }
  158. }
  159. }
  160. collectCount, err := models.GetArticleCollectCount(uid, articleId)
  161. if err != nil && err.Error() != utils.ErrNoRow() {
  162. br.Msg = "获取信息失败"
  163. br.ErrMsg = "判断是否已收藏失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  164. return
  165. }
  166. if collectCount > 0 {
  167. detail.IsCollect = true
  168. }
  169. interviewApplyItem, err := models.GetArticleInterviewApply(uid, articleId)
  170. if err != nil && err.Error() != utils.ErrNoRow() {
  171. br.Msg = "获取信息失败"
  172. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  173. return
  174. }
  175. if interviewApplyItem != nil && interviewApplyItem.InterviewApplyId > 0 {
  176. detail.IsInterviewApply = true
  177. detail.InterviewApplyStatus = interviewApplyItem.Status
  178. }
  179. //获取销售手机号
  180. sellerItem, err := models.GetSellerByCompanyId(user.CompanyId)
  181. if err != nil {
  182. br.Msg = "获取信息失败"
  183. br.ErrMsg = "获取销售数据失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  184. return
  185. }
  186. if sellerItem != nil {
  187. detail.SellerMobile = sellerItem.Mobile
  188. detail.SellerName = sellerItem.RealName
  189. }
  190. sellerList, err := models.GetSellerList(articleId)
  191. if err != nil {
  192. br.Msg = "获取信息失败"
  193. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  194. return
  195. }
  196. detail.SellerList = sellerList
  197. } else { //潜在客户
  198. if applyCount > 0 {
  199. hasPermission = 5
  200. } else {
  201. hasPermission = 4
  202. }
  203. }
  204. Loop:
  205. if hasPermission != 1 {
  206. detail.Body = ""
  207. detail.BodyText = ""
  208. }
  209. resp := new(models.ArticleDetailResp)
  210. resp.HasPermission = hasPermission
  211. resp.HasFree = hasFree
  212. resp.Detail = detail
  213. br.Ret = 200
  214. br.Success = true
  215. br.Msg = "获取成功"
  216. br.Data = resp
  217. }
  218. // @Title 收藏
  219. // @Description 收藏
  220. // @Param request body models.ArticleCollectReq true "type json string"
  221. // @Success 200 {object} models.FontsCollectResp
  222. // @router /collect [post]
  223. func (this *ArticleController) ArticleCollect() {
  224. br := new(models.BaseResponse).Init()
  225. defer func() {
  226. this.Data["json"] = br
  227. this.ServeJSON()
  228. }()
  229. user := this.User
  230. if user == nil {
  231. br.Msg = "请重新登录"
  232. br.Ret = 408
  233. return
  234. }
  235. uid := user.UserId
  236. var req models.ArticleCollectReq
  237. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  238. if err != nil {
  239. br.Msg = "参数解析异常!"
  240. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  241. return
  242. }
  243. count, err := models.GetArticleCollectCount(uid, req.ArticleId)
  244. if err != nil {
  245. br.Msg = "获取数据失败!"
  246. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  247. return
  248. }
  249. resp := new(models.ArticleCollectResp)
  250. if count <= 0 {
  251. item := new(models.CygxArticleCollect)
  252. item.ArticleId = req.ArticleId
  253. item.UserId = uid
  254. item.CreateTime = time.Now()
  255. _, err = models.AddCygxArticleCollect(item)
  256. if err != nil {
  257. br.Msg = "收藏失败"
  258. br.ErrMsg = "收藏失败,Err:" + err.Error()
  259. return
  260. }
  261. br.Msg = "收藏成功"
  262. resp.Status = 1
  263. } else {
  264. err = models.RemoveArticleCollect(uid, req.ArticleId)
  265. if err != nil {
  266. br.Msg = "取消收藏失败"
  267. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  268. return
  269. }
  270. br.Msg = "已取消收藏"
  271. resp.Status = 2
  272. }
  273. collectTotal, err := models.GetArticleCollectUsersCount(req.ArticleId)
  274. if err != nil {
  275. br.Msg = "获取数据失败"
  276. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  277. return
  278. }
  279. resp.CollectCount = collectTotal
  280. br.Ret = 200
  281. br.Success = true
  282. br.Data = resp
  283. }
  284. // @Title 访谈申请
  285. // @Description 访谈申请
  286. // @Param request body models.ArticleInterviewApplyReq true "type json string"
  287. // @Success 200 {object} models.FontsCollectResp
  288. // @router /interview/apply [post]
  289. func (this *ArticleController) InterviewApply() {
  290. br := new(models.BaseResponse).Init()
  291. defer func() {
  292. this.Data["json"] = br
  293. this.ServeJSON()
  294. }()
  295. user := this.User
  296. if user == nil {
  297. br.Msg = "请重新登录"
  298. br.Ret = 408
  299. return
  300. }
  301. uid := user.UserId
  302. var req models.ArticleInterviewApplyReq
  303. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  304. if err != nil {
  305. br.Msg = "参数解析异常!"
  306. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  307. return
  308. }
  309. article, err := models.GetArticleDetailById(req.ArticleId)
  310. if err != nil {
  311. br.Msg = "获取纪要失败!"
  312. br.ErrMsg = "获取纪要失败,Err:" + err.Error()
  313. return
  314. }
  315. count, err := models.GetArticleInterviewApplyCount(uid, req.ArticleId)
  316. if err != nil {
  317. br.Msg = "获取数据失败!"
  318. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  319. return
  320. }
  321. resp := new(models.ArticleInterviewApplyResp)
  322. if count <= 0 {
  323. item := new(models.CygxInterviewApply)
  324. item.ArticleId = req.ArticleId
  325. item.UserId = uid
  326. item.CompanyId = user.CompanyId
  327. item.Status = "待邀请"
  328. item.Sort = 1
  329. item.ArticleTitle = article.Title
  330. item.CreateTime = time.Now()
  331. item.ModifyTime = time.Now()
  332. item.ArticleIdMd5 = article.ArticleIdMd5
  333. _, err = models.AddCygxInterviewApply(item)
  334. if err != nil {
  335. br.Msg = "申请失败"
  336. br.ErrMsg = "申请失败,Err:" + err.Error()
  337. return
  338. }
  339. br.Msg = "申请成功"
  340. resp.Status = 1
  341. //发送模板消息
  342. if user.CompanyId > 1 {
  343. mobile := user.Mobile
  344. if mobile == "" {
  345. mobile = user.Email
  346. }
  347. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  348. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  349. openIpItem, _ := models.GetUserRecordByUserId(sellerItem.UserId, 1)
  350. if openIpItem != nil && openIpItem.OpenId != "" {
  351. go services.SendInterviewApplyTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem.OpenId)
  352. }
  353. }
  354. }
  355. } else {
  356. err = models.RemoveArticleInterviewApply(uid, req.ArticleId)
  357. if err != nil {
  358. br.Msg = "取消申请失败"
  359. br.ErrMsg = "取消申请失败,Err:" + err.Error()
  360. return
  361. }
  362. br.Msg = "已取消申请"
  363. resp.Status = 2
  364. if user.CompanyId > 1 {
  365. mobile := user.Mobile
  366. if mobile == "" {
  367. mobile = user.Email
  368. }
  369. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  370. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  371. openIpItem, _ := models.GetUserRecordByUserId(sellerItem.UserId, 1)
  372. if openIpItem != nil && openIpItem.OpenId != "" {
  373. go services.SendInterviewApplyCancelTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem.OpenId)
  374. }
  375. }
  376. }
  377. }
  378. br.Ret = 200
  379. br.Success = true
  380. br.Data = resp
  381. }
  382. // @Title 获取报告详情
  383. // @Description 获取报告详情接口
  384. // @Param ArticleIdMd5 query int true "报告ID"
  385. // @Success 200 {object} models.ArticleDetailResp
  386. // @router /look/detail [get]
  387. func (this *ArticleCommonController) Detail() {
  388. br := new(models.BaseResponse).Init()
  389. defer func() {
  390. this.Data["json"] = br
  391. this.ServeJSON()
  392. }()
  393. articleIdMd5 := this.GetString("ArticleIdMd5")
  394. if articleIdMd5 == "" {
  395. br.Msg = "参数错误"
  396. br.ErrMsg = "参数错误"
  397. return
  398. }
  399. resp := new(models.ArticleDetailResp)
  400. detail, err := models.GetArticleDetailByIdMd5(articleIdMd5)
  401. if err != nil && err.Error() != utils.ErrNoRow() {
  402. br.Msg = "获取信息失败"
  403. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  404. return
  405. }
  406. if detail == nil {
  407. resp.HasPermission = 2
  408. } else {
  409. resp.HasPermission = 1
  410. }
  411. if detail != nil {
  412. detail.Body = html.UnescapeString(detail.Body)
  413. detail.Abstract = html.UnescapeString(detail.Abstract)
  414. }
  415. sellerList, err := models.GetSellerList(detail.ArticleId)
  416. if err != nil {
  417. br.Msg = "获取信息失败"
  418. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + ";articleId" + strconv.Itoa(detail.ArticleId)
  419. return
  420. }
  421. detail.SellerList = sellerList
  422. resp.Detail = detail
  423. br.Ret = 200
  424. br.Success = true
  425. br.Msg = "获取成功"
  426. br.Data = resp
  427. }
  428. // @Title 上传文章阅读时间
  429. // @Description 上传文章阅读时间接口
  430. // @Param request body models.AddStopTimeRep true "type json string"
  431. // @Success 200 {object} models.ArticleDetailResp
  432. // @router /addStopTime [post]
  433. func (this *ArticleController) AddStopTime() {
  434. br := new(models.BaseResponse).Init()
  435. defer func() {
  436. this.Data["json"] = br
  437. this.ServeJSON()
  438. }()
  439. user := this.User
  440. if user == nil {
  441. br.Msg = "请登录"
  442. br.ErrMsg = "请登录,用户信息为空"
  443. br.Ret = 408
  444. return
  445. }
  446. var req models.AddStopTimeRep
  447. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  448. if err != nil {
  449. br.Msg = "参数解析异常!"
  450. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  451. return
  452. }
  453. uid := user.UserId
  454. articleId := req.ArticleId
  455. stopTime := req.StopTime
  456. if articleId <= 0 {
  457. br.Msg = "参数错误"
  458. br.ErrMsg = "参数错误"
  459. return
  460. }
  461. if stopTime == 0 {
  462. stopTime = 1
  463. //br.Msg = "时间格式错误"
  464. //br.ErrMsg = "时间错误"
  465. //return
  466. }
  467. detail := new(models.ArticleDetail)
  468. hasPermission := 0
  469. hasFree := 0
  470. //判断是否已经申请过
  471. applyCount, err := models.GetApplyRecordCount(uid)
  472. if err != nil && err.Error() != utils.ErrNoRow() {
  473. br.Msg = "获取信息失败"
  474. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  475. return
  476. }
  477. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  478. if user.CompanyId > 1 {
  479. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  480. if err != nil {
  481. br.Msg = "获取信息失败"
  482. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  483. return
  484. }
  485. detail, err = models.GetArticleDetailById(articleId)
  486. if err != nil {
  487. br.Msg = "获取信息失败"
  488. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  489. return
  490. }
  491. if companyPermission == "" {
  492. if applyCount > 0 {
  493. hasPermission = 5
  494. } else {
  495. hasPermission = 2
  496. }
  497. hasFree = 2
  498. goto Loop
  499. } else {
  500. hasFree = 1
  501. var articlePermissionPermissionName string
  502. if detail.CategoryId > 0 {
  503. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  504. if err != nil {
  505. br.Msg = "获取信息失败"
  506. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  507. return
  508. }
  509. if articlePermission == nil {
  510. br.Msg = "获取信息失败"
  511. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  512. return
  513. }
  514. articlePermissionPermissionName = articlePermission.PermissionName
  515. } else {
  516. articlePermissionPermissionName = detail.CategoryName
  517. }
  518. if strings.Contains(companyPermission, articlePermissionPermissionName) {
  519. detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
  520. if err != nil {
  521. br.Msg = "获取信息失败"
  522. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  523. return
  524. }
  525. hasPermission = 1
  526. historyRecord := new(models.AddStopTimeNewRep)
  527. historyRecord.StopTime = detailNew.StopTime + stopTime
  528. historyRecord.Id = detailNew.Id
  529. go models.AddArticleStopTime(historyRecord)
  530. } else { //无该行业权限
  531. hasPermission = 3
  532. }
  533. }
  534. } else { //潜在客户
  535. if applyCount > 0 {
  536. hasPermission = 5
  537. } else {
  538. hasPermission = 4
  539. }
  540. }
  541. Loop:
  542. resp := new(models.ArticleDetailAddStopTimeRep)
  543. resp.HasPermission = hasPermission
  544. resp.HasFree = hasFree
  545. br.Ret = 200
  546. br.Success = true
  547. br.Msg = "操作成功"
  548. br.Data = resp
  549. }