article.go 25 KB

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