report_service.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  1. package report
  2. import (
  3. "encoding/json"
  4. "errors"
  5. logger "eta/eta_mini_ht_api/common/component/log"
  6. "eta/eta_mini_ht_api/common/exception"
  7. "eta/eta_mini_ht_api/common/utils/date"
  8. "eta/eta_mini_ht_api/common/utils/page"
  9. permissionService "eta/eta_mini_ht_api/domian/config"
  10. mediaService "eta/eta_mini_ht_api/domian/media"
  11. productService "eta/eta_mini_ht_api/domian/merchant"
  12. reportService "eta/eta_mini_ht_api/domian/report"
  13. userService "eta/eta_mini_ht_api/domian/user"
  14. productDao "eta/eta_mini_ht_api/models/merchant"
  15. userDao "eta/eta_mini_ht_api/models/user"
  16. user "eta/eta_mini_ht_api/service/user"
  17. "fmt"
  18. "gorm.io/gorm"
  19. "strconv"
  20. "strings"
  21. "sync"
  22. "time"
  23. )
  24. const (
  25. SourceETA = "ETA"
  26. SourceHT = "HT"
  27. RiskLevelUnMatch = "unMatch"
  28. RiskLevelUnTest = "unTest"
  29. RiskLevelExpired = "expired"
  30. RiskLevelMatch = "match"
  31. defaultProductPrice = "0"
  32. )
  33. type PublishRankedReport struct {
  34. Id int `json:"reportId"`
  35. OrgId int `json:"orgId"`
  36. Title string `json:"title"`
  37. Abstract string `json:"abstract"`
  38. SecondPermissions map[int]string `json:"-"`
  39. Permissions map[int]string `json:"-"`
  40. PermissionNames interface{} `json:"permissionNames,omitempty"`
  41. PublishedTime string `json:"publishedTime"`
  42. CoverUrl string `json:"coverUrl"`
  43. RiskLevel string `json:"riskLevel"`
  44. IsFree bool `json:"isFree"`
  45. Price string `json:"price"`
  46. IsSubscribe bool `json:"isSubscribe"`
  47. Login bool `json:"login"`
  48. }
  49. type HotRankedReport struct {
  50. Id int `json:"reportId"`
  51. OrgId int `json:"orgId"`
  52. Abstract string `json:"abstract"`
  53. Count int `json:"count"`
  54. Title string `json:"title"`
  55. PublishedTime string `json:"publishedTime"`
  56. SecondPermissions map[int]string `json:"-"`
  57. Permissions map[int]string `json:"-"`
  58. PermissionNames interface{} `json:"permissionNames,omitempty"`
  59. CoverUrl string `json:"coverUrl"`
  60. RiskLevel string `json:"riskLevel"`
  61. IsFree bool `json:"isFree"`
  62. Price string `json:"price"`
  63. IsSubscribe bool `json:"isSubscribe"`
  64. Login bool `json:"login"`
  65. }
  66. //type PermissionNode struct {
  67. // ID int `json:"id"`
  68. // Name string `json:"name"`
  69. // ParentID int `json:"parentId"`
  70. // Children []*PermissionNode `json:"children,omitempty"`
  71. //}
  72. type RecordCount struct {
  73. UserId int
  74. TraceId string
  75. Mobile string
  76. ReportId int
  77. IpAddress string
  78. Location string
  79. Referer string
  80. Additional string
  81. }
  82. func matchRiskLevel(userId int, report reportService.ReportDTO) (riskLevelMatch string, err error) {
  83. userProfile, userErr := user.GetUserProfile(userId)
  84. if userErr != nil {
  85. if errors.Is(userErr, gorm.ErrRecordNotFound) {
  86. logger.Error("用户信息不存在,mobile:%d", userProfile.Mobile)
  87. err = exception.New(exception.TemplateUserNotFound)
  88. return
  89. } else {
  90. logger.Error("获取用户信息失败:%v", userErr)
  91. err = exception.New(exception.TemplateUserFoundFailed)
  92. return
  93. }
  94. }
  95. //比较风险等级
  96. if userProfile.RiskLevelStatus == user.RiskUnTest {
  97. logger.Info("客户风险等级未测试,mobile:%d", userProfile.Mobile)
  98. riskLevelMatch = RiskLevelUnTest
  99. return
  100. }
  101. if userProfile.RiskLevelStatus == user.RiskExpired {
  102. logger.Info("客户风险等级已过期,mobile:%v", userProfile.Mobile)
  103. riskLevelMatch = RiskLevelExpired
  104. return
  105. }
  106. level, err := permissionService.GetRiskMappingByCustomerRiskLevel(userProfile.RiskLevel)
  107. if err != nil {
  108. logger.Error("获取eta报告风险等级失败:%v", err)
  109. return
  110. }
  111. permissions := reportService.GetReportSecondPermissionsById(report.OrgId, report.Source)
  112. if len(permissions) == 0 {
  113. logger.Error("获取eta报告分类失败:%v", err)
  114. riskLevelMatch = RiskLevelUnMatch
  115. return
  116. }
  117. var permissionIds []int
  118. for _, permission := range permissions {
  119. permissionIds = append(permissionIds, permission.PermissionId)
  120. }
  121. permissionDTOs, err := permissionService.GetPermissionListByIds(permissionIds)
  122. if err != nil {
  123. logger.Error("获取品种风险等级失败:%v", err)
  124. return
  125. }
  126. //能够查看最高等级
  127. matchNum, err := parseRiskLevel(level.ProductRiskLevel)
  128. if err != nil {
  129. logger.Error("解析风险等级失败:%v", err)
  130. return
  131. }
  132. if len(permissionDTOs) == 0 {
  133. logger.Error("当前报告对应品种未设置风险等级")
  134. err = exception.New(exception.ReportRiskLevelUnSet)
  135. return
  136. }
  137. //能够查看需要的最小等级
  138. num := getLowestRiskLevel(permissionDTOs)
  139. if num > matchNum {
  140. riskLevelMatch = RiskLevelUnMatch
  141. return
  142. } else {
  143. riskLevelMatch = RiskLevelMatch
  144. return
  145. }
  146. }
  147. func getHighestRiskLevel(permissions []permissionService.PermissionDTO) (riskLevelNum int) {
  148. for _, permission := range permissions {
  149. pRiskNum, err := parseRiskLevel(permission.RiskLevel)
  150. if err != nil {
  151. logger.Error("解析风险等级失败:%v", err)
  152. continue
  153. }
  154. if riskLevelNum == 0 {
  155. riskLevelNum = pRiskNum
  156. } else {
  157. if riskLevelNum < pRiskNum {
  158. riskLevelNum = pRiskNum
  159. }
  160. }
  161. }
  162. return
  163. }
  164. func getLowestRiskLevel(permissions []permissionService.PermissionDTO) (riskLevelNum int) {
  165. for _, permission := range permissions {
  166. pRiskNum, err := parseRiskLevel(permission.RiskLevel)
  167. if err != nil {
  168. logger.Error("解析风险等级失败:%v", err)
  169. continue
  170. }
  171. if riskLevelNum == 0 {
  172. riskLevelNum = pRiskNum
  173. } else {
  174. if riskLevelNum > pRiskNum {
  175. riskLevelNum = pRiskNum
  176. }
  177. }
  178. }
  179. return
  180. }
  181. func GetReportById(reportId int, login bool, userId int) (report reportService.ReportDTO, err error) {
  182. report, err = reportService.GetGetReportById(reportId)
  183. if err != nil {
  184. logger.Error("获取研报失败:%v", err)
  185. err = exception.New(exception.GetReportFailed)
  186. return
  187. }
  188. var status string
  189. status, err = matchRiskLevel(userId, report)
  190. if err != nil {
  191. logger.Error("匹配风险等级失败:%v", err)
  192. err = exception.New(exception.ReportRiskLevelUnSet)
  193. return
  194. }
  195. var pdfUrl string
  196. switch report.Source {
  197. case SourceETA:
  198. var detail reportService.ETAReportDTO
  199. detail, err = getETAReportDetail(&report)
  200. if err != nil {
  201. logger.Error("获取研报详情失败失败:%v", err)
  202. err = exception.New(exception.GetReportFailed)
  203. return
  204. }
  205. if !login {
  206. detail.Content = ""
  207. report.RiskLevelStatus = RiskLevelUnMatch
  208. report.Login = false
  209. } else {
  210. if status != RiskLevelMatch {
  211. detail.Content = ""
  212. }
  213. report.RiskLevelStatus = status
  214. report.Login = true
  215. }
  216. var jsonStr []byte
  217. jsonStr, err = json.Marshal(detail)
  218. if err != nil {
  219. logger.Error("生成研报详情失败:%v", err)
  220. err = exception.New(exception.GetReportFailed)
  221. }
  222. report.Detail = jsonStr
  223. return
  224. case SourceHT:
  225. pdfUrl, err = getHTReportDetail(&report)
  226. if err != nil {
  227. logger.Error("获取研报详情失败失败:%v")
  228. err = exception.New(exception.GetReportFailed)
  229. return
  230. }
  231. if !login {
  232. report.PdfUrl = ""
  233. report.RiskLevelStatus = RiskLevelUnMatch
  234. report.Login = false
  235. } else {
  236. if status == RiskLevelMatch {
  237. report.PdfUrl = pdfUrl
  238. }
  239. report.RiskLevelStatus = status
  240. report.Login = true
  241. }
  242. return
  243. default:
  244. logger.Error("不支持的研报来演:%v")
  245. err = exception.New(exception.GetReportFailed)
  246. return
  247. }
  248. }
  249. func getETAReportDetail(report *reportService.ReportDTO) (etaReport reportService.ETAReportDTO, err error) {
  250. return reportService.GetETAReport(report.OrgId)
  251. }
  252. func getHTReportDetail(report *reportService.ReportDTO) (url string, err error) {
  253. return reportService.GetHtReport(report.OrgId)
  254. }
  255. func GetTotalPageCountByPermissionIds(permissionIds []int, isLogin bool, userId int) (total int64, latestId int64, ids map[string][]int) {
  256. return getCount(permissionIds, isLogin, userId)
  257. }
  258. func filterPermissionsByRisk(permissionList []permissionService.PermissionDTO, riskLevel string) (resultList []permissionService.PermissionDTO) {
  259. if riskLevel != "" {
  260. riskLevelNum, err := parseRiskLevel(riskLevel)
  261. if err != nil {
  262. logger.Error("风险等级解析失败:%v", err)
  263. return
  264. }
  265. for _, permission := range permissionList {
  266. pRiskNum, riskErr := parseRiskLevel(permission.RiskLevel)
  267. if riskErr != nil {
  268. logger.Error("解析品种风险等级失败 permission:%d,risk:%v", permission.PermissionId, permission.RiskLevel)
  269. continue
  270. }
  271. if pRiskNum <= riskLevelNum {
  272. resultList = append(resultList, permission)
  273. }
  274. }
  275. } else {
  276. resultList = permissionList
  277. }
  278. return
  279. }
  280. // ParseRiskLevel 解析风险等级字符串,并返回数字部分
  281. func parseRiskLevel(level string) (int, error) {
  282. parts := strings.Split(level, "R")
  283. if len(parts) < 2 {
  284. return 0, fmt.Errorf("无效的风险等级: %s", level)
  285. }
  286. numberStr := parts[1]
  287. number, err := strconv.Atoi(numberStr)
  288. if err != nil {
  289. return 0, fmt.Errorf("无法将风险等级转换为数字: %s", err)
  290. }
  291. return number, nil
  292. }
  293. func SearchReportList(key string, Ids []int, pageInfo page.PageInfo, isLogin bool, userId int) (list []reportService.ReportDTO, err error) {
  294. offset := page.StartIndex(pageInfo.Current, pageInfo.PageSize)
  295. var reports []reportService.ReportDTO
  296. reports, err = reportService.SearchReportList(key, Ids, offset, pageInfo.PageSize, pageInfo.LatestId)
  297. list, err = dealReportInfo(reports, isLogin, userId)
  298. if err != nil {
  299. err = exception.New(exception.SearchReportPageFailed)
  300. }
  301. return
  302. }
  303. func RangeSearchByAnalyst(analystName string, userId int) (total int64, latestId int64, ids []int) {
  304. return getCountByAnalyst(nil, true, userId, analystName)
  305. }
  306. func RangeSearch(key string, isLogin bool, userId int) (total int64, latestId int64, reportIds []int, err error) {
  307. var orgIds map[string][]int
  308. _, latestId, orgIds = getCount(nil, isLogin, userId)
  309. reportIds, err = GetReportByIdListByOrgIds(orgIds)
  310. if err != nil {
  311. logger.Error("获取报告ID列表失败:%v", err)
  312. err = exception.NewWithException(exception.GetReportSearchRangeFailed, err.Error())
  313. return
  314. }
  315. total = reportService.SearchMaxReportIdWithRange(key, reportIds)
  316. return
  317. }
  318. func dealReportInfo(list []reportService.ReportDTO, isLogin bool, userId int) (resultList []reportService.ReportDTO, err error) {
  319. var wg sync.WaitGroup
  320. wg.Add(len(list))
  321. for i := 0; i < len(list); i++ {
  322. go func(report *reportService.ReportDTO) {
  323. defer wg.Done()
  324. report.Login = isLogin
  325. report.PermissionNames = getReportPermissionNames(report.OrgId, report.Source)
  326. permissions := getReportSecondPermissions(report.OrgId, report.Source)
  327. if len(permissions) == 0 {
  328. return
  329. }
  330. riskNum := getHighestRiskLevel(permissions)
  331. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  332. var src string
  333. src, err = mediaService.GetImageSrc(report.CoverSrc)
  334. if err != nil {
  335. logger.Error("获取图片地址失败:%v", err)
  336. src = ""
  337. } else {
  338. report.CoverUrl = src
  339. }
  340. //下查询产品信息
  341. product, pdErr := productService.GetProductBySourceId(report.ReportID, productDao.Report)
  342. if pdErr != nil {
  343. if errors.Is(pdErr, gorm.ErrRecordNotFound) {
  344. report.Price = defaultProductPrice
  345. report.IsFree = true
  346. report.IsSubscribe = false
  347. } else {
  348. report.Price = defaultProductPrice
  349. report.IsFree = false
  350. report.IsSubscribe = false
  351. }
  352. } else {
  353. report.Price = product.Price.String()
  354. report.IsFree = false
  355. if isLogin {
  356. subscribe, subscribeErr := userService.GetUserSubscribe(product.Id, userId)
  357. if subscribeErr != nil {
  358. report.IsSubscribe = false
  359. } else {
  360. report.IsSubscribe = subscribe.Status == userDao.SubscribeValid
  361. }
  362. }
  363. pdRiskNum, parseErr := parseRiskLevel(product.RiskLevel)
  364. if parseErr != nil {
  365. return
  366. }
  367. rpRiskNum, parseErr := parseRiskLevel(report.RiskLevel)
  368. if parseErr != nil {
  369. return
  370. }
  371. if rpRiskNum <= pdRiskNum {
  372. report.RiskLevel = product.RiskLevel
  373. }
  374. }
  375. }(&list[i])
  376. }
  377. wg.Wait()
  378. resultList = list
  379. return
  380. }
  381. // GetReportPage 分页获取报告列表
  382. func GetReportPage(pageInfo page.PageInfo, orgIds map[string][]int, searchAll bool, isLogin bool, userId int) (reports []reportService.ReportDTO, err error) {
  383. var list []reportService.ReportDTO
  384. list, err = reportService.GetReportPageByOrgIds(pageInfo, orgIds, searchAll)
  385. reports, err = dealReportInfo(list, isLogin, userId)
  386. if err != nil {
  387. err = exception.New(exception.QueryReportPageFailed)
  388. }
  389. return
  390. }
  391. func GetReportPageByAnalyst(pageInfo page.PageInfo, analyst string, reportIds []int) (list []reportService.ReportDTO, err error) {
  392. list, err = reportService.GetReportPageByAnalyst(pageInfo, analyst, reportIds)
  393. //并发获取研报的标签
  394. var wg sync.WaitGroup
  395. wg.Add(len(list))
  396. for i := 0; i < len(list); i++ {
  397. go func(report *reportService.ReportDTO) {
  398. defer wg.Done()
  399. report.PermissionNames = getReportPermissionNames(report.OrgId, report.Source)
  400. }(&list[i])
  401. }
  402. wg.Wait()
  403. if err != nil {
  404. err = exception.New(exception.QueryReportPageFailed)
  405. }
  406. return
  407. }
  408. func CountReport(count RecordCount) (traceId string, err error) {
  409. dto := convertToRecordCountDTO(count)
  410. return userService.CountReport(dto)
  411. }
  412. func GetRandedReportByWeeklyHot(limit int, isLogin bool, userId int, pdRiskLevel string) (reports []HotRankedReport, err error) {
  413. end := time.Now()
  414. begin := date.GetBeginOfTheWeek(end, time.Monday)
  415. hotReports := userService.GetHotReports(begin.Format(time.DateOnly), end.Format(time.DateOnly), limit)
  416. if len(hotReports) > 0 {
  417. var dtoList []reportService.ReportDTO
  418. var ids []int
  419. for i := 0; i < len(hotReports); i++ {
  420. ids = append(ids, hotReports[i].ReportId)
  421. }
  422. dtoList, err = reportService.GetListByCondition("id", ids)
  423. if err != nil {
  424. logger.Error("获取本周最热研报列表失败:%v", err)
  425. err = exception.New(exception.GetHotRandListFailed)
  426. return
  427. }
  428. var filterList []reportService.ReportDTO
  429. if pdRiskLevel != "" {
  430. for _, report := range dtoList {
  431. product, pdErr := productService.GetProductBySourceId(report.ReportID, productDao.Report)
  432. if pdErr != nil {
  433. if errors.Is(pdErr, gorm.ErrRecordNotFound) {
  434. report.Price = defaultProductPrice
  435. report.IsFree = true
  436. report.IsSubscribe = false
  437. } else {
  438. logger.Error("查询产品失败:%v", pdErr)
  439. report.Price = defaultProductPrice
  440. report.IsFree = false
  441. report.IsSubscribe = false
  442. }
  443. filterList = append(filterList, report)
  444. } else {
  445. pdRiskNum, paresErr := parseRiskLevel(product.RiskLevel)
  446. if paresErr != nil {
  447. logger.Error("解析风险等级失败:%v", err)
  448. continue
  449. }
  450. reRiskNum, paresErr := parseRiskLevel(pdRiskLevel)
  451. if paresErr != nil {
  452. logger.Error("解析风险等级失败:%v", err)
  453. continue
  454. }
  455. report.RiskLevel = product.RiskLevel
  456. if isLogin {
  457. subscribe, subErr := userService.GetUserSubscribe(product.Id, userId)
  458. if subErr != nil {
  459. logger.Error("查询用户订阅信息失败:%v,productId:%v,userId:%v", err, product.Id, userId)
  460. report.Price = product.Price.String()
  461. report.IsFree = false
  462. report.IsSubscribe = false
  463. } else {
  464. report.Price = product.Price.String()
  465. report.IsFree = false
  466. report.IsSubscribe = subscribe.Status == userDao.SubscribeValid
  467. }
  468. }
  469. if pdRiskNum <= reRiskNum {
  470. filterList = append(filterList, report)
  471. }
  472. }
  473. }
  474. } else {
  475. filterList = dtoList
  476. for _, report := range filterList {
  477. product, pdErr := productService.GetProductBySourceId(report.ReportID, productDao.Report)
  478. if pdErr != nil {
  479. if errors.Is(pdErr, gorm.ErrRecordNotFound) {
  480. report.Price = defaultProductPrice
  481. report.IsFree = true
  482. report.IsSubscribe = false
  483. } else {
  484. logger.Error("查询产品失败:%v", pdErr)
  485. report.Price = defaultProductPrice
  486. report.IsFree = false
  487. report.IsSubscribe = false
  488. }
  489. } else {
  490. report.Price = product.Price.String()
  491. report.IsFree = false
  492. report.IsSubscribe = false
  493. report.RiskLevel = product.RiskLevel
  494. }
  495. }
  496. }
  497. var wg sync.WaitGroup
  498. wg.Add(len(filterList))
  499. for i := 0; i < len(filterList); i++ {
  500. go func(report *reportService.ReportDTO) {
  501. defer wg.Done()
  502. report.Login = isLogin
  503. report.Permissions = getReportPermissionsMap(report.OrgId, report.Source)
  504. report.SecondPermission = getReportSecondPermissionsMap(report.OrgId, report.Source)
  505. permissions := getReportSecondPermissions(report.OrgId, report.Source)
  506. var riskNum int
  507. if len(permissions) == 0 {
  508. riskNum = 0
  509. } else {
  510. riskNum = getHighestRiskLevel(permissions)
  511. }
  512. if report.RiskLevel == "" {
  513. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  514. } else {
  515. reRiskNum, paresErr := parseRiskLevel(report.RiskLevel)
  516. if paresErr != nil {
  517. logger.Error("解析风险等级失败:%v", err)
  518. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  519. } else {
  520. if reRiskNum <= riskNum {
  521. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  522. }
  523. }
  524. }
  525. var label []string
  526. for _, permission := range report.Permissions {
  527. label = append(label, permission)
  528. }
  529. report.PermissionNames = label
  530. }(&filterList[i])
  531. }
  532. wg.Wait()
  533. reports = make([]HotRankedReport, len(ids))
  534. for i := 0; i < len(filterList); i++ {
  535. risk, parseErr := parseRiskLevel(filterList[i].RiskLevel)
  536. if parseErr != nil || risk == 0 {
  537. continue
  538. }
  539. report := convertToHotRankedReport(filterList[i])
  540. for j := 0; j < len(hotReports); j++ {
  541. if hotReports[j].ReportId == report.Id {
  542. report.Count = hotReports[j].Count
  543. reports[j] = report
  544. break
  545. }
  546. }
  547. }
  548. } else {
  549. reports = []HotRankedReport{}
  550. }
  551. return
  552. }
  553. func GetRandedReportByPublishTimeWeekly(limit int, week bool, isLogin bool, userId int, pdRiskLevel string) (reports []PublishRankedReport, err error) {
  554. dtoList, err := reportService.GetListOrderByConditionWeekly(week, "published_time", limit, reportService.DESC)
  555. if err != nil {
  556. logger.Error("获取最新发布的研报列表失败:%v", err)
  557. err = exception.New(exception.GetPublishedRandListFailed)
  558. return
  559. }
  560. var filterList []reportService.ReportDTO
  561. if pdRiskLevel != "" {
  562. for _, report := range dtoList {
  563. product, pdErr := productService.GetProductBySourceId(report.ReportID, productDao.Report)
  564. if pdErr != nil {
  565. if errors.Is(pdErr, gorm.ErrRecordNotFound) {
  566. report.Price = defaultProductPrice
  567. report.IsFree = true
  568. report.IsSubscribe = false
  569. } else {
  570. logger.Error("查询产品失败:%v", pdErr)
  571. report.Price = defaultProductPrice
  572. report.IsFree = false
  573. report.IsSubscribe = false
  574. }
  575. filterList = append(filterList, report)
  576. } else {
  577. pdRiskNum, paresErr := parseRiskLevel(product.RiskLevel)
  578. if paresErr != nil {
  579. logger.Error("解析风险等级失败:%v", err)
  580. continue
  581. }
  582. reRiskNum, paresErr := parseRiskLevel(pdRiskLevel)
  583. if paresErr != nil {
  584. logger.Error("解析风险等级失败:%v", err)
  585. continue
  586. }
  587. report.RiskLevel = product.RiskLevel
  588. if isLogin {
  589. subscribe, subErr := userService.GetUserSubscribe(product.Id, userId)
  590. if subErr != nil {
  591. logger.Error("查询用户订阅信息失败:%v,productId:%v,userId:%v", err, product.Id, userId)
  592. report.Price = product.Price.String()
  593. report.IsFree = false
  594. report.IsSubscribe = false
  595. } else {
  596. report.Price = product.Price.String()
  597. report.IsFree = false
  598. report.IsSubscribe = subscribe.Status == userDao.SubscribeValid
  599. }
  600. }
  601. if pdRiskNum <= reRiskNum {
  602. filterList = append(filterList, report)
  603. }
  604. }
  605. }
  606. } else {
  607. filterList = dtoList
  608. for _, report := range filterList {
  609. product, pdErr := productService.GetProductBySourceId(report.ReportID, productDao.Report)
  610. if pdErr != nil {
  611. if errors.Is(pdErr, gorm.ErrRecordNotFound) {
  612. report.Price = defaultProductPrice
  613. report.IsFree = true
  614. report.IsSubscribe = false
  615. } else {
  616. logger.Error("查询产品失败:%v", pdErr)
  617. report.Price = defaultProductPrice
  618. report.IsFree = false
  619. report.IsSubscribe = false
  620. }
  621. } else {
  622. report.Price = product.Price.String()
  623. report.IsFree = false
  624. report.IsSubscribe = false
  625. report.RiskLevel = product.RiskLevel
  626. }
  627. }
  628. }
  629. //并发获取研报的标签
  630. var wg sync.WaitGroup
  631. wg.Add(len(filterList))
  632. for i := 0; i < len(filterList); i++ {
  633. go func(report *reportService.ReportDTO) {
  634. defer wg.Done()
  635. report.Login = isLogin
  636. report.Permissions = getReportPermissionsMap(report.OrgId, report.Source)
  637. report.SecondPermission = getReportSecondPermissionsMap(report.OrgId, report.Source)
  638. report.PermissionNames = getReportPermissionNames(report.OrgId, report.Source)
  639. var riskNum int
  640. permissions := getReportSecondPermissions(report.OrgId, report.Source)
  641. if len(permissions) == 0 {
  642. riskNum = 0
  643. } else {
  644. riskNum = getHighestRiskLevel(permissions)
  645. }
  646. if report.RiskLevel == "" {
  647. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  648. } else {
  649. reRiskNum, paresErr := parseRiskLevel(report.RiskLevel)
  650. if paresErr != nil {
  651. logger.Error("解析风险等级失败:%v", err)
  652. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  653. } else {
  654. if reRiskNum <= riskNum {
  655. report.RiskLevel = strings.Join([]string{"R", strconv.Itoa(riskNum)}, "")
  656. }
  657. }
  658. }
  659. }(&filterList[i])
  660. }
  661. wg.Wait()
  662. reports = convertToPublishRankedReportList(filterList)
  663. return
  664. }
  665. func getReportPermissionNames(id int, source string) (labels []string) {
  666. permissions := reportService.GetReportPermissionsById(id, source)
  667. for _, permission := range permissions {
  668. labels = append(labels, permission.PermissionName)
  669. }
  670. return
  671. }
  672. func getReportSecondPermissionsMap(id int, source string) (permissionMap map[int]string) {
  673. permissionMap = make(map[int]string)
  674. permissions := reportService.GetReportSecondPermissionsById(id, source)
  675. for _, permission := range permissions {
  676. permissionMap[permission.PermissionId] = permission.PermissionName
  677. }
  678. return
  679. }
  680. func getReportSecondPermissions(id int, source string) (permissionList []permissionService.PermissionDTO) {
  681. return reportService.GetReportSecondPermissionsById(id, source)
  682. }
  683. func getReportPermissionsMap(id int, source string) (permissionMap map[int]string) {
  684. permissionMap = make(map[int]string)
  685. permissions := reportService.GetReportPermissionsById(id, source)
  686. for _, permission := range permissions {
  687. permissionMap[permission.PermissionId] = permission.PermissionName
  688. }
  689. return
  690. }
  691. func GetPermissionList() (root *permissionService.PermissionNode, err error) {
  692. return permissionService.GetPermissionList()
  693. }
  694. func convertToHotRankedReport(dto reportService.ReportDTO) (report HotRankedReport) {
  695. src, err := mediaService.GetImageSrc(dto.CoverSrc)
  696. if err != nil {
  697. logger.Error("获取封面图片失败:%v", err)
  698. src = ""
  699. }
  700. report = HotRankedReport{
  701. Id: dto.ReportID,
  702. OrgId: dto.OrgId,
  703. Abstract: dto.Abstract,
  704. PublishedTime: dto.PublishedTime,
  705. Title: dto.Title,
  706. SecondPermissions: dto.SecondPermission,
  707. Permissions: dto.Permissions,
  708. PermissionNames: dto.PermissionNames,
  709. CoverUrl: src,
  710. IsSubscribe: dto.IsSubscribe,
  711. IsFree: dto.IsFree,
  712. Price: dto.Price,
  713. RiskLevel: dto.RiskLevel,
  714. Login: dto.Login,
  715. }
  716. return
  717. }
  718. func convertToPublishRankedReportList(dtoList []reportService.ReportDTO) (reports []PublishRankedReport) {
  719. reports = []PublishRankedReport{}
  720. for _, dto := range dtoList {
  721. risk, err := parseRiskLevel(dto.RiskLevel)
  722. if err != nil || risk == 0 {
  723. continue
  724. }
  725. src, err := mediaService.GetImageSrc(dto.CoverSrc)
  726. if err != nil {
  727. logger.Error("获取封面图片失败:%v", err)
  728. src = ""
  729. }
  730. report := PublishRankedReport{
  731. Id: dto.ReportID,
  732. OrgId: dto.OrgId,
  733. PublishedTime: dto.PublishedTime,
  734. Abstract: dto.Abstract,
  735. Title: dto.Title,
  736. Permissions: dto.Permissions,
  737. SecondPermissions: dto.SecondPermission,
  738. PermissionNames: dto.PermissionNames,
  739. CoverUrl: src,
  740. IsSubscribe: dto.IsSubscribe,
  741. IsFree: dto.IsFree,
  742. Price: dto.Price,
  743. RiskLevel: dto.RiskLevel,
  744. Login: dto.Login,
  745. }
  746. reports = append(reports, report)
  747. }
  748. return
  749. }
  750. func convertToRecordCountDTO(record RecordCount) (dto userService.RecordCountDTO) {
  751. return userService.RecordCountDTO{
  752. UserId: record.UserId,
  753. TraceId: record.TraceId,
  754. Mobile: record.Mobile,
  755. SourceId: record.ReportId,
  756. IpAddress: record.IpAddress,
  757. Location: record.Location,
  758. Referer: record.Referer,
  759. Additional: record.Additional,
  760. }
  761. }
  762. func GetReportByIdListByOrgIds(orgIds map[string][]int) (ids []int, err error) {
  763. ids, err = reportService.GetReportByIdListByOrgIds(orgIds)
  764. if err != nil {
  765. logger.Error("获取报告ID列表失败:%v", err)
  766. err = exception.New(exception.GetReportSearchRangeFailed)
  767. }
  768. return
  769. }
  770. func RangePermissionIds(isLogin bool, userId int) (filterPermissionIds []int, riskLevel string, err error) {
  771. return checkUserRisk(nil, isLogin, userId)
  772. }
  773. func checkUserRisk(permissionIds []int, isLogin bool, userId int) (filterPermissionIds []int, riskLevel string, err error) {
  774. if isLogin {
  775. userProfile, userErr := user.GetUserProfile(userId)
  776. if userErr != nil {
  777. if errors.Is(userErr, gorm.ErrRecordNotFound) {
  778. err = exception.New(exception.TemplateUserNotFound)
  779. } else {
  780. err = exception.New(exception.TemplateUserFoundFailed)
  781. }
  782. logger.Error("分页查询报告列表失败:%v", err)
  783. return
  784. }
  785. //获取产品风险等级
  786. if userProfile.RiskLevel == user.RiskUnTest {
  787. logger.Warn("客户未做风险等级测评,mobile:%v", userProfile.Mobile)
  788. }
  789. if userProfile.RiskLevelStatus == user.RiskExpired {
  790. logger.Warn("客户风险等级已过期,mobile:%v", userProfile.Mobile)
  791. }
  792. var mapping permissionService.CustomerProductRiskMappingDTO
  793. if userProfile.RiskLevel != "" {
  794. mapping, err = permissionService.GetRiskMappingByCustomerRiskLevel(userProfile.RiskLevel)
  795. if err != nil {
  796. logger.Error("查询产品风险等级映射失败:%v", err)
  797. return
  798. }
  799. }
  800. var permissionList []permissionService.PermissionDTO
  801. if len(permissionIds) == 0 {
  802. //获取所有设置风险等级的品种
  803. permissionList, err = permissionService.GetPermissionListWithRisk()
  804. } else {
  805. //更具id过滤设置了风险等级的品种
  806. permissionList, err = permissionService.GetPermissionListByIds(permissionIds)
  807. }
  808. permissionList = filterPermissionsByRisk(permissionList, mapping.ProductRiskLevel)
  809. riskLevel = mapping.ProductRiskLevel
  810. if len(permissionList) == 0 {
  811. return
  812. }
  813. for _, permission := range permissionList {
  814. filterPermissionIds = append(filterPermissionIds, permission.PermissionId)
  815. }
  816. return
  817. } else { //没有登录的时候展示所有设置了风险等级的品种报告,筛选的时候过滤传入ID中没有设置风险等级的品种
  818. var permissionList []permissionService.PermissionDTO
  819. if len(permissionIds) == 0 {
  820. //获取所有设置风险等级的品种
  821. permissionList, err = permissionService.GetPermissionListWithRisk()
  822. } else {
  823. //更具id过滤设置了风险等级的品种
  824. permissionList, err = permissionService.GetPermissionListByIds(permissionIds)
  825. }
  826. if err != nil {
  827. logger.Error("根据ID查询品种列表失败:%v", err)
  828. }
  829. for _, permission := range permissionList {
  830. filterPermissionIds = append(filterPermissionIds, permission.PermissionId)
  831. }
  832. //查询品种
  833. return
  834. }
  835. }
  836. func getCount(permissionIds []int, isLogin bool, userId int) (total int64, latestId int64, ids map[string][]int) {
  837. filterPermissionIds, riskLevel, err := checkUserRisk(permissionIds, isLogin, userId)
  838. if err != nil {
  839. logger.Error("校验用户风险等级失败:%v", err)
  840. return
  841. }
  842. return reportService.GetTotalPageCountByPermissionIds(filterPermissionIds, riskLevel)
  843. }
  844. func getCountByAnalyst(permissionIds []int, isLogin bool, userId int, analystName string) (total int64, latestId int64, ids []int) {
  845. filterPermissionIds, riskLevel, err := checkUserRisk(permissionIds, isLogin, userId)
  846. if err != nil {
  847. logger.Error("校验用户风险等级失败:%v", err)
  848. return
  849. }
  850. return reportService.GetTotalPageCountByAnalyst(analystName, filterPermissionIds, riskLevel)
  851. }