article.go 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  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 hasPermission != 1 {
  184. hasPermission, err = services.GetUserPermissionCode(user.UserId, user.CompanyId)
  185. if err != nil {
  186. br.Msg = "获取信息失败"
  187. br.ErrMsg = "获取用户状态信息失败,Err:" + err.Error()
  188. return
  189. }
  190. }
  191. if detail.ArticleTypeId == 14 {
  192. detail.IsApplyAppointmentExpert = true //判断文章类型是否属于专家访谈 查研观向11.0
  193. }
  194. resp.HasPermission = hasPermission
  195. resp.HaveResearch = haveResearch
  196. resp.Detail = detail
  197. if user.Mobile != "" {
  198. resp.Mobile = user.Mobile
  199. } else {
  200. resp.Mobile = user.Email
  201. }
  202. br.Ret = 200
  203. br.Success = true
  204. br.Msg = "获取成功"
  205. br.Data = resp
  206. }
  207. // @Title 收藏
  208. // @Description 收藏
  209. // @Param request body models.ArticleCollectReq true "type json string"
  210. // @Success 200 {object} models.FontsCollectResp
  211. // @router /collect [post]
  212. func (this *ArticleController) ArticleCollect() {
  213. br := new(models.BaseResponse).Init()
  214. defer func() {
  215. this.Data["json"] = br
  216. this.ServeJSON()
  217. }()
  218. user := this.User
  219. if user == nil {
  220. br.Msg = "请重新登录"
  221. br.Ret = 408
  222. return
  223. }
  224. uid := user.UserId
  225. var req models.ArticleCollectReq
  226. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  227. if err != nil {
  228. br.Msg = "参数解析异常!"
  229. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  230. return
  231. }
  232. articleId := req.ArticleId
  233. detail, err := models.GetArticleDetailById(articleId)
  234. if err != nil {
  235. br.Msg = "获取信息失败"
  236. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  237. return
  238. }
  239. count, err := models.GetArticleCollectCount(uid, articleId)
  240. if err != nil {
  241. br.Msg = "获取数据失败!"
  242. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  243. return
  244. }
  245. resp := new(models.ArticleCollectResp)
  246. if count <= 0 {
  247. item := new(models.CygxArticleCollect)
  248. item.ArticleId = req.ArticleId
  249. item.UserId = uid
  250. item.CreateTime = time.Now()
  251. item.Mobile = user.Mobile
  252. item.Email = user.Email
  253. item.CompanyId = user.CompanyId
  254. item.CompanyName = user.CompanyName
  255. item.RealName = user.RealName
  256. _, err = models.AddCygxArticleCollect(item)
  257. if err != nil {
  258. br.Msg = "收藏失败"
  259. br.ErrMsg = "收藏失败,Err:" + err.Error()
  260. return
  261. }
  262. br.Msg = "收藏成功"
  263. resp.Status = 1
  264. // 文章收藏消息发送
  265. go services.ArticleUserRemind(user, detail, 2)
  266. go services.ArticleHistoryUserLabelLogAdd(articleId, user.UserId)
  267. } else {
  268. err = models.RemoveArticleCollect(uid, articleId)
  269. if err != nil {
  270. br.Msg = "取消收藏失败"
  271. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  272. return
  273. }
  274. br.Msg = "已取消收藏"
  275. resp.Status = 2
  276. }
  277. collectTotal, err := models.GetArticleCollectUsersCount(articleId)
  278. if err != nil {
  279. br.Msg = "获取数据失败"
  280. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  281. return
  282. }
  283. resp.CollectCount = collectTotal
  284. br.Ret = 200
  285. br.Success = true
  286. br.Data = resp
  287. }
  288. // @Title 访谈申请
  289. // @Description 访谈申请
  290. // @Param request body models.ArticleInterviewApplyReq true "type json string"
  291. // @Success 200 {object} models.FontsCollectResp
  292. // @router /interview/apply [post]
  293. func (this *ArticleController) InterviewApply() {
  294. br := new(models.BaseResponse).Init()
  295. defer func() {
  296. this.Data["json"] = br
  297. this.ServeJSON()
  298. }()
  299. user := this.User
  300. if user == nil {
  301. br.Msg = "请重新登录"
  302. br.Ret = 408
  303. return
  304. }
  305. uid := user.UserId
  306. var req models.ArticleInterviewApplyReq
  307. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  308. if err != nil {
  309. br.Msg = "参数解析异常!"
  310. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  311. return
  312. }
  313. article, err := models.GetArticleDetailById(req.ArticleId)
  314. if err != nil {
  315. br.Msg = "获取纪要失败!"
  316. br.ErrMsg = "获取纪要失败,Err:" + err.Error()
  317. return
  318. }
  319. count, err := models.GetArticleInterviewApplyCount(uid, req.ArticleId)
  320. if err != nil {
  321. br.Msg = "获取数据失败!"
  322. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  323. return
  324. }
  325. resp := new(models.ArticleInterviewApplyResp)
  326. if count <= 0 {
  327. item := new(models.CygxInterviewApply)
  328. item.ArticleId = req.ArticleId
  329. item.UserId = uid
  330. item.CompanyId = user.CompanyId
  331. item.Status = "待邀请"
  332. item.Sort = 1
  333. item.ArticleTitle = article.Title
  334. item.CreateTime = time.Now()
  335. item.ModifyTime = time.Now()
  336. item.ArticleIdMd5 = article.ArticleIdMd5
  337. _, err = models.AddCygxInterviewApply(item)
  338. if err != nil {
  339. br.Msg = "申请失败"
  340. br.ErrMsg = "申请失败,Err:" + err.Error()
  341. return
  342. }
  343. br.Msg = "申请成功"
  344. resp.Status = 1
  345. //发送模板消息
  346. if user.CompanyId > 1 {
  347. mobile := user.Mobile
  348. if mobile == "" {
  349. mobile = user.Email
  350. }
  351. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  352. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  353. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  354. if openIpItem != nil && openIpItem.OpenId != "" {
  355. go services.SendInterviewApplyTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  356. }
  357. }
  358. }
  359. } else {
  360. err = models.RemoveArticleInterviewApply(uid, req.ArticleId)
  361. if err != nil {
  362. br.Msg = "取消申请失败"
  363. br.ErrMsg = "取消申请失败,Err:" + err.Error()
  364. return
  365. }
  366. br.Msg = "已取消申请"
  367. resp.Status = 2
  368. if user.CompanyId > 1 {
  369. mobile := user.Mobile
  370. if mobile == "" {
  371. mobile = user.Email
  372. }
  373. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  374. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  375. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  376. if openIpItem != nil && openIpItem.OpenId != "" {
  377. go services.SendInterviewApplyCancelTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  378. }
  379. }
  380. }
  381. }
  382. br.Ret = 200
  383. br.Success = true
  384. br.Data = resp
  385. }
  386. // @Title 上传文章阅读时间
  387. // @Description 上传文章阅读时间接口
  388. // @Param request body models.AddStopTimeRep true "type json string"
  389. // @Success 200 {object} models.ArticleDetailResp
  390. // @router /addStopTime [post]
  391. func (this *ArticleController) AddStopTime() {
  392. br := new(models.BaseResponse).Init()
  393. defer func() {
  394. this.Data["json"] = br
  395. this.ServeJSON()
  396. }()
  397. user := this.User
  398. if user == nil {
  399. br.Msg = "请登录"
  400. br.ErrMsg = "请登录,用户信息为空"
  401. br.Ret = 408
  402. return
  403. }
  404. var req models.AddStopTimeRep
  405. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  406. if err != nil {
  407. br.Msg = "参数解析异常!"
  408. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  409. return
  410. }
  411. uid := user.UserId
  412. articleId := req.ArticleId
  413. stopTime := req.StopTime
  414. outType := req.OutType
  415. source := req.Source
  416. if articleId <= 0 {
  417. br.Msg = "参数错误"
  418. br.ErrMsg = "参数错误"
  419. return
  420. }
  421. if stopTime == 0 {
  422. stopTime = 1
  423. }
  424. if outType != 2 {
  425. outType = 1
  426. }
  427. if source != "PC" {
  428. source = "MOBILE"
  429. }
  430. detail := new(models.ArticleDetail)
  431. hasPermission := 0
  432. hasFree := 0
  433. //判断是否已经申请过
  434. applyCount, err := models.GetApplyRecordCount(uid)
  435. if err != nil && err.Error() != utils.ErrNoRow() {
  436. br.Msg = "获取信息失败"
  437. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  438. return
  439. }
  440. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  441. if user.CompanyId > 1 {
  442. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  443. if err != nil {
  444. br.Msg = "获取信息失败"
  445. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  446. return
  447. }
  448. detail, err = models.GetArticleDetailById(articleId)
  449. if err != nil {
  450. br.Msg = "获取信息失败"
  451. br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  452. return
  453. }
  454. if companyPermission == "" {
  455. if applyCount > 0 {
  456. hasPermission = 5
  457. } else {
  458. hasPermission = 2
  459. }
  460. hasFree = 2
  461. goto Loop
  462. } else {
  463. hasFree = 1
  464. var articlePermissionPermissionName string
  465. if detail.CategoryId > 0 {
  466. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  467. if err != nil {
  468. br.Msg = "获取信息失败"
  469. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  470. return
  471. }
  472. if articlePermission == nil {
  473. br.Msg = "获取信息失败"
  474. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  475. return
  476. }
  477. articlePermissionPermissionName = articlePermission.PermissionName
  478. } else {
  479. articlePermissionPermissionName = detail.CategoryName
  480. }
  481. var hasPersion bool
  482. slice := strings.Split(articlePermissionPermissionName, ",")
  483. //判断用户是否开通了个人研选权限,如果有权限后缀拼接权限名称
  484. mfyxUserPermissionTotal := services.GetMfyxUserPermissionTotal(uid)
  485. if mfyxUserPermissionTotal == 1 {
  486. companyPermission += "," + utils.CHART_PERMISSION_NAME_MF_YANXUAN
  487. companyPermission += "," + utils.MAI_FANG_YAN_XUAN_NAME
  488. }
  489. //如果有研选订阅的权限,那么就拼接一个 买方研选的权限做校验
  490. if strings.Contains(companyPermission, utils.CHART_PERMISSION_NAME_MF_YANXUAN) {
  491. companyPermission += "," + utils.MAI_FANG_YAN_XUAN_NAME
  492. }
  493. for _, v := range slice {
  494. if strings.Contains(companyPermission, v) {
  495. hasPersion = true
  496. }
  497. }
  498. if hasPersion {
  499. go services.ArticleHistoryStopTime(articleId, stopTime, outType, user)
  500. } else { //无该行业权限
  501. hasPermission = 3
  502. }
  503. }
  504. } else { //潜在客户
  505. if applyCount > 0 {
  506. hasPermission = 5
  507. } else {
  508. hasPermission = 4
  509. }
  510. }
  511. Loop:
  512. resp := new(models.ArticleDetailAddStopTimeRep)
  513. resp.HasPermission = hasPermission
  514. resp.HasFree = hasFree
  515. br.Ret = 200
  516. br.Success = true
  517. br.Msg = "操作成功"
  518. br.Data = resp
  519. }
  520. // @Title 文章带问
  521. // @Description 新增文章带问接口
  522. // @Param request body models.AddArticleAskRep true "type json string"
  523. // @Success Ret=200 新增成功
  524. // @router /askAdd [post]
  525. func (this *ArticleController) AskAdd() {
  526. br := new(models.BaseResponse).Init()
  527. defer func() {
  528. this.Data["json"] = br
  529. this.ServeJSON()
  530. }()
  531. user := this.User
  532. if user == nil {
  533. br.Msg = "请登录"
  534. br.ErrMsg = "请登录,SysUser Is Empty"
  535. br.Ret = 408
  536. return
  537. }
  538. var req models.AddArticleAskRep
  539. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  540. if err != nil {
  541. br.Msg = "参数解析异常!"
  542. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  543. return
  544. }
  545. if req.Content == "" {
  546. br.Msg = "建议内容不可为空"
  547. return
  548. }
  549. content := req.Content
  550. itemToken, err := services.WxGetToken()
  551. if err != nil {
  552. br.Msg = "GetWxAccessToken Err:" + err.Error()
  553. return
  554. }
  555. if itemToken.AccessToken == "" {
  556. br.Msg = "accessToken is empty"
  557. return
  558. }
  559. commerr, err := weapp.MSGSecCheck(itemToken.AccessToken, content)
  560. if err != nil {
  561. br.Msg = "内容校验失败!"
  562. br.ErrMsg = "内容校验失败,Err:" + err.Error()
  563. return
  564. }
  565. if commerr.ErrCode != 0 {
  566. br.Msg = "内容违规,请重新提交!"
  567. br.ErrMsg = "颜文字内容违规,Err:" + commerr.ErrMSG
  568. return
  569. }
  570. articleId := req.ArticleId
  571. count, _ := models.GetArticleCountById(articleId)
  572. if count == 0 {
  573. br.Msg = "操作失败"
  574. br.ErrMsg = "文章ID错误,不存在 articleId:" + strconv.Itoa(articleId)
  575. return
  576. }
  577. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  578. if err != nil {
  579. br.Msg = "提交失败!"
  580. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  581. return
  582. }
  583. if companyDetail == nil {
  584. br.Msg = "提交失败!"
  585. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  586. return
  587. }
  588. item := new(models.CygxArticleAsk)
  589. item.UserId = user.UserId
  590. item.ArticleId = req.ArticleId
  591. item.CompanyId = user.CompanyId
  592. item.CompanyName = companyDetail.CompanyName
  593. item.CreateTime = time.Now()
  594. item.Mobile = user.Mobile
  595. item.Email = user.Email
  596. item.Content = content
  597. _, err = models.AddArticleAsk(item)
  598. if err != nil {
  599. br.Msg = "提交失败"
  600. br.ErrMsg = "提交失败,Err:" + err.Error()
  601. return
  602. }
  603. companyItem, err := models.GetSellerDetailAllByCompanyId(user.CompanyId)
  604. if err != nil {
  605. br.Msg = "获取信息失败"
  606. br.ErrMsg = "获取所属销售信息失败,Err:" + err.Error()
  607. return
  608. }
  609. var mobile string
  610. if utils.RunMode == "release" {
  611. //mobile = utils.WxMsgTemplateIdAskMsgMobileAll + "," + companyItem.Mobile
  612. mobile = utils.WxMsgTemplateIdAskMsgMobileAll
  613. } else {
  614. mobile = utils.WxMsgTemplateIdAskMsgMobile
  615. }
  616. openIdList, err := models.GetWxOpenIdByMobileList(mobile)
  617. if err != nil {
  618. br.Msg = "提交失败"
  619. br.ErrMsg = "提交失败,Err:" + err.Error()
  620. return
  621. }
  622. detail, err := models.GetArticleDetailById(articleId)
  623. if err != nil {
  624. br.Msg = "获取信息失败"
  625. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  626. return
  627. }
  628. companyName := user.CompanyName + "-" + user.RealName + "(" + companyItem.SellerName + ")"
  629. go services.SendWxMsgWithAsk(companyName, time.Now().Format(utils.FormatDateTime), content, detail.Title, openIdList, req.ArticleId)
  630. br.Ret = 200
  631. br.Success = true
  632. br.Msg = "提交成功"
  633. }
  634. // @Title 下载PDF打水印
  635. // @Description 下载PDF打水印接口
  636. // @Param ArticleId query int true "报告ID"
  637. // @Success 200 {object} models.ArticleDetailFileLink
  638. // @router /pdfwatermark [get]
  639. func (this *ArticleController) Pdfwatermark() {
  640. br := new(models.BaseResponse).Init()
  641. defer func() {
  642. this.Data["json"] = br
  643. this.ServeJSON()
  644. }()
  645. user := this.User
  646. if user == nil {
  647. br.Msg = "请登录"
  648. br.ErrMsg = "请登录,用户信息为空"
  649. br.Ret = 408
  650. return
  651. }
  652. uid := user.UserId
  653. articleId, err := this.GetInt("ArticleId")
  654. if articleId <= 0 {
  655. br.Msg = "文章不存在"
  656. br.ErrMsg = "文章不存在,文章ID错误"
  657. return
  658. }
  659. //缓存校验
  660. cacheKey := fmt.Sprint("xygx:apply_record:add:", uid, "ArticleId_", articleId)
  661. ttlTime := utils.Rc.GetRedisTTL(cacheKey)
  662. if ttlTime > 0 && user.CompanyId != 16 {
  663. br.Msg = "下载失败,下载过于频繁"
  664. br.ErrMsg = "下载失败,下载过于频繁:mobile" + user.Mobile
  665. return
  666. }
  667. resp := new(models.ArticleDetailFileLink)
  668. detail := new(models.ArticleDetail)
  669. detail, err = models.GetArticleDetailById(articleId)
  670. if err != nil {
  671. br.Msg = "获取信息失败"
  672. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  673. return
  674. }
  675. fileLink := detail.FileLink
  676. if fileLink == "" {
  677. br.Msg = "下载失败"
  678. br.ErrMsg = "下载失败,报告链接不存在"
  679. return
  680. }
  681. mobile := user.Mobile
  682. if mobile == "" {
  683. mobile = user.Email
  684. }
  685. sliceLink := strings.Split(fileLink, "/")
  686. uploadDir := "static/pdf/"
  687. //判断文件夹是否存在,不存在则创建
  688. if !utils.FileIsExist(uploadDir) {
  689. err = os.MkdirAll(uploadDir, 0755)
  690. if err != nil {
  691. br.Msg = "下载失败"
  692. br.ErrMsg = "存储目录创建失败,Err:" + err.Error()
  693. return
  694. }
  695. }
  696. var oldFile string
  697. var newFile string
  698. //获取PDF源文件名称
  699. pdfName := sliceLink[len(sliceLink)-1]
  700. pdfName = utils.MD5(pdfName) + ".pdf"
  701. oldFile = uploadDir + pdfName
  702. //判断PDF本地是否存在,不存在则保存到本地
  703. if !utils.FileIsExist(oldFile) {
  704. res, err := nhttp.Get(fileLink)
  705. if err != nil {
  706. br.Msg = "下载失败"
  707. br.ErrMsg = "获取源文件失败,Err:" + err.Error()
  708. return
  709. }
  710. defer res.Body.Close()
  711. // 获得get请求响应的reader对象
  712. reader := bufio.NewReaderSize(res.Body, 32*1024)
  713. file, err := os.Create(oldFile)
  714. if err != nil {
  715. br.Msg = "下载失败"
  716. br.ErrMsg = "保存源文件到本地失败,Err:" + err.Error()
  717. return
  718. }
  719. defer file.Close()
  720. //获得文件的writer对象
  721. writer := bufio.NewWriter(file)
  722. written, _ := io.Copy(writer, reader)
  723. fmt.Printf("Total length: %d", written)
  724. }
  725. newFile = uploadDir + "new_" + pdfName
  726. onTop := true
  727. wm, err := pdfcpu.ParseTextWatermarkDetails(mobile, " op:.4, pos:c ,points:16 ", onTop, 1)
  728. if err != nil {
  729. br.Msg = "下载失败"
  730. br.ErrMsg = "生成水印文件失败,Err:" + err.Error()
  731. return
  732. }
  733. err = api.AddWatermarksFile(oldFile, newFile, nil, wm, nil)
  734. if err != nil {
  735. //br.Msg = "下载失败"
  736. //br.ErrMsg = "生成水印PDF失败,Err:" + err.Error()
  737. resp.FileLink = fileLink
  738. br.Ret = 200
  739. br.Success = true
  740. br.Msg = "获取成功"
  741. br.Data = resp
  742. return
  743. }
  744. randStr := utils.GetRandStringNoSpecialChar(28)
  745. fileName := randStr + ".pdf"
  746. savePath := uploadDir + time.Now().Format("200601/20060102/")
  747. savePath += fileName
  748. //上传到阿里云
  749. err = services.UploadFileToAliyun(fileName, newFile, savePath)
  750. if err != nil {
  751. br.Msg = "下载失败"
  752. br.ErrMsg = "文件上传失败,Err:" + err.Error()
  753. return
  754. }
  755. fileHost := "https://hzstatic.hzinsights.com/"
  756. resourceUrl := fileHost + savePath
  757. defer func() {
  758. os.Remove(newFile)
  759. }()
  760. utils.Rc.SetNX(cacheKey, user.Mobile, time.Minute*5)
  761. resp.FileLink = resourceUrl
  762. br.Ret = 200
  763. br.Success = true
  764. br.Msg = "获取成功"
  765. br.Data = resp
  766. }
  767. // @Title 约访专家
  768. // @Description 约访专家接口
  769. // @Param request body models.CygxArticleIdReq true "type json string"
  770. // @Success 200 {object}
  771. // @router /applyAppointmentExpert [post]
  772. func (this *ArticleController) ApplyAppointmentExpert() {
  773. br := new(models.BaseResponse).Init()
  774. defer func() {
  775. this.Data["json"] = br
  776. this.ServeJSON()
  777. }()
  778. user := this.User
  779. if user == nil {
  780. br.Msg = "请登录"
  781. br.ErrMsg = "请登录,用户信息为空"
  782. br.Ret = 408
  783. return
  784. }
  785. fmt.Println(user)
  786. var req models.CygxArticleIdReq
  787. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  788. if err != nil {
  789. br.Msg = "参数解析异常!"
  790. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  791. return
  792. }
  793. articleId := req.ArticleId
  794. var condition string
  795. var pars []interface{}
  796. condition += ` AND article_id =? AND user_id = ? `
  797. pars = append(pars, articleId, user.UserId)
  798. total, err := models.GetCygxArticleApplyAppointmentExpertCount(condition, pars)
  799. if err != nil {
  800. br.Msg = "约访专家失败"
  801. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  802. return
  803. }
  804. if total > 0 {
  805. br.Msg = "您已提交申请,请勿重复提交。"
  806. return
  807. }
  808. err = services.AddArticleApplyAppointmentExpert(user, articleId)
  809. if err != nil {
  810. br.Msg = "约访专家失败"
  811. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  812. return
  813. }
  814. services.SendArticleApplyAppointmentExpertTemplateMsg(user, articleId)
  815. br.Ret = 200
  816. br.Success = true
  817. br.Msg = "操作成功"
  818. }