article.go 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668
  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_cygx/models"
  15. "hongze/hongze_cygx/services"
  16. "hongze/hongze_cygx/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. // @Success 200 {object} models.ArticleDetailResp
  36. // @router /detail [get]
  37. func (this *ArticleController) Detail() {
  38. br := new(models.BaseResponse).Init()
  39. defer func() {
  40. this.Data["json"] = br
  41. this.ServeJSON()
  42. }()
  43. user := this.User
  44. if user == nil {
  45. br.Msg = "请登录"
  46. br.ErrMsg = "请登录,用户信息为空"
  47. br.Ret = 408
  48. return
  49. }
  50. uid := user.UserId
  51. articleId, err := this.GetInt("ArticleId")
  52. if articleId <= 0 {
  53. br.Msg = "文章不存在"
  54. br.ErrMsg = "文章不存在,文章ID错误"
  55. return
  56. }
  57. detail := new(models.ArticleDetail)
  58. hasPermission := 0
  59. hasFree := 0
  60. var haveResearch bool
  61. //判断是否已经申请过
  62. applyCount, err := models.GetApplyRecordCount(uid)
  63. if err != nil && err.Error() != utils.ErrNoRow() {
  64. br.Msg = "获取信息失败"
  65. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  66. return
  67. }
  68. resp := new(models.ArticleDetailResp)
  69. detail, err = models.GetArticleDetailById(articleId)
  70. if err != nil {
  71. br.Msg = "获取信息失败"
  72. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  73. return
  74. }
  75. //是否属于专项调研报告
  76. if detail.SubCategoryName == "专项调研" {
  77. detail.IsSpecialArticle = true
  78. havePower, err := services.GetSpecialArticleDetailUserPower(user, detail)
  79. if err != nil {
  80. br.Msg = "获取信息失败"
  81. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  82. return
  83. }
  84. if !havePower {
  85. hasPermission, sellerName, sellerMobile, popupMsg, err := services.GetUserHasPermission(user)
  86. if err != nil {
  87. br.Msg = "获取信息失败"
  88. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  89. return
  90. }
  91. if hasPermission == 2 {
  92. hasPermission = 3
  93. }
  94. popupMsg = "需要升级行业套餐权限才可查看此报告,请联系对口销售"
  95. resp.PopupMsg = popupMsg
  96. resp.HasPermission = hasPermission
  97. resp.SellerName = sellerName
  98. resp.SellerMobile = sellerMobile
  99. detail.Body = ""
  100. detail.Abstract = ""
  101. detail.BodyText = ""
  102. detail.SellerName = sellerName
  103. detail.SellerMobile = sellerMobile
  104. resp.Detail = detail
  105. br.Ret = 200
  106. br.Success = true
  107. br.Msg = "获取成功"
  108. br.Data = resp
  109. return
  110. }
  111. }
  112. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  113. if user.CompanyId > 1 {
  114. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  115. if err != nil {
  116. br.Msg = "获取信息失败"
  117. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  118. return
  119. }
  120. detail.PublishDate = utils.TimeRemoveHms(detail.PublishDate)
  121. detail.Body = html.UnescapeString(detail.Body)
  122. 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)
  123. detail.Body = strings.Replace(detail.Body, "pre", "div", -1)
  124. //detail.Abstract = html.UnescapeString(detail.Abstract)
  125. detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  126. if companyPermission == "" {
  127. if applyCount > 0 {
  128. hasPermission = 5
  129. } else {
  130. hasPermission = 2
  131. }
  132. hasFree = 2
  133. goto Loop
  134. } else {
  135. hasFree = 1
  136. var articlePermissionPermissionName string
  137. if detail.CategoryId > 0 {
  138. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  139. if err != nil {
  140. br.Msg = "获取信息失败"
  141. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  142. return
  143. }
  144. if articlePermission == nil {
  145. br.Msg = "获取信息失败"
  146. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  147. return
  148. }
  149. articlePermissionPermissionName = articlePermission.PermissionName
  150. } else {
  151. articlePermissionPermissionName = detail.CategoryName
  152. }
  153. var hasPersion bool
  154. slice := strings.Split(articlePermissionPermissionName, ",")
  155. for _, v := range slice {
  156. if strings.Contains(companyPermission, v) {
  157. hasPersion = true
  158. }
  159. }
  160. if strings.Contains(detail.CategoryName, "研选") {
  161. detail.IsResearch = true
  162. }
  163. userType, _, err := services.GetUserType(user.CompanyId)
  164. if err != nil {
  165. br.Msg = "获取信息失败"
  166. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  167. return
  168. }
  169. if userType == 1 && strings.Contains(detail.CategoryName, "研选") {
  170. hasPersion = false
  171. }
  172. if detail.IsReport == 1 {
  173. detailCategory, err := models.GetdetailByCategoryIdSando(detail.CategoryId)
  174. if err != nil && err.Error() != utils.ErrNoRow() {
  175. br.Msg = "获取信息失败"
  176. br.ErrMsg = "获取信息失败,Err:" + err.Error() + "categoryID 不存在:" + strconv.Itoa(detail.CategoryId)
  177. return
  178. }
  179. permissionStr, err := models.GetCompanyPermissionByUser(user.CompanyId)
  180. if err != nil {
  181. br.Msg = "获取信息失败"
  182. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  183. return
  184. }
  185. if detailCategory != nil {
  186. if detailCategory.PermissionType == 1 {
  187. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(主观)") {
  188. hasPersion = false
  189. }
  190. } else if detailCategory.PermissionType == 2 {
  191. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(客观)") {
  192. hasPersion = false
  193. }
  194. }
  195. }
  196. }
  197. if hasPersion {
  198. hasPermission = 1
  199. historyRecord := new(models.CygxArticleHistoryRecord)
  200. historyRecord.UserId = uid
  201. historyRecord.ArticleId = articleId
  202. historyRecord.CreateTime = time.Now()
  203. historyRecord.Mobile = user.Mobile
  204. historyRecord.Email = user.Email
  205. historyRecord.CompanyId = user.CompanyId
  206. historyRecord.CompanyName = user.CompanyName
  207. recordCount, _ := models.GetNoAddStoptimeArticleCount(uid, articleId)
  208. if recordCount == 0 {
  209. go models.AddCygxArticleHistoryRecord(historyRecord)
  210. } else {
  211. detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
  212. if err != nil {
  213. br.Msg = "获取信息失败"
  214. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  215. return
  216. }
  217. if detailNew.StopTime > 0 {
  218. go models.AddCygxArticleHistoryRecord(historyRecord)
  219. }
  220. }
  221. //30分钟之内阅读同一篇文章不错二次推送
  222. key := "CYGX_ARTICLE_READ" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  223. if !utils.Rc.IsExist(key) {
  224. go services.ArticleUserRemind(user, detail, 1)
  225. utils.Rc.Put(key, 1, 30*time.Second)
  226. }
  227. } else { //无该行业权限
  228. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  229. if err == nil && companyDetail.ProductId == 1 {
  230. hasPermission = 2
  231. } else {
  232. hasPermission = 3
  233. }
  234. }
  235. if hasPermission == 1 {
  236. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  237. if !utils.Rc.IsExist(key) {
  238. //新增浏览记录
  239. record := new(models.CygxArticleViewRecord)
  240. record.UserId = uid
  241. record.ArticleId = articleId
  242. record.CreateTime = time.Now()
  243. record.Mobile = user.Mobile
  244. record.Email = user.Email
  245. record.CompanyId = user.CompanyId
  246. record.CompanyName = user.CompanyName
  247. go models.AddCygxArticleViewRecord(record)
  248. utils.Rc.Put(key, 1, 5*time.Second)
  249. models.ModifyReportLastViewTime(uid)
  250. }
  251. }
  252. }
  253. collectCount, err := models.GetArticleCollectCount(uid, articleId)
  254. if err != nil && err.Error() != utils.ErrNoRow() {
  255. br.Msg = "获取信息失败"
  256. br.ErrMsg = "判断是否已收藏失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  257. return
  258. }
  259. if collectCount > 0 {
  260. detail.IsCollect = true
  261. }
  262. interviewApplyItem, err := models.GetArticleInterviewApply(uid, articleId)
  263. if err != nil && err.Error() != utils.ErrNoRow() {
  264. br.Msg = "获取信息失败"
  265. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  266. return
  267. }
  268. if interviewApplyItem != nil && interviewApplyItem.InterviewApplyId > 0 {
  269. detail.IsInterviewApply = true
  270. detail.InterviewApplyStatus = interviewApplyItem.Status
  271. }
  272. //获取销售手机号
  273. sellerItem, err := models.GetSellerByCompanyId(user.CompanyId)
  274. if err != nil && err.Error() != utils.ErrNoRow() {
  275. br.Msg = "获取信息失败"
  276. br.ErrMsg = "获取销售数据失败2,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  277. return
  278. }
  279. if sellerItem != nil {
  280. detail.SellerMobile = sellerItem.Mobile
  281. detail.SellerName = sellerItem.RealName
  282. }
  283. sellerList, err := models.GetSellerList(articleId)
  284. if err != nil {
  285. br.Msg = "获取信息失败"
  286. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  287. return
  288. }
  289. if detail.ArticleId >= utils.SummaryArticleId && strings.Contains(detail.SellerAndMobile, "-") {
  290. strnum := strings.Index(detail.SellerAndMobile, "-")
  291. detail.SellerAndMobile = detail.SellerAndMobile[0:strnum]
  292. if strnum > 0 {
  293. nickName := detail.SellerAndMobile[0:strnum]
  294. sellerAndMobile := &models.SellerRep{
  295. SellerMobile: "",
  296. SellerName: nickName,
  297. }
  298. sellerList = append(sellerList, sellerAndMobile)
  299. }
  300. }
  301. detail.SellerList = sellerList
  302. //作者头像
  303. if detail.DepartmentId > 0 {
  304. departmentDetail, err := models.GetArticleDepartmentDateilById(detail.DepartmentId)
  305. if err == nil {
  306. detail.DepartmentImgUrl = departmentDetail.ImgUrl
  307. }
  308. }
  309. } else { //潜在客户
  310. if applyCount > 0 {
  311. hasPermission = 5
  312. } else {
  313. hasPermission = 4
  314. }
  315. }
  316. Loop:
  317. if hasPermission != 1 {
  318. detail.Body = ""
  319. detail.BodyText = ""
  320. } else {
  321. articleFollowdetail, err := models.GetArticleFollowDetail(articleId, uid)
  322. if err != nil {
  323. br.Msg = "获取信息失败"
  324. br.ErrMsg = "获取关注信息失败,Err:" + err.Error()
  325. return
  326. }
  327. detail.FollowNum = articleFollowdetail.DNum
  328. detail.CollectionNum = articleFollowdetail.AcNum
  329. if articleFollowdetail.MdNum > 0 {
  330. detail.IsFollow = true
  331. }
  332. if detail.IsSummary == 1 {
  333. detail.IsBelongSummary = true
  334. }
  335. if detail.IsReport == 1 {
  336. detail.IsBelongReport = true
  337. }
  338. haveResearch = true
  339. }
  340. if hasPermission == 5 {
  341. companyPermissionNoStatus, err := models.GetCompanyPermissionByUserNoStatus(user.CompanyId)
  342. if err != nil {
  343. br.Msg = "获取信息失败"
  344. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  345. return
  346. }
  347. if companyPermissionNoStatus != "" {
  348. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  349. if err != nil && err.Error() != utils.ErrNoRow() {
  350. br.Msg = "获取信息失败"
  351. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  352. return
  353. }
  354. if sellerItemQy != nil {
  355. hasPermission = 3
  356. detail.SellerMobile = sellerItemQy.Mobile
  357. detail.SellerName = sellerItemQy.RealName
  358. }
  359. }
  360. }
  361. if hasPermission == 2 || hasPermission == 4 {
  362. //获取销售手机号
  363. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  364. if err != nil && err.Error() != utils.ErrNoRow() {
  365. br.Msg = "获取信息失败"
  366. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  367. return
  368. }
  369. if sellerItemQy != nil {
  370. hasPermission = 3
  371. detail.SellerMobile = sellerItemQy.Mobile
  372. detail.SellerName = sellerItemQy.RealName
  373. }
  374. }
  375. if detail.ArticleId < utils.SummaryArticleId {
  376. if user.Mobile != "" {
  377. chartUserTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
  378. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
  379. } else {
  380. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId)
  381. }
  382. detail.IsNeedJump = true
  383. }
  384. // 处理研选下面的路演精华 的报告链接是否跳转
  385. if hasPermission == 1 && detail.ArticleId > utils.SummaryArticleId && detail.ArticleTypeId > 0 {
  386. detail.PublishDate = utils.TimeRemoveHms2(detail.PublishDate)
  387. if detail.ReportLink != "" {
  388. chartUserTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
  389. detail.ReportLink += "?token=" + chartUserTokenByMobile
  390. }
  391. }
  392. resp.HasPermission = hasPermission
  393. resp.HaveResearch = haveResearch
  394. resp.HasFree = hasFree
  395. resp.Detail = detail
  396. if user.Mobile != "" {
  397. resp.Mobile = user.Mobile
  398. } else {
  399. resp.Mobile = user.Email
  400. }
  401. br.Ret = 200
  402. br.Success = true
  403. br.Msg = "获取成功"
  404. br.Data = resp
  405. }
  406. // @Title 收藏
  407. // @Description 收藏
  408. // @Param request body models.ArticleCollectReq true "type json string"
  409. // @Success 200 {object} models.FontsCollectResp
  410. // @router /collect [post]
  411. func (this *ArticleController) ArticleCollect() {
  412. br := new(models.BaseResponse).Init()
  413. defer func() {
  414. this.Data["json"] = br
  415. this.ServeJSON()
  416. }()
  417. user := this.User
  418. if user == nil {
  419. br.Msg = "请重新登录"
  420. br.Ret = 408
  421. return
  422. }
  423. uid := user.UserId
  424. var req models.ArticleCollectReq
  425. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  426. if err != nil {
  427. br.Msg = "参数解析异常!"
  428. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  429. return
  430. }
  431. articleId := req.ArticleId
  432. detail, err := models.GetArticleDetailById(articleId)
  433. if err != nil {
  434. br.Msg = "获取信息失败"
  435. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  436. return
  437. }
  438. count, err := models.GetArticleCollectCount(uid, articleId)
  439. if err != nil {
  440. br.Msg = "获取数据失败!"
  441. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  442. return
  443. }
  444. resp := new(models.ArticleCollectResp)
  445. if count <= 0 {
  446. item := new(models.CygxArticleCollect)
  447. item.ArticleId = req.ArticleId
  448. item.UserId = uid
  449. item.CreateTime = time.Now()
  450. item.Mobile = user.Mobile
  451. item.Email = user.Email
  452. item.CompanyId = user.CompanyId
  453. item.CompanyName = user.CompanyName
  454. item.RealName = user.RealName
  455. _, err = models.AddCygxArticleCollect(item)
  456. if err != nil {
  457. br.Msg = "收藏失败"
  458. br.ErrMsg = "收藏失败,Err:" + err.Error()
  459. return
  460. }
  461. br.Msg = "收藏成功"
  462. resp.Status = 1
  463. // 文章收藏消息发送
  464. go services.ArticleUserRemind(user, detail, 2)
  465. } else {
  466. err = models.RemoveArticleCollect(uid, articleId)
  467. if err != nil {
  468. br.Msg = "取消收藏失败"
  469. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  470. return
  471. }
  472. br.Msg = "已取消收藏"
  473. resp.Status = 2
  474. }
  475. collectTotal, err := models.GetArticleCollectUsersCount(articleId)
  476. if err != nil {
  477. br.Msg = "获取数据失败"
  478. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  479. return
  480. }
  481. resp.CollectCount = collectTotal
  482. br.Ret = 200
  483. br.Success = true
  484. br.Data = resp
  485. }
  486. // @Title 访谈申请
  487. // @Description 访谈申请
  488. // @Param request body models.ArticleInterviewApplyReq true "type json string"
  489. // @Success 200 {object} models.FontsCollectResp
  490. // @router /interview/apply [post]
  491. func (this *ArticleController) InterviewApply() {
  492. br := new(models.BaseResponse).Init()
  493. defer func() {
  494. this.Data["json"] = br
  495. this.ServeJSON()
  496. }()
  497. user := this.User
  498. if user == nil {
  499. br.Msg = "请重新登录"
  500. br.Ret = 408
  501. return
  502. }
  503. uid := user.UserId
  504. var req models.ArticleInterviewApplyReq
  505. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  506. if err != nil {
  507. br.Msg = "参数解析异常!"
  508. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  509. return
  510. }
  511. article, err := models.GetArticleDetailById(req.ArticleId)
  512. if err != nil {
  513. br.Msg = "获取纪要失败!"
  514. br.ErrMsg = "获取纪要失败,Err:" + err.Error()
  515. return
  516. }
  517. count, err := models.GetArticleInterviewApplyCount(uid, req.ArticleId)
  518. if err != nil {
  519. br.Msg = "获取数据失败!"
  520. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  521. return
  522. }
  523. resp := new(models.ArticleInterviewApplyResp)
  524. if count <= 0 {
  525. item := new(models.CygxInterviewApply)
  526. item.ArticleId = req.ArticleId
  527. item.UserId = uid
  528. item.CompanyId = user.CompanyId
  529. item.Status = "待邀请"
  530. item.Sort = 1
  531. item.ArticleTitle = article.Title
  532. item.CreateTime = time.Now()
  533. item.ModifyTime = time.Now()
  534. item.ArticleIdMd5 = article.ArticleIdMd5
  535. _, err = models.AddCygxInterviewApply(item)
  536. if err != nil {
  537. br.Msg = "申请失败"
  538. br.ErrMsg = "申请失败,Err:" + err.Error()
  539. return
  540. }
  541. br.Msg = "申请成功"
  542. resp.Status = 1
  543. //发送模板消息
  544. if user.CompanyId > 1 {
  545. mobile := user.Mobile
  546. if mobile == "" {
  547. mobile = user.Email
  548. }
  549. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  550. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  551. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  552. if openIpItem != nil && openIpItem.OpenId != "" {
  553. go services.SendInterviewApplyTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  554. }
  555. }
  556. }
  557. } else {
  558. err = models.RemoveArticleInterviewApply(uid, req.ArticleId)
  559. if err != nil {
  560. br.Msg = "取消申请失败"
  561. br.ErrMsg = "取消申请失败,Err:" + err.Error()
  562. return
  563. }
  564. br.Msg = "已取消申请"
  565. resp.Status = 2
  566. if user.CompanyId > 1 {
  567. mobile := user.Mobile
  568. if mobile == "" {
  569. mobile = user.Email
  570. }
  571. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  572. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  573. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  574. if openIpItem != nil && openIpItem.OpenId != "" {
  575. go services.SendInterviewApplyCancelTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  576. }
  577. }
  578. }
  579. }
  580. br.Ret = 200
  581. br.Success = true
  582. br.Data = resp
  583. }
  584. // @Title 获取报告详情
  585. // @Description 获取报告详情接口
  586. // @Param ArticleIdMd5 query int true "报告ID"
  587. // @Success 200 {object} models.ArticleDetailResp
  588. // @router /look/detail [get]
  589. func (this *ArticleControllerMobile) DetailMd5() {
  590. br := new(models.BaseResponse).Init()
  591. defer func() {
  592. this.Data["json"] = br
  593. this.ServeJSON()
  594. }()
  595. user := this.User
  596. if user == nil {
  597. br.Msg = "请登录"
  598. br.ErrMsg = "请登录,用户信息为空"
  599. br.Ret = 408
  600. return
  601. }
  602. uid := user.UserId
  603. articleIdMd5 := this.GetString("ArticleIdMd5")
  604. if articleIdMd5 == "" {
  605. br.Msg = "参数错误"
  606. br.ErrMsg = "参数错误"
  607. return
  608. }
  609. resp := new(models.ArticleDetailResp)
  610. detail, err := models.GetArticleDetailByIdMd5(articleIdMd5)
  611. if err != nil {
  612. br.Msg = "获取信息失败"
  613. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  614. return
  615. }
  616. articleId := detail.ArticleId
  617. detail.Body = html.UnescapeString(detail.Body)
  618. hasPermission := 2
  619. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  620. if user.CompanyId > 1 {
  621. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  622. if err != nil {
  623. br.Msg = "获取信息失败"
  624. br.ErrMsg = "获取公司权限失败,Err:" + err.Error()
  625. return
  626. }
  627. detail.Body = html.UnescapeString(detail.Body)
  628. 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)
  629. detail.Body = strings.Replace(detail.Body, "pre", "div", -1)
  630. detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  631. if companyPermission == "" {
  632. hasPermission = 2
  633. } else {
  634. var articlePermissionPermissionName string
  635. if detail.CategoryId > 0 {
  636. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  637. if err != nil {
  638. br.Msg = "获取信息失败"
  639. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + articleIdMd5
  640. return
  641. }
  642. if articlePermission == nil {
  643. br.Msg = "获取信息失败"
  644. br.ErrMsg = "报告权限不存在,Err:" + articleIdMd5
  645. return
  646. }
  647. articlePermissionPermissionName = articlePermission.PermissionName
  648. } else {
  649. articlePermissionPermissionName = detail.CategoryName
  650. }
  651. var hasPersion bool
  652. slice := strings.Split(articlePermissionPermissionName, ",")
  653. for _, v := range slice {
  654. if strings.Contains(companyPermission, v) {
  655. hasPersion = true
  656. }
  657. }
  658. userType, _, err := services.GetUserType(user.CompanyId)
  659. if err != nil {
  660. br.Msg = "获取信息失败"
  661. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  662. return
  663. }
  664. if userType == 1 && strings.Contains(detail.CategoryName, "研选") {
  665. hasPersion = false
  666. }
  667. if detail.IsReport == 1 {
  668. detailCategory, err := models.GetdetailByCategoryIdSando(detail.CategoryId)
  669. if err != nil && err.Error() != utils.ErrNoRow() {
  670. br.Msg = "获取信息失败"
  671. br.ErrMsg = "获取信息失败,Err:" + err.Error() + "categoryID 不存在:" + strconv.Itoa(detail.CategoryId)
  672. return
  673. }
  674. permissionStr, err := models.GetCompanyPermissionByUser(user.CompanyId)
  675. if err != nil {
  676. br.Msg = "获取信息失败"
  677. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  678. return
  679. }
  680. if detailCategory != nil {
  681. if detailCategory.PermissionType == 1 {
  682. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(主观)") {
  683. hasPersion = false
  684. }
  685. } else if detailCategory.PermissionType == 2 {
  686. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(客观)") {
  687. hasPersion = false
  688. }
  689. }
  690. }
  691. }
  692. if hasPersion {
  693. hasPermission = 1
  694. record := new(models.CygxArticleHistoryRecordNewpv)
  695. record.UserId = uid
  696. record.ArticleId = articleId
  697. record.CreateTime = time.Now()
  698. record.ModifyTime = time.Now()
  699. record.Mobile = user.Mobile
  700. record.Email = user.Email
  701. record.CompanyId = user.CompanyId
  702. record.CompanyName = user.CompanyName
  703. //新增浏览记录
  704. go models.AddCygxArticleViewRecordNewpv(record)
  705. //30分钟之内阅读同一篇文章不错二次推送
  706. key := "CYGX_ARTICLE_READ" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  707. if !utils.Rc.IsExist(key) {
  708. go services.ArticleUserRemind(user, detail, 1)
  709. utils.Rc.Put(key, 1, 30*time.Second)
  710. }
  711. }
  712. if hasPermission == 1 {
  713. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  714. if !utils.Rc.IsExist(key) {
  715. //新增浏览记录
  716. record := new(models.CygxArticleViewRecord)
  717. record.UserId = uid
  718. record.ArticleId = articleId
  719. record.CreateTime = time.Now()
  720. record.Mobile = user.Mobile
  721. record.Email = user.Email
  722. record.CompanyId = user.CompanyId
  723. record.CompanyName = user.CompanyName
  724. go models.AddCygxArticleViewRecord(record)
  725. utils.Rc.Put(key, 1, 5*time.Second)
  726. models.ModifyReportLastViewTime(uid)
  727. }
  728. }
  729. }
  730. //作者头像
  731. if detail.DepartmentId > 0 {
  732. departmentDetail, err := models.GetArticleDepartmentDateilById(detail.DepartmentId)
  733. if err == nil {
  734. detail.DepartmentImgUrl = departmentDetail.ImgUrl
  735. detail.NickName = departmentDetail.NickName
  736. }
  737. }
  738. }
  739. detail.SellerAndMobile = "" //业务需要强制处理为空
  740. resp.HasPermission = hasPermission
  741. if hasPermission == 1 {
  742. detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
  743. resp.Detail = detail
  744. } else {
  745. if user.Mobile != "" {
  746. resp.Mobile = user.Mobile
  747. } else {
  748. resp.Mobile = user.Email
  749. }
  750. }
  751. br.Ret = 200
  752. br.Success = true
  753. br.Msg = "获取成功"
  754. br.Data = resp
  755. }
  756. // @Title 上传文章阅读时间
  757. // @Description 上传文章阅读时间接口
  758. // @Param request body models.AddStopTimeRep true "type json string"
  759. // @Success 200 {object} models.ArticleDetailResp
  760. // @router /addStopTime [post]
  761. func (this *ArticleController) AddStopTime() {
  762. br := new(models.BaseResponse).Init()
  763. defer func() {
  764. this.Data["json"] = br
  765. this.ServeJSON()
  766. }()
  767. user := this.User
  768. if user == nil {
  769. br.Msg = "请登录"
  770. br.ErrMsg = "请登录,用户信息为空"
  771. br.Ret = 408
  772. return
  773. }
  774. var req models.AddStopTimeRep
  775. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  776. if err != nil {
  777. br.Msg = "参数解析异常!"
  778. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  779. return
  780. }
  781. uid := user.UserId
  782. articleId := req.ArticleId
  783. stopTime := req.StopTime
  784. outType := req.OutType
  785. source := req.Source
  786. if articleId <= 0 {
  787. br.Msg = "参数错误"
  788. br.ErrMsg = "参数错误"
  789. return
  790. }
  791. if stopTime == 0 {
  792. stopTime = 1
  793. }
  794. if outType != 2 {
  795. outType = 1
  796. }
  797. if source != "PC" {
  798. source = "MOBILE"
  799. }
  800. detail := new(models.ArticleDetail)
  801. hasPermission := 0
  802. hasFree := 0
  803. //判断是否已经申请过
  804. applyCount, err := models.GetApplyRecordCount(uid)
  805. if err != nil && err.Error() != utils.ErrNoRow() {
  806. br.Msg = "获取信息失败"
  807. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  808. return
  809. }
  810. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  811. if user.CompanyId > 1 {
  812. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  813. if err != nil {
  814. br.Msg = "获取信息失败"
  815. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  816. return
  817. }
  818. detail, err = models.GetArticleDetailById(articleId)
  819. if err != nil {
  820. br.Msg = "获取信息失败"
  821. br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  822. return
  823. }
  824. if companyPermission == "" {
  825. if applyCount > 0 {
  826. hasPermission = 5
  827. } else {
  828. hasPermission = 2
  829. }
  830. hasFree = 2
  831. goto Loop
  832. } else {
  833. hasFree = 1
  834. var articlePermissionPermissionName string
  835. if detail.CategoryId > 0 {
  836. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  837. if err != nil {
  838. br.Msg = "获取信息失败"
  839. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  840. return
  841. }
  842. if articlePermission == nil {
  843. br.Msg = "获取信息失败"
  844. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  845. return
  846. }
  847. articlePermissionPermissionName = articlePermission.PermissionName
  848. } else {
  849. articlePermissionPermissionName = detail.CategoryName
  850. }
  851. var hasPersion bool
  852. slice := strings.Split(articlePermissionPermissionName, ",")
  853. for _, v := range slice {
  854. if strings.Contains(companyPermission, v) {
  855. hasPersion = true
  856. }
  857. }
  858. if hasPersion {
  859. detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
  860. if err == nil {
  861. hasPermission = 1
  862. historyRecord := new(models.AddStopTimeNewRep)
  863. historyRecord.StopTime = detailNew.StopTime + stopTime
  864. historyRecord.Id = detailNew.Id
  865. historyRecord.OutType = outType
  866. go models.UpdateArticleStopTime(historyRecord)
  867. }
  868. //不统计本公司的阅读记录、正常退出的不做时间差统计
  869. if stopTime > 3 {
  870. key := "CYGX_ARTICLE_PV" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid) + "_" + strconv.Itoa(user.CompanyId) + "_" + strconv.Itoa(outType)
  871. record := new(models.CygxArticleHistoryRecordNewpv)
  872. record.UserId = uid
  873. record.ArticleId = articleId
  874. record.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
  875. record.ModifyTime = time.Now()
  876. record.Mobile = user.Mobile
  877. record.Email = user.Email
  878. record.CompanyId = user.CompanyId
  879. record.CompanyName = user.CompanyName
  880. record.StopTime = stopTime
  881. record.OutType = outType
  882. record.Source = source
  883. if !utils.Rc.IsExist(key) || outType != 2 {
  884. //新增浏览记录
  885. go models.AddCygxArticleViewRecordNewpv(record)
  886. recordRedis := new(services.ReportViewRecord)
  887. recordRedis.UserId = user.UserId
  888. recordRedis.ReportId = articleId
  889. recordRedis.Mobile = user.Mobile
  890. recordRedis.Email = user.Email
  891. recordRedis.RealName = user.RealName
  892. recordRedis.CompanyName = user.CompanyName
  893. recordRedis.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
  894. go services.PushViewRecordNewRedisData(recordRedis, user.CompanyId)
  895. } else {
  896. go models.UpdateCygxArticleViewRecordNewpv(record, stopTime)
  897. }
  898. utils.Rc.Put(key, 1, 10*time.Minute)
  899. }
  900. models.ModifyReportLastViewTime(uid)
  901. } else { //无该行业权限
  902. hasPermission = 3
  903. }
  904. }
  905. } else { //潜在客户
  906. if applyCount > 0 {
  907. hasPermission = 5
  908. } else {
  909. hasPermission = 4
  910. }
  911. }
  912. Loop:
  913. resp := new(models.ArticleDetailAddStopTimeRep)
  914. resp.HasPermission = hasPermission
  915. resp.HasFree = hasFree
  916. br.Ret = 200
  917. br.Success = true
  918. br.Msg = "操作成功"
  919. br.Data = resp
  920. }
  921. // @Title 文章带问
  922. // @Description 新增文章带问接口
  923. // @Param request body models.AddArticleAskRep true "type json string"
  924. // @Success Ret=200 新增成功
  925. // @router /askAdd [post]
  926. func (this *ArticleController) AskAdd() {
  927. br := new(models.BaseResponse).Init()
  928. defer func() {
  929. this.Data["json"] = br
  930. this.ServeJSON()
  931. }()
  932. user := this.User
  933. if user == nil {
  934. br.Msg = "请登录"
  935. br.ErrMsg = "请登录,SysUser Is Empty"
  936. br.Ret = 408
  937. return
  938. }
  939. var req models.AddArticleAskRep
  940. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  941. if err != nil {
  942. br.Msg = "参数解析异常!"
  943. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  944. return
  945. }
  946. if req.Content == "" {
  947. br.Msg = "建议内容不可为空"
  948. return
  949. }
  950. content := req.Content
  951. itemToken, err := services.WxGetToken()
  952. if err != nil {
  953. br.Msg = "GetWxAccessToken Err:" + err.Error()
  954. return
  955. }
  956. if itemToken.AccessToken == "" {
  957. br.Msg = "accessToken is empty"
  958. return
  959. }
  960. commerr, err := weapp.MSGSecCheck(itemToken.AccessToken, content)
  961. if err != nil {
  962. br.Msg = "内容校验失败!"
  963. br.ErrMsg = "内容校验失败,Err:" + err.Error()
  964. return
  965. }
  966. if commerr.ErrCode != 0 {
  967. br.Msg = "内容违规,请重新提交!"
  968. br.ErrMsg = "颜文字内容违规,Err:" + commerr.ErrMSG
  969. return
  970. }
  971. articleId := req.ArticleId
  972. count, _ := models.GetArticleCountById(articleId)
  973. if count == 0 {
  974. br.Msg = "操作失败"
  975. br.ErrMsg = "文章ID错误,不存在 articleId:" + strconv.Itoa(articleId)
  976. return
  977. }
  978. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  979. if err != nil {
  980. br.Msg = "提交失败!"
  981. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  982. return
  983. }
  984. if companyDetail == nil {
  985. br.Msg = "提交失败!"
  986. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  987. return
  988. }
  989. item := new(models.CygxArticleAsk)
  990. item.UserId = user.UserId
  991. item.ArticleId = req.ArticleId
  992. item.CompanyId = user.CompanyId
  993. item.CompanyName = companyDetail.CompanyName
  994. item.CreateTime = time.Now()
  995. item.Mobile = user.Mobile
  996. item.Email = user.Email
  997. item.Content = content
  998. _, err = models.AddArticleAsk(item)
  999. if err != nil {
  1000. br.Msg = "提交失败"
  1001. br.ErrMsg = "提交失败,Err:" + err.Error()
  1002. return
  1003. }
  1004. companyItem, err := models.GetSellerDetailAllByCompanyId(user.CompanyId)
  1005. if err != nil {
  1006. br.Msg = "获取信息失败"
  1007. br.ErrMsg = "获取所属销售信息失败,Err:" + err.Error()
  1008. return
  1009. }
  1010. var mobile string
  1011. if utils.RunMode == "release" {
  1012. //mobile = utils.WxMsgTemplateIdAskMsgMobileAll + "," + companyItem.Mobile
  1013. mobile = utils.WxMsgTemplateIdAskMsgMobileAll
  1014. } else {
  1015. mobile = utils.WxMsgTemplateIdAskMsgMobile
  1016. }
  1017. openIdList, err := models.GetWxOpenIdByMobileList(mobile)
  1018. if err != nil {
  1019. br.Msg = "提交失败"
  1020. br.ErrMsg = "提交失败,Err:" + err.Error()
  1021. return
  1022. }
  1023. detail, err := models.GetArticleDetailById(articleId)
  1024. if err != nil {
  1025. br.Msg = "获取信息失败"
  1026. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1027. return
  1028. }
  1029. companyName := user.CompanyName + "-" + user.RealName + "(" + companyItem.SellerName + ")"
  1030. go services.SendWxMsgWithAsk(companyName, time.Now().Format(utils.FormatDateTime), content, detail.Title, openIdList, req.ArticleId)
  1031. br.Ret = 200
  1032. br.Success = true
  1033. br.Msg = "提交成功"
  1034. }
  1035. // @Title 下载PDF打水印
  1036. // @Description 下载PDF打水印接口
  1037. // @Param ArticleId query int true "报告ID"
  1038. // @Success 200 {object} models.ArticleDetailFileLink
  1039. // @router /pdfwatermark [get]
  1040. func (this *ArticleController) Pdfwatermark() {
  1041. br := new(models.BaseResponse).Init()
  1042. defer func() {
  1043. this.Data["json"] = br
  1044. this.ServeJSON()
  1045. }()
  1046. user := this.User
  1047. if user == nil {
  1048. br.Msg = "请登录"
  1049. br.ErrMsg = "请登录,用户信息为空"
  1050. br.Ret = 408
  1051. return
  1052. }
  1053. uid := user.UserId
  1054. articleId, err := this.GetInt("ArticleId")
  1055. if articleId <= 0 {
  1056. br.Msg = "文章不存在"
  1057. br.ErrMsg = "文章不存在,文章ID错误"
  1058. return
  1059. }
  1060. //缓存校验
  1061. cacheKey := fmt.Sprint("xygx:apply_record:add:", uid, "ArticleId_", articleId)
  1062. ttlTime := utils.Rc.GetRedisTTL(cacheKey)
  1063. if ttlTime > 0 && user.CompanyId != 16 {
  1064. br.Msg = "下载失败,下载过于频繁"
  1065. br.ErrMsg = "下载失败,下载过于频繁:mobile" + user.Mobile
  1066. return
  1067. }
  1068. resp := new(models.ArticleDetailFileLink)
  1069. detail := new(models.ArticleDetail)
  1070. detail, err = models.GetArticleDetailById(articleId)
  1071. if err != nil {
  1072. br.Msg = "获取信息失败"
  1073. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1074. return
  1075. }
  1076. fileLink := detail.FileLink
  1077. if fileLink == "" {
  1078. br.Msg = "下载失败"
  1079. br.ErrMsg = "下载失败,报告链接不存在"
  1080. return
  1081. }
  1082. mobile := user.Mobile
  1083. if mobile == "" {
  1084. mobile = user.Email
  1085. }
  1086. sliceLink := strings.Split(fileLink, "/")
  1087. uploadDir := "static/pdf/"
  1088. //判断文件夹是否存在,不存在则创建
  1089. if !utils.FileIsExist(uploadDir) {
  1090. err = os.MkdirAll(uploadDir, 0755)
  1091. if err != nil {
  1092. br.Msg = "下载失败"
  1093. br.ErrMsg = "存储目录创建失败,Err:" + err.Error()
  1094. return
  1095. }
  1096. }
  1097. var oldFile string
  1098. var newFile string
  1099. //获取PDF源文件名称
  1100. pdfName := sliceLink[len(sliceLink)-1]
  1101. pdfName = utils.MD5(pdfName) + ".pdf"
  1102. oldFile = uploadDir + pdfName
  1103. //判断PDF本地是否存在,不存在则保存到本地
  1104. if !utils.FileIsExist(oldFile) {
  1105. res, err := nhttp.Get(fileLink)
  1106. if err != nil {
  1107. br.Msg = "下载失败"
  1108. br.ErrMsg = "获取源文件失败,Err:" + err.Error()
  1109. return
  1110. }
  1111. defer res.Body.Close()
  1112. // 获得get请求响应的reader对象
  1113. reader := bufio.NewReaderSize(res.Body, 32*1024)
  1114. file, err := os.Create(oldFile)
  1115. if err != nil {
  1116. br.Msg = "下载失败"
  1117. br.ErrMsg = "保存源文件到本地失败,Err:" + err.Error()
  1118. return
  1119. }
  1120. defer file.Close()
  1121. //获得文件的writer对象
  1122. writer := bufio.NewWriter(file)
  1123. written, _ := io.Copy(writer, reader)
  1124. fmt.Printf("Total length: %d", written)
  1125. }
  1126. newFile = uploadDir + "new_" + pdfName
  1127. onTop := true
  1128. wm, err := pdfcpu.ParseTextWatermarkDetails(mobile, " op:.4, pos:c ,points:16 ", onTop, 1)
  1129. if err != nil {
  1130. br.Msg = "下载失败"
  1131. br.ErrMsg = "生成水印文件失败,Err:" + err.Error()
  1132. return
  1133. }
  1134. err = api.AddWatermarksFile(oldFile, newFile, nil, wm, nil)
  1135. if err != nil {
  1136. //br.Msg = "下载失败"
  1137. //br.ErrMsg = "生成水印PDF失败,Err:" + err.Error()
  1138. resp.FileLink = fileLink
  1139. br.Ret = 200
  1140. br.Success = true
  1141. br.Msg = "获取成功"
  1142. br.Data = resp
  1143. return
  1144. }
  1145. randStr := utils.GetRandStringNoSpecialChar(28)
  1146. fileName := randStr + ".pdf"
  1147. savePath := uploadDir + time.Now().Format("200601/20060102/")
  1148. savePath += fileName
  1149. //上传到阿里云
  1150. err = services.UploadFileToAliyun(fileName, newFile, savePath)
  1151. if err != nil {
  1152. br.Msg = "下载失败"
  1153. br.ErrMsg = "文件上传失败,Err:" + err.Error()
  1154. return
  1155. }
  1156. fileHost := "https://hzstatic.hzinsights.com/"
  1157. resourceUrl := fileHost + savePath
  1158. defer func() {
  1159. os.Remove(newFile)
  1160. }()
  1161. utils.Rc.SetNX(cacheKey, user.Mobile, time.Minute*5)
  1162. resp.FileLink = resourceUrl
  1163. br.Ret = 200
  1164. br.Success = true
  1165. br.Msg = "获取成功"
  1166. br.Data = resp
  1167. }
  1168. // @Title 获取报告详情(无需token)
  1169. // @Description 获取报告详情接口
  1170. // @Param ArticleId query int true "报告ID"
  1171. // @Param CompanyCode query string false "机构编号"
  1172. // @Param CompanyName query string false "机构名称"
  1173. // @Param Email query string false "邮箱"
  1174. // @Param Sign query string false "加密签名"
  1175. // @Success 200 {object} models.ArticleDetailHtgjResp
  1176. // @router /detailPublic [get]
  1177. func (this *ArticleCommonController) DetailPublic() {
  1178. br := new(models.BaseResponse).Init()
  1179. defer func() {
  1180. this.Data["json"] = br
  1181. this.ServeJSON()
  1182. }()
  1183. articleId, _ := this.GetInt("ArticleId")
  1184. companyCode := this.GetString("CompanyCode")
  1185. companyNameHt := this.GetString("CompanyName")
  1186. email := this.GetString("Email")
  1187. sign := this.GetString("Sign")
  1188. resp := new(models.ArticleDetailHtgjResp)
  1189. if companyCode == "" || email == "" {
  1190. resp.HasPermission = 2
  1191. br.Ret = 200
  1192. br.Success = true
  1193. br.Msg = "获取成功"
  1194. br.Data = resp
  1195. return
  1196. }
  1197. if articleId <= 0 {
  1198. br.Msg = "文章不存在"
  1199. br.ErrMsg = "文章不存在,文章ID错误"
  1200. return
  1201. }
  1202. errMsg, err, wxUser, companyName := services.CheckHtgj(companyCode, companyNameHt, email, sign)
  1203. if errMsg != "" {
  1204. br.Msg = errMsg
  1205. return
  1206. }
  1207. companyPermission, err := models.GetCompanyPermission(wxUser.CompanyId)
  1208. if err != nil {
  1209. br.Msg = "获取信息失败"
  1210. br.ErrMsg = "获取用户权限失败,Err:" + err.Error() + ";articleId" + strconv.Itoa(articleId)
  1211. return
  1212. }
  1213. hasPermission := 0
  1214. uid := wxUser.UserId
  1215. detail, err := models.GetArticleDetailById(articleId)
  1216. if err != nil {
  1217. br.Msg = "获取信息失败"
  1218. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1219. return
  1220. }
  1221. detail.Body = html.UnescapeString(detail.Body)
  1222. 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)
  1223. detail.Body = strings.Replace(detail.Body, "pre", "div", -1)
  1224. detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
  1225. var articlePermissionPermissionName string
  1226. if detail.CategoryId > 0 {
  1227. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  1228. if err != nil {
  1229. br.Msg = "获取信息失败"
  1230. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
  1231. return
  1232. }
  1233. if articlePermission == nil {
  1234. br.Msg = "获取信息失败"
  1235. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
  1236. return
  1237. }
  1238. articlePermissionPermissionName = articlePermission.PermissionName
  1239. } else {
  1240. articlePermissionPermissionName = detail.CategoryName
  1241. }
  1242. var hasPersion bool
  1243. slice := strings.Split(articlePermissionPermissionName, ",")
  1244. for _, v := range slice {
  1245. if strings.Contains(companyPermission, v) {
  1246. hasPersion = true
  1247. }
  1248. }
  1249. if hasPersion {
  1250. hasPermission = 1
  1251. }
  1252. if strings.Contains(detail.CategoryName, "研选") {
  1253. detail.IsResearch = true
  1254. }
  1255. resp.HasPermission = hasPermission
  1256. if hasPermission == 1 {
  1257. //获取销售手机号
  1258. sellerItem, err := models.GetSellerByCompanyId(wxUser.CompanyId)
  1259. if err != nil {
  1260. br.Msg = "获取信息失败"
  1261. br.ErrMsg = "获取销售数据失败2,Err:" + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
  1262. return
  1263. }
  1264. if sellerItem != nil {
  1265. detail.SellerMobile = sellerItem.Mobile
  1266. detail.SellerName = sellerItem.RealName
  1267. }
  1268. sellerList, err := models.GetSellerList(articleId)
  1269. if err != nil {
  1270. br.Msg = "获取信息失败"
  1271. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(wxUser.UserId) + ";articleId" + strconv.Itoa(articleId)
  1272. return
  1273. }
  1274. if detail.ArticleId >= utils.SummaryArticleId && strings.Contains(detail.SellerAndMobile, "-") {
  1275. strnum := strings.Index(detail.SellerAndMobile, "-")
  1276. detail.SellerAndMobile = detail.SellerAndMobile[0:strnum]
  1277. if strnum > 0 {
  1278. nickName := detail.SellerAndMobile[0:strnum]
  1279. sellerAndMobile := &models.SellerRep{
  1280. SellerMobile: "",
  1281. SellerName: nickName,
  1282. }
  1283. sellerList = append(sellerList, sellerAndMobile)
  1284. }
  1285. }
  1286. detail.SellerList = sellerList
  1287. resp.Detail = detail
  1288. historyRecord := new(models.CygxArticleHistoryRecord)
  1289. historyRecord.UserId = wxUser.UserId
  1290. historyRecord.ArticleId = articleId
  1291. historyRecord.CreateTime = time.Now()
  1292. historyRecord.Mobile = wxUser.Mobile
  1293. historyRecord.Email = wxUser.Email
  1294. historyRecord.CompanyId = wxUser.CompanyId
  1295. historyRecord.CompanyName = companyName
  1296. recordCount, _ := models.GetNoAddStoptimeArticleCount(wxUser.UserId, articleId)
  1297. if recordCount == 0 {
  1298. go models.AddCygxArticleHistoryRecord(historyRecord)
  1299. } else {
  1300. detailNew, err := models.GetNewArticleHistoryRecord(wxUser.UserId, articleId)
  1301. if err != nil {
  1302. br.Msg = "获取信息失败"
  1303. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1304. return
  1305. }
  1306. if detailNew.StopTime > 0 {
  1307. go models.AddCygxArticleHistoryRecord(historyRecord)
  1308. }
  1309. }
  1310. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(wxUser.UserId)
  1311. if !utils.Rc.IsExist(key) {
  1312. //新增浏览记录
  1313. record := new(models.CygxArticleViewRecord)
  1314. record.UserId = wxUser.UserId
  1315. record.ArticleId = articleId
  1316. record.CreateTime = time.Now()
  1317. record.Mobile = wxUser.Mobile
  1318. record.Email = wxUser.Email
  1319. record.CompanyId = wxUser.CompanyId
  1320. record.CompanyName = companyName
  1321. go models.AddCygxArticleViewRecord(record)
  1322. utils.Rc.Put(key, 1, 5*time.Second)
  1323. models.ModifyReportLastViewTime(wxUser.UserId)
  1324. }
  1325. if detail.ArticleId < utils.SummaryArticleId {
  1326. chartUserTokenByMobile, _ := services.GetUserTokenByMobile(utils.HtgjPublicMobile)
  1327. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
  1328. detail.IsNeedJump = true
  1329. }
  1330. if detail.ArticleId < utils.SummaryArticleId {
  1331. chartUserTokenByMobile, _ := services.GetUserTokenByMobile(utils.HtgjPublicMobile)
  1332. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
  1333. detail.IsNeedJump = true
  1334. }
  1335. collectCount, err := models.GetArticleCollectCount(uid, articleId)
  1336. if err != nil && err.Error() != utils.ErrNoRow() {
  1337. br.Msg = "获取信息失败"
  1338. br.ErrMsg = "判断是否已收藏失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1339. return
  1340. }
  1341. if collectCount > 0 {
  1342. detail.IsCollect = true
  1343. }
  1344. interviewApplyItem, err := models.GetArticleInterviewApply(uid, articleId)
  1345. if err != nil && err.Error() != utils.ErrNoRow() {
  1346. br.Msg = "获取信息失败"
  1347. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1348. return
  1349. }
  1350. if interviewApplyItem != nil && interviewApplyItem.InterviewApplyId > 0 {
  1351. detail.IsInterviewApply = true
  1352. detail.InterviewApplyStatus = interviewApplyItem.Status
  1353. }
  1354. articleFollowdetail, err := models.GetArticleFollowDetail(articleId, uid)
  1355. if err != nil {
  1356. br.Msg = "获取信息失败"
  1357. br.ErrMsg = "获取关注信息失败,Err:" + err.Error()
  1358. return
  1359. }
  1360. detail.FollowNum = articleFollowdetail.DNum
  1361. detail.CollectionNum = articleFollowdetail.AcNum
  1362. resp.Detail = detail
  1363. }
  1364. resp.CompanyName = companyName
  1365. br.Ret = 200
  1366. br.Success = true
  1367. br.Msg = "获取成功"
  1368. br.Data = resp
  1369. }
  1370. // @Title 上传文章阅读时间(无需token)
  1371. // @Description 上传文章阅读时间接口(无需token)
  1372. // @Param request body models.AddStopTimeHtgjRep true "type json string"
  1373. // @Success 200 {object} models.ArticleDetailResp
  1374. // @router /addStopTimePublic [post]
  1375. func (this *ArticleCommonController) AddStopTimePublic() {
  1376. br := new(models.BaseResponse).Init()
  1377. defer func() {
  1378. this.Data["json"] = br
  1379. this.ServeJSON()
  1380. }()
  1381. var req models.AddStopTimeHtgjRep
  1382. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1383. if err != nil {
  1384. br.Msg = "参数解析异常!"
  1385. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1386. return
  1387. }
  1388. articleId := req.ArticleId
  1389. stopTime := req.StopTime
  1390. outType := req.OutType
  1391. source := req.Source
  1392. companyCode := req.CompanyCode
  1393. companyName := req.CompanyName
  1394. wxuUserName := req.Email
  1395. sign := req.Sign
  1396. if companyCode == "" || companyName == "" || wxuUserName == "" || sign == "" {
  1397. br.Msg = "上传失败"
  1398. br.ErrMsg = "必填参数不能为空"
  1399. return
  1400. }
  1401. companyNameHt := companyCode + "_" + companyName
  1402. errMsg := services.CheckSign(companyCode+companyName+wxuUserName, sign)
  1403. if errMsg != "" {
  1404. br.Msg = errMsg
  1405. return
  1406. }
  1407. companyInfo, err := models.GetCompanyByThirdName(companyNameHt)
  1408. if err != nil {
  1409. br.Msg = "获取信息失败"
  1410. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  1411. return
  1412. }
  1413. user, err := models.GetUserByThirdName(companyInfo.CompanyId, wxuUserName)
  1414. if err != nil {
  1415. br.Msg = "获取信息失败"
  1416. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1417. return
  1418. }
  1419. uid := user.UserId
  1420. if articleId <= 0 {
  1421. br.Msg = "文章ID不存在"
  1422. br.ErrMsg = "参数错误"
  1423. return
  1424. }
  1425. if stopTime == 0 {
  1426. stopTime = 1
  1427. }
  1428. if outType != 2 {
  1429. outType = 1
  1430. }
  1431. if source != "PC" {
  1432. source = "MOBILE"
  1433. }
  1434. detail := new(models.ArticleDetail)
  1435. hasPermission := 0
  1436. hasFree := 0
  1437. //判断是否已经申请过
  1438. applyCount, err := models.GetApplyRecordCount(uid)
  1439. if err != nil && err.Error() != utils.ErrNoRow() {
  1440. br.Msg = "获取信息失败"
  1441. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  1442. return
  1443. }
  1444. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  1445. if user.CompanyId > 1 {
  1446. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  1447. if err != nil {
  1448. br.Msg = "获取信息失败"
  1449. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1450. return
  1451. }
  1452. detail, err = models.GetArticleDetailById(articleId)
  1453. if err != nil {
  1454. br.Msg = "获取信息失败"
  1455. br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1456. return
  1457. }
  1458. if companyPermission == "" {
  1459. if applyCount > 0 {
  1460. hasPermission = 5
  1461. } else {
  1462. hasPermission = 2
  1463. }
  1464. hasFree = 2
  1465. goto Loop
  1466. } else {
  1467. hasFree = 1
  1468. var articlePermissionPermissionName string
  1469. if detail.CategoryId > 0 {
  1470. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  1471. if err != nil {
  1472. br.Msg = "获取信息失败"
  1473. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1474. return
  1475. }
  1476. if articlePermission == nil {
  1477. br.Msg = "获取信息失败"
  1478. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1479. return
  1480. }
  1481. articlePermissionPermissionName = articlePermission.PermissionName
  1482. } else {
  1483. articlePermissionPermissionName = detail.CategoryName
  1484. }
  1485. var hasPersion bool
  1486. slice := strings.Split(articlePermissionPermissionName, ",")
  1487. for _, v := range slice {
  1488. if strings.Contains(companyPermission, v) {
  1489. hasPersion = true
  1490. }
  1491. }
  1492. if hasPersion {
  1493. detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
  1494. if err == nil {
  1495. hasPermission = 1
  1496. historyRecord := new(models.AddStopTimeNewRep)
  1497. historyRecord.StopTime = detailNew.StopTime + stopTime
  1498. historyRecord.Id = detailNew.Id
  1499. historyRecord.OutType = outType
  1500. go models.UpdateArticleStopTime(historyRecord)
  1501. }
  1502. //不统计本公司的阅读记录、正常退出的不做时间差统计
  1503. if user.CompanyId != 16 && stopTime > 3 {
  1504. key := "CYGX_ARTICLE_PV" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid) + "_" + strconv.Itoa(user.CompanyId) + "_" + strconv.Itoa(outType)
  1505. record := new(models.CygxArticleHistoryRecordNewpv)
  1506. record.UserId = uid
  1507. record.ArticleId = articleId
  1508. record.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
  1509. record.ModifyTime = time.Now()
  1510. record.Mobile = user.Mobile
  1511. record.Email = user.Email
  1512. record.CompanyId = user.CompanyId
  1513. record.CompanyName = companyInfo.CompanyName
  1514. record.StopTime = stopTime
  1515. record.OutType = outType
  1516. record.Source = source
  1517. if !utils.Rc.IsExist(key) || outType != 2 {
  1518. //新增浏览记录
  1519. go models.AddCygxArticleViewRecordNewpv(record)
  1520. recordRedis := new(services.ReportViewRecord)
  1521. recordRedis.UserId = user.UserId
  1522. recordRedis.ReportId = articleId
  1523. recordRedis.Mobile = user.Mobile
  1524. recordRedis.Email = user.Email
  1525. recordRedis.RealName = user.RealName
  1526. recordRedis.CompanyName = companyName
  1527. recordRedis.CreateTime = time.Now().Add(-time.Second * time.Duration(stopTime))
  1528. go services.PushViewRecordNewRedisData(recordRedis, user.CompanyId)
  1529. } else {
  1530. go models.UpdateCygxArticleViewRecordNewpv(record, stopTime)
  1531. }
  1532. utils.Rc.Put(key, 1, 10*time.Minute)
  1533. }
  1534. models.ModifyReportLastViewTime(uid)
  1535. } else { //无该行业权限
  1536. hasPermission = 3
  1537. }
  1538. }
  1539. } else { //潜在客户
  1540. if applyCount > 0 {
  1541. hasPermission = 5
  1542. } else {
  1543. hasPermission = 4
  1544. }
  1545. }
  1546. Loop:
  1547. resp := new(models.ArticleDetailAddStopTimeRep)
  1548. resp.HasPermission = hasPermission
  1549. resp.HasFree = hasFree
  1550. br.Ret = 200
  1551. br.Success = true
  1552. br.Msg = "操作成功"
  1553. br.Data = resp
  1554. }
  1555. // @Title 页面访问统计(无需token)
  1556. // @Description 上传页面访问统计(无需token)
  1557. // @Param request body models.CygxPageHistoryRecordHtgjRep true "type json string"
  1558. // @Success Ret=200 新增成功
  1559. // @router /pageHistoryPublic [post]
  1560. func (this *ArticleCommonController) PageHistoryPublic() {
  1561. br := new(models.BaseResponse).Init()
  1562. defer func() {
  1563. this.Data["json"] = br
  1564. this.ServeJSON()
  1565. }()
  1566. var req models.CygxPageHistoryRecordHtgjRep
  1567. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1568. if err != nil {
  1569. br.Msg = "参数解析异常!"
  1570. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1571. return
  1572. }
  1573. companyCode := req.CompanyCode
  1574. companyName := req.CompanyName
  1575. wxuUserName := req.Email
  1576. sign := req.Sign
  1577. if companyCode == "" || companyName == "" || wxuUserName == "" || sign == "" {
  1578. br.Msg = "上传失败"
  1579. br.ErrMsg = "必填参数不能为空"
  1580. return
  1581. }
  1582. companyNameHt := companyCode + "_" + companyName
  1583. errMsg := services.CheckSign(companyCode+companyName+wxuUserName, sign)
  1584. if errMsg != "" {
  1585. br.Msg = errMsg
  1586. return
  1587. }
  1588. companyInfo, err := models.GetCompanyByThirdName(companyNameHt)
  1589. if err != nil {
  1590. br.Msg = "获取信息失败"
  1591. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  1592. return
  1593. }
  1594. user, err := models.GetUserByThirdName(companyInfo.CompanyId, wxuUserName)
  1595. if err != nil {
  1596. br.Msg = "获取信息失败"
  1597. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1598. return
  1599. }
  1600. item := new(models.CygxPageHistoryRecord)
  1601. item.UserId = user.UserId
  1602. item.CreateTime = time.Now()
  1603. item.Mobile = user.Mobile
  1604. item.Email = user.Email
  1605. item.CompanyId = user.CompanyId
  1606. item.CompanyName = companyName
  1607. item.DetailId = req.DetailId
  1608. item.ChartPermissionId = req.ChartPermissionId
  1609. item.IndustrialManagementId = req.IndustrialManagementId
  1610. item.PageType = "ArticleCopy"
  1611. _, err = models.AddCygxPageHistoryRecord(item)
  1612. if err != nil {
  1613. br.Msg = "记录信息失败"
  1614. br.ErrMsg = "新增访问记录失败,Err:" + err.Error()
  1615. return
  1616. }
  1617. br.Ret = 200
  1618. br.Success = true
  1619. br.Msg = "新增成功"
  1620. }