article.go 50 KB

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