article.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_clpt/models"
  6. "hongze/hongze_clpt/services"
  7. "hongze/hongze_clpt/utils"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type ArticleController struct {
  13. BaseAuthController
  14. }
  15. type ArticleCommonController struct {
  16. BaseCommonController
  17. }
  18. // @Title 获取报告详情
  19. // @Description 获取报告详情接口
  20. // @Param ArticleId query int true "报告ID"
  21. // @Success 200 {object} models.ArticleDetailResp
  22. // @router /detail [get]
  23. func (this *ArticleController) Detail() {
  24. br := new(models.BaseResponse).Init()
  25. defer func() {
  26. this.Data["json"] = br
  27. this.ServeJSON()
  28. }()
  29. user := this.User
  30. if user == nil {
  31. br.Msg = "请登录"
  32. br.ErrMsg = "请登录,用户信息为空"
  33. br.Ret = 408
  34. return
  35. }
  36. resp := new(models.ArticleDetailResp)
  37. uid := user.UserId
  38. articleId, err := this.GetInt("ArticleId")
  39. if articleId <= 0 {
  40. br.Msg = "文章不存在"
  41. br.ErrMsg = "文章不存在,文章ID错误"
  42. return
  43. }
  44. detail := new(models.ArticleDetail)
  45. hasPermission := 0
  46. hasFree := 0
  47. var haveResearch bool
  48. //判断是否已经申请过
  49. applyCount, err := models.GetApplyRecordCount(uid)
  50. if err != nil && err.Error() != utils.ErrNoRow() {
  51. br.Msg = "获取信息失败"
  52. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  53. return
  54. }
  55. //resp := new(models.ArticleDetailResp)
  56. detail, err = models.GetArticleDetailById(articleId)
  57. if err != nil {
  58. br.Msg = "获取信息失败"
  59. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  60. return
  61. }
  62. // 判断是否属于研选类型的报告
  63. if strings.Contains(detail.CategoryName, utils.CHART_PERMISSION_NAME_YANXUAN) {
  64. resp.IsResearch = true
  65. }
  66. // 高毅资产的联系人,有权限的行业也不能查看报告详情页。提示无权限页面
  67. if detail.ArticleTypeId == 0 && user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
  68. _, sellerName, sellerMobile, popupMsg, err := services.GetUserHasPermissionArticle(user)
  69. if err != nil {
  70. br.Msg = "获取信息失败"
  71. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  72. return
  73. }
  74. resp.PopupMsg = popupMsg
  75. resp.HasPermission = 3
  76. resp.SellerName = sellerName
  77. resp.SellerMobile = sellerMobile
  78. detail.Body = ""
  79. detail.Abstract = ""
  80. detail.Seller.SellerName = sellerName
  81. detail.Seller.SellerMobile = sellerMobile
  82. resp.Detail = detail
  83. br.Ret = 200
  84. br.Success = true
  85. br.Msg = "获取成功"
  86. br.Data = resp
  87. return
  88. }
  89. //是否属于专项调研报告
  90. if detail.SubCategoryName == "专项调研" {
  91. detail.IsSpecialArticle = true
  92. havePower, err := services.GetSpecialArticleDetailUserPower(user, detail)
  93. if err != nil {
  94. br.Msg = "获取信息失败"
  95. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  96. return
  97. }
  98. resp.IsSpecialArticle = true
  99. if !havePower {
  100. hasPermission, 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 = hasPermission
  108. resp.SellerName = sellerName
  109. resp.SellerMobile = sellerMobile
  110. detail.Body = ""
  111. detail.Abstract = ""
  112. detail.Seller.SellerName = sellerName
  113. detail.Seller.SellerMobile = sellerMobile
  114. resp.Detail = detail
  115. br.Ret = 200
  116. br.Success = true
  117. br.Msg = "获取成功"
  118. br.Data = resp
  119. return
  120. }
  121. }
  122. //HasPermission int `description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下(ficc),3:无该品类权限,已提交过申请,4:无该品类权限,未提交过申请,5:潜在客户,未提交过申请,6:潜在客户,已提交过申请"`
  123. if user.CompanyId > 1 {
  124. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  125. if err != nil {
  126. br.Msg = "获取信息失败"
  127. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  128. return
  129. }
  130. detail, err = models.GetArticleDetailById(articleId)
  131. if err != nil {
  132. br.Msg = "获取信息失败"
  133. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  134. return
  135. }
  136. detail.Body = services.GetReportContentTextArticleBody(detail.Body)
  137. detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
  138. if companyPermission == "" {
  139. if applyCount > 0 {
  140. hasPermission = 6
  141. } else {
  142. hasPermission = 2
  143. }
  144. hasFree = 2
  145. goto Loop
  146. } else {
  147. hasPermission = 1
  148. hasFree = 1
  149. var articlePermissionPermissionName string
  150. if detail.CategoryId > 0 {
  151. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  152. if err != nil {
  153. br.Msg = "获取信息失败"
  154. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  155. return
  156. }
  157. if articlePermission == nil {
  158. br.Msg = "获取信息失败"
  159. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  160. return
  161. }
  162. articlePermissionPermissionName = articlePermission.PermissionName
  163. } else {
  164. articlePermissionPermissionName = detail.CategoryName
  165. }
  166. var hasPersion bool
  167. slice := strings.Split(articlePermissionPermissionName, ",")
  168. for _, v := range slice {
  169. if strings.Contains(companyPermission, v) {
  170. hasPersion = true
  171. }
  172. }
  173. userType, _, err := services.GetUserType(user.CompanyId)
  174. if err != nil {
  175. br.Msg = "获取信息失败"
  176. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  177. return
  178. }
  179. if userType == 1 && strings.Contains(detail.CategoryName, "研选") {
  180. hasPersion = false
  181. }
  182. if detail.IsReport == 1 {
  183. detailCategory, err := models.GetdetailByCategoryIdSando(detail.CategoryId)
  184. if err != nil && err.Error() != utils.ErrNoRow() {
  185. br.Msg = "获取信息失败"
  186. br.ErrMsg = "获取信息失败,Err:" + err.Error() + "categoryID 不存在:" + strconv.Itoa(detail.CategoryId)
  187. return
  188. }
  189. permissionStr, err := models.GetCompanyPermissionByUser(user.CompanyId)
  190. if err != nil {
  191. br.Msg = "获取信息失败"
  192. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  193. return
  194. }
  195. if detailCategory != nil {
  196. if detailCategory.PermissionType == 1 {
  197. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(主观)") {
  198. hasPersion = false
  199. }
  200. } else if detailCategory.PermissionType == 2 {
  201. if !strings.Contains(permissionStr, detailCategory.ChartPermissionName+"(客观)") {
  202. hasPersion = false
  203. }
  204. }
  205. }
  206. }
  207. if !hasPersion {
  208. if applyCount == 0 {
  209. hasPermission = 4
  210. } else {
  211. hasPermission = 3
  212. }
  213. }
  214. }
  215. collectCount, err := models.GetArticleCollectCount(uid, articleId)
  216. if err != nil && err.Error() != utils.ErrNoRow() {
  217. br.Msg = "获取信息失败"
  218. br.ErrMsg = "判断是否已收藏失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  219. return
  220. }
  221. if collectCount > 0 {
  222. detail.IsCollect = true
  223. }
  224. interviewApplyItem, err := models.GetArticleInterviewApply(uid, articleId)
  225. if err != nil && err.Error() != utils.ErrNoRow() {
  226. br.Msg = "获取信息失败"
  227. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  228. return
  229. }
  230. if interviewApplyItem != nil && interviewApplyItem.InterviewApplyId > 0 {
  231. detail.IsInterviewApply = true
  232. detail.InterviewApplyStatus = interviewApplyItem.Status
  233. }
  234. //获取销售手机号
  235. sellerItem, err := models.GetSellerByCompanyId(user.CompanyId)
  236. if err != nil && err.Error() != utils.ErrNoRow() {
  237. br.Msg = "获取信息失败"
  238. br.ErrMsg = "获取销售数据失败2,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  239. return
  240. }
  241. if sellerItem != nil {
  242. detail.Seller.SellerMobile = sellerItem.Mobile
  243. detail.Seller.SellerName = sellerItem.RealName
  244. }
  245. //作者头像
  246. if detail.DepartmentId > 0 {
  247. departmentDetail, err := models.GetArticleDepartmentDateilById(detail.DepartmentId)
  248. if err == nil {
  249. detail.DepartmentDetail = departmentDetail
  250. }
  251. }
  252. } else { //潜在客户
  253. if applyCount > 0 {
  254. hasPermission = 6
  255. } else {
  256. hasPermission = 5
  257. }
  258. }
  259. Loop:
  260. if hasPermission != 1 {
  261. detail.Body = ""
  262. } else {
  263. articleFollowdetail, err := models.GetArticleFollowDetail(articleId, uid)
  264. if err != nil {
  265. br.Msg = "获取信息失败"
  266. br.ErrMsg = "获取关注信息失败,Err:" + err.Error()
  267. return
  268. }
  269. detail.FollowNum = articleFollowdetail.DNum
  270. detail.CollectionNum = articleFollowdetail.AcNum
  271. detail.Disclaimers = utils.DISCLAIMERS
  272. if articleFollowdetail.MdNum > 0 {
  273. detail.IsFollow = true
  274. }
  275. haveResearch = true
  276. }
  277. if hasPermission == 2 || hasPermission == 4 {
  278. //获取销售手机号
  279. sellerItem, err := models.GetSellerByCompanyId(user.CompanyId)
  280. if err != nil && err.Error() != utils.ErrNoRow() {
  281. br.Msg = "获取信息失败"
  282. br.ErrMsg = "获取销售数据失败2,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  283. return
  284. }
  285. if sellerItem != nil {
  286. detail.Seller.SellerMobile = sellerItem.Mobile
  287. detail.Seller.SellerName = sellerItem.RealName
  288. }
  289. }
  290. if detail.ArticleId < utils.SummaryArticleId {
  291. if user.Mobile != "" {
  292. chartUserTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
  293. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
  294. } else {
  295. detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId)
  296. }
  297. detail.IsNeedJump = true
  298. }
  299. //hasFree := 0
  300. //var haveResearch bool
  301. fmt.Println(hasFree)
  302. fmt.Println(haveResearch)
  303. if hasPermission == 1 {
  304. go services.ArticleHistory(articleId, user)
  305. key := "CYGX_ARTICLE_READ" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  306. if !utils.Rc.IsExist(key) {
  307. go services.ArticleUserRemind(user, detail, 1)
  308. utils.Rc.Put(key, 1, 30*time.Second)
  309. }
  310. }
  311. if detail.ArticleTypeId == 14 {
  312. detail.IsApplyAppointmentExpert = true //判断文章类型是否属于专家访谈 查研观向11.0
  313. }
  314. if detail.SubCategoryName == "专项调研" {
  315. detail.IsSpecialArticle = true
  316. }
  317. resp.HasPermission = hasPermission
  318. resp.IsSpecialArticle = detail.IsSpecialArticle
  319. resp.Detail = detail
  320. br.Ret = 200
  321. br.Success = true
  322. br.Msg = "获取成功"
  323. br.Data = resp
  324. }
  325. // @Title 收藏\取消收藏
  326. // @Description 收藏\取消收藏
  327. // @Param request body models.ArticleCollectReq true "type json string"
  328. // @Success 200 {object} models.ArticleCollectResp
  329. // @router /collect [post]
  330. func (this *ArticleController) ArticleCollect() {
  331. br := new(models.BaseResponse).Init()
  332. defer func() {
  333. this.Data["json"] = br
  334. this.ServeJSON()
  335. }()
  336. user := this.User
  337. if user == nil {
  338. br.Msg = "请重新登录"
  339. br.Ret = 408
  340. return
  341. }
  342. uid := user.UserId
  343. var req models.ArticleCollectReq
  344. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  345. if err != nil {
  346. br.Msg = "参数解析异常!"
  347. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  348. return
  349. }
  350. articleId := req.ArticleId
  351. detail, err := models.GetArticleDetailById(articleId)
  352. if err != nil {
  353. br.Msg = "获取信息失败"
  354. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  355. return
  356. }
  357. count, err := models.GetArticleCollectCount(uid, articleId)
  358. if err != nil {
  359. br.Msg = "获取数据失败!"
  360. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  361. return
  362. }
  363. resp := new(models.ArticleCollectResp)
  364. if count <= 0 {
  365. item := new(models.CygxArticleCollect)
  366. item.ArticleId = req.ArticleId
  367. item.UserId = uid
  368. item.CreateTime = time.Now()
  369. item.Mobile = user.Mobile
  370. item.Email = user.Email
  371. item.CompanyId = user.CompanyId
  372. item.CompanyName = user.CompanyName
  373. item.RealName = user.RealName
  374. _, err = models.AddCygxArticleCollect(item)
  375. if err != nil {
  376. br.Msg = "收藏失败"
  377. br.ErrMsg = "收藏失败,Err:" + err.Error()
  378. return
  379. }
  380. br.Msg = "收藏成功"
  381. resp.Status = 1
  382. // 文章收藏消息发送
  383. go services.ArticleUserRemind(user, detail, 1)
  384. } else {
  385. err = models.RemoveArticleCollect(uid, articleId)
  386. if err != nil {
  387. br.Msg = "取消收藏失败"
  388. br.ErrMsg = "取消收藏失败,Err:" + err.Error()
  389. return
  390. }
  391. br.Msg = "已取消收藏"
  392. resp.Status = 2
  393. }
  394. collectTotal, err := models.GetArticleCollectUsersCount(articleId)
  395. if err != nil {
  396. br.Msg = "获取数据失败"
  397. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  398. return
  399. }
  400. resp.CollectCount = collectTotal
  401. br.Ret = 200
  402. br.Success = true
  403. br.Data = resp
  404. }
  405. // @Title 访谈申请\取消访谈申请
  406. // @Description 访谈申请\取消访谈申请
  407. // @Param request body models.ArticleInterviewApplyReq true "type json string"
  408. // @Success 200 {object} models.FontsCollectResp
  409. // @router /interview/apply [post]
  410. func (this *ArticleController) InterviewApply() {
  411. br := new(models.BaseResponse).Init()
  412. defer func() {
  413. this.Data["json"] = br
  414. this.ServeJSON()
  415. }()
  416. user := this.User
  417. if user == nil {
  418. br.Msg = "请重新登录"
  419. br.Ret = 408
  420. return
  421. }
  422. uid := user.UserId
  423. var req models.ArticleInterviewApplyReq
  424. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  425. if err != nil {
  426. br.Msg = "参数解析异常!"
  427. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  428. return
  429. }
  430. article, err := models.GetArticleDetailById(req.ArticleId)
  431. if err != nil {
  432. br.Msg = "获取纪要失败!"
  433. br.ErrMsg = "获取纪要失败,Err:" + err.Error()
  434. return
  435. }
  436. count, err := models.GetArticleInterviewApplyCount(uid, req.ArticleId)
  437. if err != nil {
  438. br.Msg = "获取数据失败!"
  439. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  440. return
  441. }
  442. resp := new(models.ArticleInterviewApplyResp)
  443. if count <= 0 {
  444. item := new(models.CygxInterviewApply)
  445. item.ArticleId = req.ArticleId
  446. item.UserId = uid
  447. item.CompanyId = user.CompanyId
  448. item.Status = "待邀请"
  449. item.Sort = 1
  450. item.ArticleTitle = article.Title
  451. item.CreateTime = time.Now()
  452. item.ModifyTime = time.Now()
  453. item.ArticleIdMd5 = article.ArticleIdMd5
  454. _, err = models.AddCygxInterviewApply(item)
  455. if err != nil {
  456. br.Msg = "申请失败"
  457. br.ErrMsg = "申请失败,Err:" + err.Error()
  458. return
  459. }
  460. br.Msg = "申请成功"
  461. resp.Status = 1
  462. //发送模板消息
  463. if user.CompanyId > 1 {
  464. mobile := user.Mobile
  465. if mobile == "" {
  466. mobile = user.Email
  467. }
  468. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  469. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  470. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  471. if openIpItem != nil && openIpItem.OpenId != "" {
  472. go services.SendInterviewApplyTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  473. }
  474. }
  475. }
  476. } else {
  477. err = models.RemoveArticleInterviewApply(uid, req.ArticleId)
  478. if err != nil {
  479. br.Msg = "取消申请失败"
  480. br.ErrMsg = "取消申请失败,Err:" + err.Error()
  481. return
  482. }
  483. br.Msg = "已取消申请"
  484. resp.Status = 2
  485. if user.CompanyId > 1 {
  486. mobile := user.Mobile
  487. if mobile == "" {
  488. mobile = user.Email
  489. }
  490. sellerItem, _ := models.GetSellerByCompanyId(user.CompanyId)
  491. if sellerItem != nil && sellerItem.AdminId > 0 && user.Mobile != "" {
  492. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  493. if openIpItem != nil && openIpItem.OpenId != "" {
  494. go services.SendInterviewApplyCancelTemplateMsg(user.RealName, sellerItem.CompanyName, mobile, article.Title, openIpItem)
  495. }
  496. }
  497. }
  498. }
  499. br.Ret = 200
  500. br.Success = true
  501. br.Data = resp
  502. }
  503. // @Title 文章带问
  504. // @Description 新增文章带问接口
  505. // @Param request body models.AddArticleAskRep true "type json string"
  506. // @Success Ret=200 新增成功
  507. // @router /askAdd [post]
  508. func (this *ArticleController) AskAdd() {
  509. br := new(models.BaseResponse).Init()
  510. defer func() {
  511. this.Data["json"] = br
  512. this.ServeJSON()
  513. }()
  514. user := this.User
  515. if user == nil {
  516. br.Msg = "请登录"
  517. br.ErrMsg = "请登录,SysUser Is Empty"
  518. br.Ret = 408
  519. return
  520. }
  521. var req models.AddArticleAskRep
  522. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  523. if err != nil {
  524. br.Msg = "参数解析异常!"
  525. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  526. return
  527. }
  528. if req.Content == "" {
  529. br.Msg = "建议内容不可为空"
  530. return
  531. }
  532. content := req.Content
  533. //accessToken, err := models.GetWxAccessTokenByXzs()
  534. //itemToken, err := services.WxGetToken()
  535. //if err != nil {
  536. // br.Msg = "GetWxAccessToken Err:" + err.Error()
  537. // return
  538. //}
  539. //if accessToken == "" {
  540. // br.Msg = "accessToken is empty"
  541. // return
  542. //}
  543. //commerr, err := weapp.MSGSecCheck(accessToken, content)
  544. //if err != nil {
  545. // br.Msg = "内容校验失败!"
  546. // br.ErrMsg = "内容校验失败,Err:" + err.Error()
  547. //
  548. // return
  549. //}
  550. //fmt.Println(commerr)
  551. //if commerr.ErrCode != 0 {
  552. // br.Msg = "内容违规,请重新提交!"
  553. // br.ErrMsg = "颜文字内容违规,Err:" + commerr.ErrMSG
  554. // return
  555. //}
  556. articleId := req.ArticleId
  557. count, _ := models.GetArticleCountById(articleId)
  558. if count == 0 {
  559. br.Msg = "操作失败"
  560. br.ErrMsg = "文章ID错误,不存在 articleId:" + strconv.Itoa(articleId)
  561. return
  562. }
  563. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  564. if err != nil {
  565. br.Msg = "提交失败!"
  566. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  567. return
  568. }
  569. if companyDetail == nil {
  570. br.Msg = "提交失败!"
  571. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  572. return
  573. }
  574. item := new(models.CygxArticleAsk)
  575. item.UserId = user.UserId
  576. item.ArticleId = req.ArticleId
  577. item.CompanyId = user.CompanyId
  578. item.CompanyName = companyDetail.CompanyName
  579. item.CreateTime = time.Now()
  580. item.Mobile = user.Mobile
  581. item.Email = user.Email
  582. item.Content = content
  583. _, err = models.AddArticleAsk(item)
  584. if err != nil {
  585. br.Msg = "提交失败"
  586. br.ErrMsg = "提交失败,Err:" + err.Error()
  587. return
  588. }
  589. companyItem, err := models.GetSellerDetailAllByCompanyId(user.CompanyId)
  590. if err != nil {
  591. br.Msg = "获取信息失败"
  592. br.ErrMsg = "获取所属销售信息失败,Err:" + err.Error()
  593. return
  594. }
  595. var mobile string
  596. if utils.RunMode == "release" {
  597. //mobile = utils.WxMsgTemplateIdAskMsgMobileAll + "," + companyItem.Mobile
  598. mobile = utils.WxMsgTemplateIdAskMsgMobileAll
  599. } else {
  600. mobile = utils.WxMsgTemplateIdAskMsgMobile
  601. }
  602. openIdList, err := models.GetWxOpenIdByMobileList(mobile)
  603. if err != nil {
  604. br.Msg = "提交失败"
  605. br.ErrMsg = "提交失败,Err:" + err.Error()
  606. return
  607. }
  608. detail, err := models.GetArticleDetailById(articleId)
  609. if err != nil {
  610. br.Msg = "获取信息失败"
  611. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  612. return
  613. }
  614. companyName := user.CompanyName + "-" + user.RealName + "(" + companyItem.SellerName + ")"
  615. go services.SendWxMsgWithAsk(companyName, time.Now().Format(utils.FormatDateTime), content, detail.Title, openIdList, req.ArticleId)
  616. br.Ret = 200
  617. br.Success = true
  618. br.Msg = "提交成功"
  619. }
  620. // @Title 文章相关热门收藏
  621. // @Description 文章相关热门收藏接口
  622. // @Param ArticleId query int true "文章ID"
  623. // @Success 200 {object} models.ArticleCollectionLIstResp
  624. // @router /hotList [get]
  625. func (this *ArticleController) ArticleHotList() {
  626. br := new(models.BaseResponse).Init()
  627. defer func() {
  628. this.Data["json"] = br
  629. this.ServeJSON()
  630. }()
  631. user := this.User
  632. if user == nil {
  633. br.Msg = "请重新登录"
  634. br.Ret = 408
  635. return
  636. }
  637. articleId, _ := this.GetInt("ArticleId")
  638. if articleId < 1 {
  639. br.Msg = "请输入分类ID"
  640. return
  641. }
  642. var condition string
  643. condition = ` AND a.article_id IN (SELECT article_id FROM cygx_industrial_article_group_management WHERE industrial_management_id IN (SELECT industrial_management_id FROM cygx_industrial_article_group_management WHERE article_id = ` + strconv.Itoa(articleId) + ` ) ) AND a.article_id != ` + strconv.Itoa(articleId) + ` AND a.category_name LIKE '%研选%' AND publish_status = 1 GROUP BY a.article_id ORDER BY collect_num DESC, publish_date DESC LIMIT 3 `
  644. list, err := models.GetArticleCollectionList(condition, user.UserId)
  645. if err != nil {
  646. br.Msg = "获取信息失败"
  647. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  648. return
  649. }
  650. resp := new(models.ArticleCollectionLIstResp)
  651. if len(list) == 0 {
  652. list = make([]*models.ArticleCollectionResp, 0)
  653. }
  654. resp.List = list
  655. br.Ret = 200
  656. br.Success = true
  657. br.Msg = "获取成功"
  658. br.Data = resp
  659. }
  660. // @Title 上传文章阅读时间
  661. // @Description 上传文章阅读时间接口
  662. // @Param request body models.AddStopTimeRep true "type json string"
  663. // @Success 200 {object} models.ArticleDetailResp
  664. // @router /addStopTime [post]
  665. func (this *ArticleController) AddStopTime() {
  666. br := new(models.BaseResponse).Init()
  667. defer func() {
  668. this.Data["json"] = br
  669. this.ServeJSON()
  670. }()
  671. user := this.User
  672. if user == nil {
  673. br.Msg = "请登录"
  674. br.ErrMsg = "请登录,用户信息为空"
  675. br.Ret = 408
  676. return
  677. }
  678. var req models.AddStopTimeRep
  679. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  680. if err != nil {
  681. br.Msg = "参数解析异常!"
  682. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  683. return
  684. }
  685. uid := user.UserId
  686. articleId := req.ArticleId
  687. stopTime := req.StopTime
  688. outType := req.OutType
  689. //source := req.Source
  690. if articleId <= 0 {
  691. br.Msg = "参数错误"
  692. br.ErrMsg = "参数错误"
  693. return
  694. }
  695. if stopTime == 0 {
  696. stopTime = 1
  697. }
  698. if outType != 2 {
  699. outType = 1
  700. }
  701. //source = "WEB"
  702. detail := new(models.ArticleDetail)
  703. hasPermission := 0
  704. hasFree := 0
  705. //判断是否已经申请过
  706. applyCount, err := models.GetApplyRecordCount(uid)
  707. if err != nil && err.Error() != utils.ErrNoRow() {
  708. br.Msg = "获取信息失败"
  709. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  710. return
  711. }
  712. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  713. if user.CompanyId > 1 {
  714. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  715. if err != nil {
  716. br.Msg = "获取信息失败"
  717. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  718. return
  719. }
  720. detail, err = models.GetArticleDetailById(articleId)
  721. if err != nil {
  722. br.Msg = "获取信息失败"
  723. br.ErrMsg = "获取文章信息失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  724. return
  725. }
  726. if companyPermission == "" {
  727. if applyCount > 0 {
  728. hasPermission = 5
  729. } else {
  730. hasPermission = 2
  731. }
  732. hasFree = 2
  733. goto Loop
  734. } else {
  735. hasFree = 1
  736. var articlePermissionPermissionName string
  737. if detail.CategoryId > 0 {
  738. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  739. if err != nil {
  740. br.Msg = "获取信息失败"
  741. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  742. return
  743. }
  744. if articlePermission == nil {
  745. br.Msg = "获取信息失败"
  746. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  747. return
  748. }
  749. articlePermissionPermissionName = articlePermission.PermissionName
  750. } else {
  751. articlePermissionPermissionName = detail.CategoryName
  752. }
  753. var hasPersion bool
  754. slice := strings.Split(articlePermissionPermissionName, ",")
  755. for _, v := range slice {
  756. if strings.Contains(companyPermission, v) {
  757. hasPersion = true
  758. }
  759. }
  760. if hasPersion {
  761. go services.ArticleHistoryStopTime(articleId, stopTime, outType, user)
  762. } else { //无该行业权限
  763. hasPermission = 3
  764. }
  765. }
  766. } else { //潜在客户
  767. if applyCount > 0 {
  768. hasPermission = 5
  769. } else {
  770. hasPermission = 4
  771. }
  772. }
  773. Loop:
  774. resp := new(models.ArticleDetailAddStopTimeRep)
  775. resp.HasPermission = hasPermission
  776. resp.HasFree = hasFree
  777. br.Ret = 200
  778. br.Success = true
  779. br.Msg = "操作成功"
  780. br.Data = resp
  781. }
  782. // @Title 约访专家
  783. // @Description 约访专家接口
  784. // @Param request body models.CygxArticleIdReq true "type json string"
  785. // @Success 200 {object}
  786. // @router /applyAppointmentExpert [post]
  787. func (this *ArticleController) ApplyAppointmentExpert() {
  788. br := new(models.BaseResponse).Init()
  789. defer func() {
  790. this.Data["json"] = br
  791. this.ServeJSON()
  792. }()
  793. user := this.User
  794. if user == nil {
  795. br.Msg = "请登录"
  796. br.ErrMsg = "请登录,用户信息为空"
  797. br.Ret = 408
  798. return
  799. }
  800. var req models.CygxArticleIdReq
  801. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  802. if err != nil {
  803. br.Msg = "参数解析异常!"
  804. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  805. return
  806. }
  807. articleId := req.ArticleId
  808. var condition string
  809. var pars []interface{}
  810. condition += ` AND article_id =? AND user_id = ? `
  811. pars = append(pars, articleId, user.UserId)
  812. total, err := models.GetCygxArticleApplyAppointmentExpertCount(condition, pars)
  813. if err != nil {
  814. br.Msg = "约访专家失败"
  815. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  816. return
  817. }
  818. if total > 0 {
  819. br.Msg = "您已提交申请,请勿重复提交。"
  820. return
  821. }
  822. err = services.AddArticleApplyAppointmentExpert(user, articleId)
  823. if err != nil {
  824. br.Msg = "约访专家失败"
  825. br.ErrMsg = "约访专家失败,Err:" + err.Error()
  826. return
  827. }
  828. services.SendArticleApplyAppointmentExpertTemplateMsg(user, articleId)
  829. br.Ret = 200
  830. br.Success = true
  831. br.Msg = "操作成功"
  832. }