verify.go 662 B

1234567891011121314151617181920
  1. package services
  2. // AfterHandlerUrlMap 结束后待处理的url
  3. var EncryptionPathMap = map[string]int{
  4. "/api/report/getReportInfo": 1, //报告详情接口
  5. "/api/report/getReportChapterInfo": 1, //报告章节详情接口
  6. "/api/report/getReportInfo/v2": 1, //报告详情接口V2
  7. "/api/report/getReportChapterInfo/v2": 1, //报告章节详情接口V2
  8. "/api/report/getTickerData": 1, //表格数据
  9. }
  10. // CheckEncryption 校验需要是否加密
  11. func CheckEncryption(urlPath string) (isEncryption bool) {
  12. //if utils.RunMode == "release" {
  13. if _, ok := EncryptionPathMap[urlPath]; ok {
  14. isEncryption = true
  15. }
  16. //}
  17. return
  18. }