article.go 54 KB

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