liujiandao
2023-10-17 d4bf53dd19a45ef09a367babcf7a2ac04ae1d08f
middleware/user.go
@@ -32,7 +32,18 @@
   }
}
var whiteList = map[string]struct{}{ //白名单地址列表
   "/api/code/getCodeList":          {},
   "/api/data/getAllData":           {},
   "/api/serviceCollectionPlan/add": {},
   "/api/bankAccount/list":          {},
   "/api/paymentType/list":          {},
}
func CheckAuth(apiPath string, token string) bool {
   if _, ok := whiteList[apiPath]; ok {
      return true
   }
   cli := user.NewUserServiceClient(userConn)
   ctx, cancel := context.WithTimeout(context.Background(), time.Second)
   defer cancel()