article.go 25 KB

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