article.go 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. package controllers
  2. import (
  3. "bufio"
  4. "github.com/pdfcpu/pdfcpu/pkg/api"
  5. "github.com/pdfcpu/pdfcpu/pkg/pdfcpu"
  6. "io"
  7. //"bufio"
  8. "encoding/json"
  9. "fmt"
  10. "github.com/medivhzhan/weapp/v2"
  11. "os"
  12. //"github.com/pdfcpu/pdfcpu/pkg/api"
  13. //"github.com/pdfcpu/pdfcpu/pkg/pdfcpu"
  14. "hongze/hongze_mfyx/models"
  15. "hongze/hongze_mfyx/services"
  16. "hongze/hongze_mfyx/utils"
  17. "html"
  18. nhttp "net/http"
  19. "strconv"
  20. "strings"
  21. "time"
  22. )
  23. type ArticleController struct {
  24. BaseAuthController
  25. }
  26. type ArticleCommonController struct {
  27. BaseCommonController
  28. }
  29. type ArticleControllerMobile struct {
  30. BaseAuthMobileController
  31. }
  32. // @Title 获取报告详情
  33. // @Description 获取报告详情接口
  34. // @Param ArticleId query int true "报告ID"
  35. // @Param IsSendWx query int false "是否是通过微信模版进来的 1是,其它否"
  36. // @Success 200 {object} models.ArticleDetailResp
  37. // @router /detail [get]
  38. func (this *ArticleController) Detail() {
  39. br := new(models.BaseResponse).Init()
  40. defer func() {
  41. this.Data["json"] = br
  42. this.ServeJSON()
  43. }()
  44. user := this.User
  45. if user == nil {
  46. br.Msg = "请登录"
  47. br.ErrMsg = "请登录,用户信息为空"
  48. br.Ret = 408
  49. return
  50. }
  51. uid := user.UserId
  52. articleId, err := this.GetInt("ArticleId")
  53. isSendWx, _ := this.GetInt("IsSendWx")
  54. if articleId <= 0 {
  55. br.Msg = "文章不存在"
  56. br.ErrMsg = "文章不存在,文章ID错误"
  57. return
  58. }
  59. detail := new(models.ArticleDetail)
  60. hasPermission := 0
  61. var haveResearch bool
  62. resp := new(models.ArticleDetailResp)
  63. detail, err = models.GetArticleDetailById(articleId)
  64. if err != nil {
  65. br.Msg = "获取信息失败"
  66. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  67. return
  68. }
  69. detail.PublishDate = utils.TimeRemoveHms2(detail.PublishDate)
  70. detail.Body = html.UnescapeString(detail.Body)
  71. detail.Body = strings.Replace(detail.Body, "<p data-f-id=\"pbf\" style=\"text-align: center; font-size: 14px; margin-top: 30px; opacity: 0.65; font-family: sans-serif;\">Powered by <a href=\"https://www.froala.com/wysiwyg-editor?pb=1\" title=\"Froala Editor\">Froala Editor</a></p>", "", -1)
  72. detail.Body = strings.Replace(detail.Body, "pre", "div", -1)
  73. detail.Abstract = html.UnescapeString(detail.Abstract)
  74. //detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  75. //作者头像
  76. if detail.DepartmentId > 0 {
  77. departmentDetail, err := models.GetArticleDepartmentDateilById(detail.DepartmentId)
  78. if err == nil {
  79. detail.DepartmentImgUrl = departmentDetail.ImgUrl
  80. }
  81. }
  82. // 判断是否属于研选类型的报告
  83. detail.IsResearch = true
  84. articleCollectMap, _ := services.GetCygxArticleCollectMap(user.UserId)
  85. detail.IsCollect = articleCollectMap[detail.ArticleId]
  86. //是否是通过模板消息进来的
  87. if isSendWx == 1 {
  88. var condition string
  89. var pars []interface{}
  90. pars = make([]interface{}, 0)
  91. condition = ` AND article_id = ? `
  92. reportMappingMap, _ := services.GetReportMappingMap()
  93. if reportMappingMap[detail.CategoryId] {
  94. chooseCategoryMap, _ := services.GetChooseCategoryMap(user)
  95. detail.IsShowFollowButton = true
  96. detail.IsFollowButton = chooseCategoryMap[detail.CategoryId]
  97. } else {
  98. pars = append(pars, articleId)
  99. industrialList, err := models.GetIndustrialArticleGroupManagementList(condition, pars)
  100. if err != nil && err.Error() != utils.ErrNoRow() {
  101. br.Msg = "获取信息失败"
  102. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  103. return
  104. }
  105. if len(industrialList) > 0 {
  106. industryUserFollowMap, err := services.GetIndustryUserFollowMap(user)
  107. if err != nil {
  108. br.Msg = "获取信息失败"
  109. br.ErrMsg = "GetActivitySignupResp,Err:" + err.Error()
  110. return
  111. }
  112. for _, v := range industrialList {
  113. if industryUserFollowMap[v.IndustrialManagementId] {
  114. detail.IsFollowButton = true
  115. }
  116. }
  117. detail.IsShowFollowButton = true
  118. }
  119. }
  120. }
  121. havePower, err := services.GetArticleDetailUserPower(user, detail)
  122. if err != nil {
  123. br.Msg = "获取信息失败"
  124. br.ErrMsg = "校验用户权限失败,Err:" + err.Error()
  125. return
  126. }
  127. if havePower {
  128. hasPermission = 1
  129. go services.ArticleHistory(articleId, user)
  130. //30分钟之内阅读同一篇文章不错二次推送
  131. key := "CYGX_ARTICLE_READ" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  132. if !utils.Rc.IsExist(key) {
  133. go services.ArticleUserRemind(user, detail, 1)
  134. utils.Rc.Put(key, 1, 30*time.Second)
  135. }
  136. articleFollowdetail, err := models.GetArticleFollowDetail(articleId, uid)
  137. if err != nil {
  138. br.Msg = "获取信息失败"
  139. br.ErrMsg = "获取关注信息失败,Err:" + err.Error()
  140. return
  141. }
  142. detail.FollowNum = articleFollowdetail.DNum
  143. detail.CollectionNum = articleFollowdetail.AcNum
  144. if articleFollowdetail.MdNum > 0 {
  145. detail.IsFollow = true
  146. }
  147. if detail.IsSummary == 1 {
  148. detail.IsBelongSummary = true
  149. }
  150. if detail.IsReport == 1 {
  151. detail.IsBelongReport = true
  152. }
  153. } else {
  154. hasPermission, err = services.GetUserDetailPermissionCode(user.UserId, user.CompanyId)
  155. if err != nil && err.Error() != utils.ErrNoRow() {
  156. br.Msg = "获取信息失败"
  157. br.ErrMsg = "获取信息失败,GetUserDetailPermissionCode Err:" + err.Error()
  158. return
  159. }
  160. //权益客户对权益销售信息进行展示
  161. if hasPermission == 2 || hasPermission == 3 {
  162. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  163. if err != nil && err.Error() != utils.ErrNoRow() {
  164. br.Msg = "获取信息失败"
  165. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  166. return
  167. }
  168. if sellerItemQy != nil {
  169. detail.SellerMobile = sellerItemQy.Mobile
  170. detail.SellerName = sellerItemQy.RealName
  171. }
  172. }
  173. detail.Body = ""
  174. detail.BodyText = ""
  175. resp.IsShowWxPay = utils.IS_SHOW_WX_PAY //是否展示微信支付按钮
  176. resp.IsCompanyApply = services.GetUserApplyRecordCountByCompanyIdPay(user.CompanyId) //获取客户是否有过历史申请记录
  177. resp.IsNeedBusinessCard = services.GetCygxUserBusinessCardCount(user.UserId, user.CompanyId) //是否需要上传名片
  178. resp.GoodsList = services.GetUserGoodsCardList() //日卡月卡商品信息
  179. for _, v := range resp.GoodsList {
  180. resp.PopupPriceMsg += v.PopupPriceMsg //价格弹窗信息
  181. }
  182. }
  183. if detail.ArticleTypeId == 14 {
  184. detail.IsApplyAppointmentExpert = true //判断文章类型是否属于专家访谈 查研观向11.0
  185. }
  186. resp.HasPermission = hasPermission
  187. resp.HaveResearch = haveResearch
  188. resp.Detail = detail
  189. if user.Mobile != "" {
  190. resp.Mobile = user.Mobile
  191. } else {
  192. resp.Mobile = user.Email
  193. }
  194. br.Ret = 200
  195. br.Success = true
  196. br.Msg = "获取成功"
  197. br.Data = resp
  198. }
  199. // @Title 收藏
  200. // @Description 收藏
  201. // @Param request body models.ArticleCollectReq true "type json string"
  202. // @Success 200 {object} models.FontsCollectResp
  203. // @router /collect [post]
  204. func (this *ArticleController) ArticleCollect() {
  205. br := new(models.BaseResponse).Init()
  206. defer func() {
  207. this.Data["json"] = br
  208. this.ServeJSON()
  209. }()
  210. user := this.User
  211. if user == nil {
  212. br.Msg = "请重新登录"
  213. br.Ret = 408
  214. return
  215. }
  216. uid := user.UserId
  217. var req models.ArticleCollectReq
  218. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  219. if err != nil {
  220. br.Msg = "参数解析异常!"
  221. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  222. return
  223. }
  224. articleId := req.ArticleId
  225. detail, err := models.GetArticleDetailById(articleId)
  226. if err != nil {
  227. br.Msg = "获取信息失败"
  228. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  229. return
  230. }
  231. count, err := models.GetArticleCollectCount(uid, articleId)
  232. if err != nil {
  233. br.Msg = "获取数据失败!"
  234. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  235. return
  236. }
  237. resp := new(models.ArticleCollectResp)
  238. if count <= 0 {
  239. item := new(models.CygxArticleCollect)
  240. item.ArticleId = req.ArticleId
  241. item.UserId = uid
  242. item.CreateTime = time.Now()
  243. item.Mobile = user.Mobile
  244. item.Email = user.Email
  245. item.CompanyId = user.CompanyId
  246. item.CompanyName = user.CompanyName
  247. item.RealName = user.RealName
  248. _, err = models.AddCygxArticleCollect(item)
  249. if err != nil {
  250. br.Msg = "收藏失败"
  251. br.ErrMsg = "收藏失败,Err:" + err.Error()
  252. return
  253. }
  254. br.Msg = "收藏成功"
  255. resp.Status = 1
  256. // 文章收藏消息发送
  257. go services.ArticleUserRemind(user, detail, 2)
  258. go services.ArticleHistoryUserLabelLogAdd(articleId, user.UserId)
  259. } else {
  260. err = models.RemoveArticleCollect(uid, articleId)
  261. if err != nil {
  262. br.Msg = "取消收藏失败"
  263. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  264. return
  265. }
  266. br.Msg = "已取消收藏"
  267. resp.Status = 2
  268. }
  269. collectTotal, err := models.GetArticleCollectUsersCount(articleId)
  270. if err != nil {
  271. br.Msg = "获取数据失败"
  272. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  273. return
  274. }
  275. resp.CollectCount = collectTotal
  276. br.Ret = 200
  277. br.Success = true
  278. br.Data = resp
  279. }
  280. // @Title 访谈申请
  281. // @Description 访谈申请
  282. // @Param request body models.ArticleInterviewApplyReq true "type json string"
  283. // @Success 200 {object} models.FontsCollectResp
  284. // @router /interview/apply [post]
  285. func (this *ArticleController) InterviewApply() {
  286. br := new(models.BaseResponse).Init()
  287. defer func() {
  288. this.Data["json"] = br
  289. this.ServeJSON()
  290. }()
  291. user := this.User
  292. if user == nil {
  293. br.Msg = "请重新登录"
  294. br.Ret = 408
  295. return
  296. }
  297. uid := user.UserId
  298. var req models.ArticleInterviewApplyReq
  299. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  300. if err != nil {
  301. br.Msg = "参数解析异常!"
  302. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  303. return
  304. }
  305. article, err := models.GetArticleDetailById(req.ArticleId)
  306. if err != nil {
  307. br.Msg = "获取纪要失败!"
  308. br.ErrMsg = "获取纪要失败,Err:" + err.Error()
  309. return
  310. }
  311. count, err := models.GetArticleInterviewApplyCount(uid, req.ArticleId)
  312. if err != nil {
  313. br.Msg = "获取数据失败!"
  314. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  315. return
  316. }
  317. resp := new(models.ArticleInterviewApplyResp)
  318. if count <= 0 {
  319. item := new(models.CygxInterviewApply)
  320. item.ArticleId = req.ArticleId
  321. item.UserId = uid
  322. item.CompanyId = user.CompanyId
  323. item.Status = "待邀请"
  324. item.Sort = 1
  325. item.ArticleTitle = article.Title
  326. item.CreateTime = time.Now()
  327. item.ModifyTime = time.Now()
  328. item.ArticleIdMd5 = article.ArticleIdMd5
  329. _, err = models.AddCygxInterviewApply(item)
  330. if err != nil {
  331. br.Msg = "申请失败"
  332. br.ErrMsg = "申请失败,Err:" + err.Error()
  333. return
  334. }
  335. br.Msg = "申请成功"
  336. resp.Status = 1
  337. //发送模板消息
  338. if user.CompanyId > 1 {
  339. mobile := user.Mobile
  340. if mobile == "" {
  341. mobile = user.Email
  342. }
  343. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  344. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  345. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  346. if openIpItem != nil && openIpItem.OpenId != "" {
  347. go services.SendInterviewApplyTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  348. }
  349. }
  350. }
  351. } else {
  352. err = models.RemoveArticleInterviewApply(uid, req.ArticleId)
  353. if err != nil {
  354. br.Msg = "取消申请失败"
  355. br.ErrMsg = "取消申请失败,Err:" + err.Error()
  356. return
  357. }
  358. br.Msg = "已取消申请"
  359. resp.Status = 2
  360. if user.CompanyId > 1 {
  361. mobile := user.Mobile
  362. if mobile == "" {
  363. mobile = user.Email
  364. }
  365. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  366. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  367. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  368. if openIpItem != nil && openIpItem.OpenId != "" {
  369. go services.SendInterviewApplyCancelTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  370. }
  371. }
  372. }
  373. }
  374. br.Ret = 200
  375. br.Success = true
  376. br.Data = resp
  377. }
  378. // @Title 上传文章阅读时间
  379. // @Description 上传文章阅读时间接口
  380. // @Param request body models.AddStopTimeRep true "type json string"
  381. // @Success 200 {object} models.ArticleDetailResp
  382. // @router /addStopTime [post]
  383. func (this *ArticleController) AddStopTime() {
  384. br := new(models.BaseResponse).Init()
  385. defer func() {
  386. this.Data["json"] = br
  387. this.ServeJSON()
  388. }()
  389. user := this.User
  390. if user == nil {
  391. br.Msg = "请登录"
  392. br.ErrMsg = "请登录,用户信息为空"
  393. br.Ret = 408
  394. return
  395. }
  396. var req models.AddStopTimeRep
  397. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  398. if err != nil {
  399. br.Msg = "参数解析异常!"
  400. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  401. return
  402. }
  403. uid := user.UserId
  404. articleId := req.ArticleId
  405. stopTime := req.StopTime
  406. outType := req.OutType
  407. source := req.Source
  408. if articleId <= 0 {
  409. br.Msg = "参数错误"
  410. br.ErrMsg = "参数错误"
  411. return
  412. }
  413. if stopTime == 0 {
  414. stopTime = 1
  415. }
  416. if outType != 2 {
  417. outType = 1
  418. }
  419. if source != "PC" {
  420. source = "MOBILE"
  421. }
  422. detail := new(models.ArticleDetail)
  423. hasPermission := 0
  424. hasFree := 0
  425. //判断是否已经申请过
  426. applyCount, err := models.GetApplyRecordCount(uid)
  427. if err != nil && err.Error() != utils.ErrNoRow() {
  428. br.Msg = "获取信息失败"
  429. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  430. return
  431. }
  432. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  433. if user.CompanyId > 1 {
  434. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  435. if err != nil {
  436. br.Msg = "获取信息失败"
  437. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  438. return
  439. }
  440. detail, err = models.GetArticleDetailById(articleId)
  441. if err != nil {
  442. br.Msg = "获取信息失败"
  443. br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  444. return
  445. }
  446. if companyPermission == "" {
  447. if applyCount > 0 {
  448. hasPermission = 5
  449. } else {
  450. hasPermission = 2
  451. }
  452. hasFree = 2
  453. goto Loop
  454. } else {
  455. hasFree = 1
  456. var articlePermissionPermissionName string
  457. if detail.CategoryId > 0 {
  458. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  459. if err != nil {
  460. br.Msg = "获取信息失败"
  461. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  462. return
  463. }
  464. if articlePermission == nil {
  465. br.Msg = "获取信息失败"
  466. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  467. return
  468. }
  469. articlePermissionPermissionName = articlePermission.PermissionName
  470. } else {
  471. articlePermissionPermissionName = detail.CategoryName
  472. }
  473. var hasPersion bool
  474. slice := strings.Split(articlePermissionPermissionName, ",")
  475. //判断用户是否开通了个人研选权限,如果有权限后缀拼接权限名称
  476. mfyxUserPermissionTotal := services.GetMfyxUserPermissionTotal(uid)
  477. if mfyxUserPermissionTotal == 1 {
  478. companyPermission += "," + utils.CHART_PERMISSION_NAME_MF_YANXUAN
  479. companyPermission += "," + utils.MAI_FANG_YAN_XUAN_NAME
  480. }
  481. //如果有研选订阅的权限,那么就拼接一个 买方研选的权限做校验
  482. if strings.Contains(companyPermission, utils.CHART_PERMISSION_NAME_MF_YANXUAN) {
  483. companyPermission += "," + utils.MAI_FANG_YAN_XUAN_NAME
  484. }
  485. for _, v := range slice {
  486. if strings.Contains(companyPermission, v) {
  487. hasPersion = true
  488. }
  489. }
  490. if hasPersion {
  491. go services.ArticleHistoryStopTime(articleId, stopTime, outType, user)
  492. } else { //无该行业权限
  493. hasPermission = 3
  494. }
  495. }
  496. } else { //潜在客户
  497. if applyCount > 0 {
  498. hasPermission = 5
  499. } else {
  500. hasPermission = 4
  501. }
  502. }
  503. Loop:
  504. resp := new(models.ArticleDetailAddStopTimeRep)
  505. resp.HasPermission = hasPermission
  506. resp.HasFree = hasFree
  507. br.Ret = 200
  508. br.Success = true
  509. br.Msg = "操作成功"
  510. br.Data = resp
  511. }
  512. // @Title 文章带问
  513. // @Description 新增文章带问接口
  514. // @Param request body models.AddArticleAskRep true "type json string"
  515. // @Success Ret=200 新增成功
  516. // @router /askAdd [post]
  517. func (this *ArticleController) AskAdd() {
  518. br := new(models.BaseResponse).Init()
  519. defer func() {
  520. this.Data["json"] = br
  521. this.ServeJSON()
  522. }()
  523. user := this.User
  524. if user == nil {
  525. br.Msg = "请登录"
  526. br.ErrMsg = "请登录,SysUser Is Empty"
  527. br.Ret = 408
  528. return
  529. }
  530. var req models.AddArticleAskRep
  531. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  532. if err != nil {
  533. br.Msg = "参数解析异常!"
  534. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  535. return
  536. }
  537. if req.Content == "" {
  538. br.Msg = "建议内容不可为空"
  539. return
  540. }
  541. content := req.Content
  542. itemToken, err := services.WxGetToken()
  543. if err != nil {
  544. br.Msg = "GetWxAccessToken Err:" + err.Error()
  545. return
  546. }
  547. if itemToken.AccessToken == "" {
  548. br.Msg = "accessToken is empty"
  549. return
  550. }
  551. commerr, err := weapp.MSGSecCheck(itemToken.AccessToken, content)
  552. if err != nil {
  553. br.Msg = "内容校验失败!"
  554. br.ErrMsg = "内容校验失败,Err:" + err.Error()
  555. return
  556. }
  557. if commerr.ErrCode != 0 {
  558. br.Msg = "内容违规,请重新提交!"
  559. br.ErrMsg = "颜文字内容违规,Err:" + commerr.ErrMSG
  560. return
  561. }
  562. articleId := req.ArticleId
  563. count, _ := models.GetArticleCountById(articleId)
  564. if count == 0 {
  565. br.Msg = "操作失败"
  566. br.ErrMsg = "文章ID错误,不存在 articleId:" + strconv.Itoa(articleId)
  567. return
  568. }
  569. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  570. if err != nil {
  571. br.Msg = "提交失败!"
  572. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  573. return
  574. }
  575. if companyDetail == nil {
  576. br.Msg = "提交失败!"
  577. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  578. return
  579. }
  580. item := new(models.CygxArticleAsk)
  581. item.UserId = user.UserId
  582. item.ArticleId = req.ArticleId
  583. item.CompanyId = user.CompanyId
  584. item.CompanyName = companyDetail.CompanyName
  585. item.CreateTime = time.Now()
  586. item.Mobile = user.Mobile
  587. item.Email = user.Email
  588. item.Content = content
  589. _, err = models.AddArticleAsk(item)
  590. if err != nil {
  591. br.Msg = "提交失败"
  592. br.ErrMsg = "提交失败,Err:" + err.Error()
  593. return
  594. }
  595. companyItem, err := models.GetSellerDetailAllByCompanyId(user.CompanyId)
  596. if err != nil {
  597. br.Msg = "获取信息失败"
  598. br.ErrMsg = "获取所属销售信息失败,Err:" + err.Error()
  599. return
  600. }
  601. var mobile string
  602. if utils.RunMode == "release" {
  603. //mobile = utils.WxMsgTemplateIdAskMsgMobileAll + "," + companyItem.Mobile
  604. mobile = utils.WxMsgTemplateIdAskMsgMobileAll
  605. } else {
  606. mobile = utils.WxMsgTemplateIdAskMsgMobile
  607. }
  608. openIdList, err := models.GetWxOpenIdByMobileList(mobile)
  609. if err != nil {
  610. br.Msg = "提交失败"
  611. br.ErrMsg = "提交失败,Err:" + err.Error()
  612. return
  613. }
  614. detail, err := models.GetArticleDetailById(articleId)
  615. if err != nil {
  616. br.Msg = "获取信息失败"
  617. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  618. return
  619. }
  620. companyName := user.CompanyName + "-" + user.RealName + "(" + companyItem.SellerName + ")"
  621. go services.SendWxMsgWithAsk(companyName, time.Now().Format(utils.FormatDateTime), content, detail.Title, openIdList, req.ArticleId)
  622. br.Ret = 200
  623. br.Success = true
  624. br.Msg = "提交成功"
  625. }
  626. // @Title 下载PDF打水印
  627. // @Description 下载PDF打水印接口
  628. // @Param ArticleId query int true "报告ID"
  629. // @Success 200 {object} models.ArticleDetailFileLink
  630. // @router /pdfwatermark [get]
  631. func (this *ArticleController) Pdfwatermark() {
  632. br := new(models.BaseResponse).Init()
  633. defer func() {
  634. this.Data["json"] = br
  635. this.ServeJSON()
  636. }()
  637. user := this.User
  638. if user == nil {
  639. br.Msg = "请登录"
  640. br.ErrMsg = "请登录,用户信息为空"
  641. br.Ret = 408
  642. return
  643. }
  644. uid := user.UserId
  645. articleId, err := this.GetInt("ArticleId")
  646. if articleId <= 0 {
  647. br.Msg = "文章不存在"
  648. br.ErrMsg = "文章不存在,文章ID错误"
  649. return
  650. }
  651. //缓存校验
  652. cacheKey := fmt.Sprint("xygx:apply_record:add:", uid, "ArticleId_", articleId)
  653. ttlTime := utils.Rc.GetRedisTTL(cacheKey)
  654. if ttlTime > 0 && user.CompanyId != 16 {
  655. br.Msg = "下载失败,下载过于频繁"
  656. br.ErrMsg = "下载失败,下载过于频繁:mobile" + user.Mobile
  657. return
  658. }
  659. resp := new(models.ArticleDetailFileLink)
  660. detail := new(models.ArticleDetail)
  661. detail, err = models.GetArticleDetailById(articleId)
  662. if err != nil {
  663. br.Msg = "获取信息失败"
  664. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  665. return
  666. }
  667. fileLink := detail.FileLink
  668. if fileLink == "" {
  669. br.Msg = "下载失败"
  670. br.ErrMsg = "下载失败,报告链接不存在"
  671. return
  672. }
  673. mobile := user.Mobile
  674. if mobile == "" {
  675. mobile = user.Email
  676. }
  677. sliceLink := strings.Split(fileLink, "/")
  678. uploadDir := "static/pdf/"
  679. //判断文件夹是否存在,不存在则创建
  680. if !utils.FileIsExist(uploadDir) {
  681. err = os.MkdirAll(uploadDir, 0755)
  682. if err != nil {
  683. br.Msg = "下载失败"
  684. br.ErrMsg = "存储目录创建失败,Err:" + err.Error()
  685. return
  686. }
  687. }
  688. var oldFile string
  689. var newFile string
  690. //获取PDF源文件名称
  691. pdfName := sliceLink[len(sliceLink)-1]
  692. pdfName = utils.MD5(pdfName) + ".pdf"
  693. oldFile = uploadDir + pdfName
  694. //判断PDF本地是否存在,不存在则保存到本地
  695. if !utils.FileIsExist(oldFile) {
  696. res, err := nhttp.Get(fileLink)
  697. if err != nil {
  698. br.Msg = "下载失败"
  699. br.ErrMsg = "获取源文件失败,Err:" + err.Error()
  700. return
  701. }
  702. defer res.Body.Close()
  703. // 获得get请求响应的reader对象
  704. reader := bufio.NewReaderSize(res.Body, 32*1024)
  705. file, err := os.Create(oldFile)
  706. if err != nil {
  707. br.Msg = "下载失败"
  708. br.ErrMsg = "保存源文件到本地失败,Err:" + err.Error()
  709. return
  710. }
  711. defer file.Close()
  712. //获得文件的writer对象
  713. writer := bufio.NewWriter(file)
  714. written, _ := io.Copy(writer, reader)
  715. fmt.Printf("Total length: %d", written)
  716. }
  717. newFile = uploadDir + "new_" + pdfName
  718. onTop := true
  719. wm, err := pdfcpu.ParseTextWatermarkDetails(mobile, " op:.4, pos:c ,points:16 ", onTop, 1)
  720. if err != nil {
  721. br.Msg = "下载失败"
  722. br.ErrMsg = "生成水印文件失败,Err:" + err.Error()
  723. return
  724. }
  725. err = api.AddWatermarksFile(oldFile, newFile, nil, wm, nil)
  726. if err != nil {
  727. //br.Msg = "下载失败"
  728. //br.ErrMsg = "生成水印PDF失败,Err:" + err.Error()
  729. resp.FileLink = fileLink
  730. br.Ret = 200
  731. br.Success = true
  732. br.Msg = "获取成功"
  733. br.Data = resp
  734. return
  735. }
  736. randStr := utils.GetRandStringNoSpecialChar(28)
  737. fileName := randStr + ".pdf"
  738. savePath := uploadDir + time.Now().Format("200601/20060102/")
  739. savePath += fileName
  740. //上传到阿里云
  741. err = services.UploadFileToAliyun(fileName, newFile, savePath)
  742. if err != nil {
  743. br.Msg = "下载失败"
  744. br.ErrMsg = "文件上传失败,Err:" + err.Error()
  745. return
  746. }
  747. fileHost := "https://hzstatic.hzinsights.com/"
  748. resourceUrl := fileHost + savePath
  749. defer func() {
  750. os.Remove(newFile)
  751. }()
  752. utils.Rc.SetNX(cacheKey, user.Mobile, time.Minute*5)
  753. resp.FileLink = resourceUrl
  754. br.Ret = 200
  755. br.Success = true
  756. br.Msg = "获取成功"
  757. br.Data = resp
  758. }
  759. // @Title 约访专家
  760. // @Description 约访专家接口
  761. // @Param request body models.CygxArticleIdReq true "type json string"
  762. // @Success 200 {object}
  763. // @router /applyAppointmentExpert [post]
  764. func (this *ArticleController) ApplyAppointmentExpert() {
  765. br := new(models.BaseResponse).Init()
  766. defer func() {
  767. this.Data["json"] = br
  768. this.ServeJSON()
  769. }()
  770. user := this.User
  771. if user == nil {
  772. br.Msg = "请登录"
  773. br.ErrMsg = "请登录,用户信息为空"
  774. br.Ret = 408
  775. return
  776. }
  777. fmt.Println(user)
  778. var req models.CygxArticleIdReq
  779. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  780. if err != nil {
  781. br.Msg = "参数解析异常!"
  782. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  783. return
  784. }
  785. articleId := req.ArticleId
  786. var condition string
  787. var pars []interface{}
  788. condition += ` AND article_id =? AND user_id = ? `
  789. pars = append(pars, articleId, user.UserId)
  790. total, err := models.GetCygxArticleApplyAppointmentExpertCount(condition, pars)
  791. if err != nil {
  792. br.Msg = "约访专家失败"
  793. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  794. return
  795. }
  796. if total > 0 {
  797. br.Msg = "您已提交申请,请勿重复提交。"
  798. return
  799. }
  800. err = services.AddArticleApplyAppointmentExpert(user, articleId)
  801. if err != nil {
  802. br.Msg = "约访专家失败"
  803. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  804. return
  805. }
  806. services.SendArticleApplyAppointmentExpertTemplateMsg(user, articleId)
  807. br.Ret = 200
  808. br.Success = true
  809. br.Msg = "操作成功"
  810. }