tactics.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hongze_cygx/models"
  7. "hongze/hongze_cygx/services"
  8. "hongze/hongze_cygx/utils"
  9. "html"
  10. "regexp"
  11. "strconv"
  12. "strings"
  13. "time"
  14. )
  15. // 策略
  16. type TacticsController struct {
  17. BaseAuthController
  18. }
  19. type TacticsCommonController struct {
  20. BaseCommonController
  21. }
  22. // @Title 策略、行业列表接口
  23. // @Description 获取策略、行业 通用列表接口
  24. // @Param PageSize query int true "每页数据条数"
  25. // @Param CurrentIndex query int true "当前页页码,从1开始"
  26. // @Param CategoryId query int true "分类ID"
  27. // @Success 200 {object} models.TacticsListResp
  28. // @router /list [get]
  29. func (this *TacticsController) List() {
  30. br := new(models.BaseResponse).Init()
  31. defer func() {
  32. this.Data["json"] = br
  33. this.ServeJSON()
  34. }()
  35. user := this.User
  36. if user == nil {
  37. br.Msg = "请重新登录"
  38. br.Ret = 408
  39. return
  40. }
  41. //uid := user.UserId
  42. pageSize, _ := this.GetInt("PageSize")
  43. currentIndex, _ := this.GetInt("CurrentIndex")
  44. categoryId, _ := this.GetInt("CategoryId")
  45. var startSize int
  46. if pageSize <= 0 {
  47. pageSize = utils.PageSize20
  48. }
  49. if currentIndex <= 0 {
  50. currentIndex = 1
  51. }
  52. startSize = paging.StartIndex(currentIndex, pageSize)
  53. //var condition string
  54. //var listTacticsSrt string
  55. //var pars []interface{}
  56. //var total int
  57. resp := new(models.TacticsListResp)
  58. list := make([]*models.ReportArticle, 0)
  59. var total int
  60. var err error
  61. if categoryId == utils.ACTEGORY_ID_AI_QY {
  62. list, total, err = services.GetAiQianYanArtilceList(startSize, pageSize)
  63. } else {
  64. list, total, err = models.GetReportAndproductIndustrylList(categoryId, startSize, pageSize)
  65. }
  66. if err != nil {
  67. br.Msg = "获取信息失败"
  68. br.Msg = "获取帖子数据失败,Err:" + err.Error()
  69. return
  70. }
  71. var articleIds []int
  72. var productInteriorIs []int
  73. page := paging.GetPaging(currentIndex, pageSize, total)
  74. for _, v := range list {
  75. if v.Resource == 1 {
  76. articleIds = append(articleIds, v.ArticleId)
  77. } else {
  78. productInteriorIs = append(productInteriorIs, v.ArticleId)
  79. }
  80. }
  81. ArticleHistoryMap := services.GetArticleHistoryByUser(articleIds, user)
  82. ProductInteriorHistoryMap := services.GetCygxProductInteriorHistoryListMap(articleIds, user)
  83. for k, v := range list {
  84. if v.Resource == 1 {
  85. if ArticleHistoryMap[v.ArticleId] == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishDate)) {
  86. list[k].IsRed = true
  87. }
  88. } else {
  89. if ProductInteriorHistoryMap[v.ArticleId] == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishDate)) {
  90. list[k].IsRed = true
  91. }
  92. }
  93. list[k].Abstract, _ = services.GetReportContentTextSub(v.Abstract)
  94. }
  95. if categoryId > 0 {
  96. detail, errCategory := models.GetCygxReportMappingCygxByCategoryId(categoryId)
  97. if errCategory != nil {
  98. br.Msg = "获取信息失败"
  99. br.ErrMsg = "获取信息失败,Err:" + errCategory.Error() + "categoryID 不存在:" + strconv.Itoa(categoryId)
  100. return
  101. }
  102. resp.MatchTypeName = detail.MatchTypeName
  103. if detail.MatchTypeName == "热点问答" {
  104. resp.IsShowAbstract = true
  105. }
  106. }
  107. articleMapPv := services.GetArticleHistoryByArticleId(articleIds) //文章Pv
  108. articleCollectMap, _ := services.GetCygxArticleCollectMap(user.UserId) //用户收藏的文章
  109. articleCollectNumMap, _ := services.GetCygxArticleCollectNumMapByArtcileIds(articleIds) //文章收藏的数量
  110. for _, v := range list {
  111. if v.Resource == 1 {
  112. v.Pv = articleMapPv[v.ArticleId]
  113. v.IsCollect = articleCollectMap[v.ArticleId]
  114. v.CollectNum = articleCollectNumMap[v.ArticleId]
  115. }
  116. if v.Resource == 2 {
  117. v.PublishDate = utils.TimeRemoveHms2(v.PublishDate)
  118. }
  119. }
  120. resp.List = list
  121. resp.Paging = page
  122. br.Ret = 200
  123. br.Success = true
  124. br.Msg = "获取成功"
  125. br.Data = resp
  126. }
  127. // @Title 获取报告详情
  128. // @Description 获取报告详情接口
  129. // @Param ArticleId query int true "报告ID"
  130. // @Success 200 {object} models.ArticleDetailResp
  131. // @router /detail [get]
  132. func (this *TacticsController) Detail() {
  133. br := new(models.BaseResponse).Init()
  134. defer func() {
  135. this.Data["json"] = br
  136. this.ServeJSON()
  137. }()
  138. user := this.User
  139. if user == nil {
  140. br.Msg = "请登录"
  141. br.ErrMsg = "请登录,用户信息为空"
  142. br.Ret = 408
  143. return
  144. }
  145. uid := user.UserId
  146. articleId, err := this.GetInt("ArticleId")
  147. if articleId <= 0 {
  148. br.Msg = "参数错误"
  149. br.ErrMsg = "参数错误"
  150. return
  151. }
  152. detail := new(models.ArticleDetail)
  153. hasPermission := 0
  154. hasFree := 0
  155. //判断是否已经申请过
  156. applyCount, err := models.GetApplyRecordCount(uid)
  157. if err != nil && err.Error() != utils.ErrNoRow() {
  158. br.Msg = "获取信息失败"
  159. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  160. return
  161. }
  162. fmt.Println(user.CompanyId)
  163. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  164. if user.CompanyId > 1 {
  165. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  166. if err != nil {
  167. br.Msg = "获取信息失败"
  168. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  169. return
  170. }
  171. detail, err = models.GetArticleDetailById(articleId)
  172. if err != nil {
  173. br.Msg = "获取信息失败"
  174. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  175. return
  176. }
  177. fmt.Println(detail.Department)
  178. detail.Body = html.UnescapeString(detail.Body)
  179. //detail.Abstract = html.UnescapeString(detail.Abstract)
  180. detail.Abstract, _ = services.GetReportContentTextSub(detail.Abstract)
  181. if companyPermission == "" {
  182. if applyCount > 0 {
  183. hasPermission = 5
  184. } else {
  185. hasPermission = 2
  186. }
  187. hasFree = 2
  188. goto Loop
  189. } else {
  190. hasFree = 1
  191. var articlePermissionPermissionName string
  192. if detail.CategoryId > 0 {
  193. articlePermission, err := models.GetArticlePermission(detail.CategoryId)
  194. if err != nil {
  195. br.Msg = "获取信息失败"
  196. br.ErrMsg = "获取报告权限失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  197. return
  198. }
  199. if articlePermission == nil {
  200. br.Msg = "获取信息失败"
  201. br.ErrMsg = "报告权限不存在,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  202. return
  203. }
  204. articlePermissionPermissionName = articlePermission.PermissionName
  205. } else {
  206. articlePermissionPermissionName = detail.CategoryName
  207. }
  208. if strings.Contains(companyPermission, articlePermissionPermissionName) {
  209. hasPermission = 1
  210. historyRecord := new(models.CygxArticleHistoryRecord)
  211. historyRecord.UserId = uid
  212. historyRecord.ArticleId = articleId
  213. historyRecord.CreateTime = time.Now()
  214. historyRecord.Mobile = user.Mobile
  215. historyRecord.Email = user.Email
  216. historyRecord.CompanyId = user.CompanyId
  217. historyRecord.CompanyName = user.CompanyName
  218. recordCount, _ := models.GetNoAddStoptimeArticleCount(uid, articleId)
  219. if recordCount == 0 {
  220. go models.AddCygxArticleHistoryRecord(historyRecord)
  221. } else {
  222. detailNew, err := models.GetNewArticleHistoryRecord(uid, articleId)
  223. if err != nil {
  224. br.Msg = "获取信息失败"
  225. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  226. return
  227. }
  228. if detailNew.StopTime > 0 {
  229. go models.AddCygxArticleHistoryRecord(historyRecord)
  230. }
  231. }
  232. } else { //无该行业权限
  233. hasPermission = 3
  234. }
  235. }
  236. collectCount, err := models.GetArticleCollectCount(uid, articleId)
  237. if err != nil && err.Error() != utils.ErrNoRow() {
  238. br.Msg = "获取信息失败"
  239. br.ErrMsg = "判断是否已收藏失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  240. return
  241. }
  242. if collectCount > 0 {
  243. detail.IsCollect = true
  244. }
  245. interviewApplyItem, err := models.GetArticleInterviewApply(uid, articleId)
  246. if err != nil && err.Error() != utils.ErrNoRow() {
  247. br.Msg = "获取信息失败"
  248. br.ErrMsg = "判断是否已申请访谈失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  249. return
  250. }
  251. if interviewApplyItem != nil && interviewApplyItem.InterviewApplyId > 0 {
  252. detail.IsInterviewApply = true
  253. detail.InterviewApplyStatus = interviewApplyItem.Status
  254. }
  255. //获取销售手机号
  256. sellerItem, err := models.GetSellerByCompanyId(user.CompanyId)
  257. if err != nil {
  258. br.Msg = "获取信息失败"
  259. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  260. return
  261. }
  262. if sellerItem != nil {
  263. detail.SellerMobile = sellerItem.Mobile
  264. detail.SellerName = sellerItem.RealName
  265. }
  266. sellerList, err := models.GetSellerList(articleId)
  267. if err != nil {
  268. br.Msg = "获取信息失败"
  269. br.ErrMsg = "获取销售数据失败,Err:" + err.Error() + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  270. return
  271. }
  272. if detail.ArticleId > 1000000 {
  273. var hrefRegexp = regexp.MustCompile("[0-9]\\d*")
  274. match := hrefRegexp.FindAllString(detail.SellerAndMobile, -1)
  275. if match != nil {
  276. for _, v := range match {
  277. sellerAndMobile := &models.SellerRep{
  278. SellerMobile: v,
  279. SellerName: strings.Replace(detail.SellerAndMobile, v, "", -1),
  280. }
  281. sellerList = append(sellerList, sellerAndMobile)
  282. }
  283. }
  284. }
  285. detail.SellerList = sellerList
  286. } else { //潜在客户
  287. if applyCount > 0 {
  288. hasPermission = 5
  289. } else {
  290. hasPermission = 4
  291. }
  292. }
  293. Loop:
  294. if hasPermission != 1 {
  295. detail.Body = ""
  296. detail.BodyText = ""
  297. }
  298. resp := new(models.ArticleDetailResp)
  299. resp.HasPermission = hasPermission
  300. resp.HasFree = hasFree
  301. resp.Detail = detail
  302. br.Ret = 200
  303. br.Success = true
  304. br.Msg = "获取成功"
  305. br.Data = resp
  306. }
  307. // @Title 时间线列表
  308. // @Description 时间线列表接口
  309. // @Param PageSize query int true "每页数据条数"
  310. // @Param CurrentIndex query int true "当前页页码,从1开始"
  311. // @Success 200 {object} models.GetCygxTacticsTimeLineResp
  312. // @router /tacticsTimeLine/list [get]
  313. func (this *TacticsController) TacticsTimeLineList() {
  314. br := new(models.BaseResponse).Init()
  315. defer func() {
  316. this.Data["json"] = br
  317. this.ServeJSON()
  318. }()
  319. user := this.User
  320. if user == nil {
  321. br.Msg = "请登录"
  322. br.ErrMsg = "请登录,用户信息为空"
  323. br.Ret = 408
  324. return
  325. }
  326. resp := new(models.GetCygxTacticsTimeLineResp)
  327. pageSize, _ := this.GetInt("PageSize")
  328. currentIndex, _ := this.GetInt("CurrentIndex")
  329. var startSize int
  330. if pageSize <= 0 {
  331. pageSize = utils.PageSize20
  332. }
  333. if currentIndex <= 0 {
  334. currentIndex = 1
  335. }
  336. startSize = utils.StartIndex(currentIndex, pageSize)
  337. var condition string
  338. var pars []interface{}
  339. condition += ` AND art.status = 1 `
  340. total, err := models.GetCygxTacticsTimeLineCount(condition, pars)
  341. if err != nil {
  342. br.Msg = "获取失败"
  343. br.ErrMsg = "获取失败,Err:" + err.Error()
  344. return
  345. }
  346. condition += " ORDER BY art.publish_time DESC , art.time_line_id DESC "
  347. list, err := models.GetCygxTacticsTimeLineList(condition, pars, startSize, pageSize)
  348. if err != nil {
  349. br.Msg = "获取失败"
  350. br.ErrMsg = "获取失败,Err:" + err.Error()
  351. return
  352. }
  353. for _, v := range list {
  354. v.PublishTime = utils.TimeRemoveHms2(v.PublishTime)
  355. v.Resource = 1
  356. }
  357. if len(list) == 0 {
  358. list = make([]*models.CygxTacticsTimeLineResp, 0)
  359. }
  360. cf, err := models.GetConfigByCode(utils.CYGX_TACTICS_TIME_LINE_STATUS)
  361. if err != nil {
  362. br.Msg = "获取失败"
  363. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  364. return
  365. }
  366. //如果不是弘则用户,并且设置了内部可见,那么数据就隐藏
  367. if user.CompanyId != utils.HZ_COMPANY_ID && cf.ConfigValue != "1" {
  368. list = make([]*models.CygxTacticsTimeLineResp, 0)
  369. }
  370. page := paging.GetPaging(currentIndex, pageSize, total)
  371. resp.List = list
  372. resp.Paging = page
  373. br.Ret = 200
  374. br.Success = true
  375. br.Msg = "获取成功"
  376. br.Data = resp
  377. }
  378. // @Title 时间线列表
  379. // @Description 时间线列表接口
  380. // @Param request body models.TacticsTimeLineTimeLineIdReq true "type json string"
  381. // @Success Ret=200 新增成功
  382. // @router /tacticsTimeLine/history [post]
  383. func (this *TacticsController) History() {
  384. br := new(models.BaseResponse).Init()
  385. defer func() {
  386. this.Data["json"] = br
  387. this.ServeJSON()
  388. }()
  389. user := this.User
  390. if user == nil {
  391. br.Msg = "请登录"
  392. br.ErrMsg = "请登录,用户信息为空"
  393. br.Ret = 408
  394. return
  395. }
  396. var req models.TacticsTimeLineTimeLineIdReq
  397. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  398. if err != nil {
  399. br.Msg = "参数解析异常!"
  400. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  401. return
  402. }
  403. timeLineId := req.TimeLineId
  404. if timeLineId == 0 {
  405. br.Msg = "时间线ID错误"
  406. return
  407. }
  408. var sellerName string
  409. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  410. if err != nil {
  411. br.Msg = "报名失败!"
  412. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  413. return
  414. }
  415. item := models.CygxTacticsTimeLineHistory{
  416. TimeLineId: timeLineId,
  417. UserId: user.UserId,
  418. Mobile: user.Mobile,
  419. Email: user.Email,
  420. CompanyId: user.CompanyId,
  421. CompanyName: user.CompanyName,
  422. RealName: user.RealName,
  423. SellerName: sellerName,
  424. CreateTime: time.Now(),
  425. ModifyTime: time.Now(),
  426. }
  427. err = models.AddCygxTacticsTimeLineHistory(&item)
  428. br.Ret = 200
  429. br.Success = true
  430. br.Msg = "获取成功"
  431. }