feat(jwt-auth): support remote JWKS (#3838)

Signed-off-by: Betula-L <6059935+Betula-L@users.noreply.github.com>
Co-authored-by: Betula-L <6059935+Betula-L@users.noreply.github.com>
This commit is contained in:
Betula-L
2026-05-25 16:04:10 +08:00
committed by GitHub
parent e6fc09b14f
commit a86aaadaa4
17 changed files with 2780 additions and 115 deletions

View File

@@ -17,7 +17,9 @@ package main
import (
"github.com/alibaba/higress/plugins/wasm-go/extensions/jwt-auth/config"
"github.com/alibaba/higress/plugins/wasm-go/extensions/jwt-auth/handler"
"github.com/higress-group/wasm-go/pkg/log"
"github.com/higress-group/wasm-go/pkg/wrapper"
"github.com/tidwall/gjson"
)
// @Name jwt-proxy
@@ -33,7 +35,29 @@ import (
// @Contact.email ink33@smlk.org
//
// @Example
// {}
//
// {
// "consumers": [
// {
// "name": "example-consumer",
// "issuer": "https://issuer.example.com",
// "remote_jwks": {
// "service_name": "issuer.example.com.dns",
// "service_host": "issuer.example.com",
// "service_port": 443,
// "path": "/.well-known/jwks.json"
// },
// "jwks_cache_duration": 600,
// "jwks_fetch_timeout": 1500
// },
// {
// "name": "inline-consumer",
// "issuer": "https://issuer.example.com",
// "jwks": "{\"keys\":[...]}"
// }
// ]
// }
//
// @End
func main() {}
@@ -42,9 +66,17 @@ func init() {
// 插件名称
"jwt-auth",
// 为解析插件配置,设置自定义函数
wrapper.ParseConfigBy(config.ParseGlobalConfig),
wrapper.ParseOverrideConfigBy(config.ParseGlobalConfig, config.ParseRuleConfig),
wrapper.ParseConfigBy(parseGlobalConfig),
wrapper.ParseOverrideConfigBy(parseGlobalConfig, config.ParseRuleConfig),
// 为处理请求头,设置自定义函数
wrapper.ProcessRequestHeadersBy(handler.OnHTTPRequestHeaders),
)
}
func parseGlobalConfig(json gjson.Result, cfg *config.JWTAuthConfig, logger log.Log) error {
if err := config.ParseGlobalConfig(json, cfg, logger); err != nil {
return err
}
handler.PruneRemoteJWKsCache(cfg.Consumers)
return nil
}