mirror of
https://github.com/alibaba/higress.git
synced 2026-05-27 14:17:27 +08:00
Migrate WASM Go Plugins to New SDK and Go 1.24 (#2532)
This commit is contained in:
@@ -3,15 +3,19 @@ package main
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/alibaba/higress/plugins/wasm-go/pkg/wrapper"
|
||||
"github.com/higress-group/proxy-wasm-go-sdk/proxywasm"
|
||||
"github.com/higress-group/proxy-wasm-go-sdk/proxywasm/types"
|
||||
"github.com/tidwall/resp"
|
||||
"replay-protection/config"
|
||||
"replay-protection/util"
|
||||
|
||||
"github.com/higress-group/proxy-wasm-go-sdk/proxywasm"
|
||||
"github.com/higress-group/proxy-wasm-go-sdk/proxywasm/types"
|
||||
"github.com/higress-group/wasm-go/pkg/log"
|
||||
"github.com/higress-group/wasm-go/pkg/wrapper"
|
||||
"github.com/tidwall/resp"
|
||||
)
|
||||
|
||||
func main() {
|
||||
func main() {}
|
||||
|
||||
func init() {
|
||||
wrapper.SetCtx(
|
||||
"replay-protection",
|
||||
wrapper.ParseConfigBy(config.ParseConfig),
|
||||
@@ -19,7 +23,7 @@ func main() {
|
||||
)
|
||||
}
|
||||
|
||||
func onHttpRequestHeaders(ctx wrapper.HttpContext, cfg config.ReplayProtectionConfig, log wrapper.Log) types.Action {
|
||||
func onHttpRequestHeaders(ctx wrapper.HttpContext, cfg config.ReplayProtectionConfig, log log.Log) types.Action {
|
||||
nonce, _ := proxywasm.GetHttpRequestHeader(cfg.NonceHeader)
|
||||
if cfg.ForceNonce && nonce == "" {
|
||||
// In force mode, reject the request if a required header is missing.
|
||||
|
||||
Reference in New Issue
Block a user