article.go 50 KB

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