blob: 77c045384924394b7819f928adb162c25e45f3ee [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package v3
import (
"time"
)
import (
envoy_config_core_v3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
envoy_extensions_filters_http_local_ratelimit_v3 "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/local_ratelimit/v3"
envoy_type_v3 "github.com/envoyproxy/go-control-plane/envoy/type/v3"
"google.golang.org/protobuf/types/known/anypb"
)
import (
"github.com/apache/dubbo-kubernetes/pkg/util/proto"
)
type RateLimitConfiguration struct {
Interval time.Duration
Requests uint32
OnRateLimit *OnRateLimit
}
type OnRateLimit struct {
Status uint32
Headers []*Headers
}
type Headers struct {
Key string
Value string
Append bool
}
func NewRateLimitConfiguration(rlHttp *RateLimitConfiguration) (*anypb.Any, error) {
var status *envoy_type_v3.HttpStatus
var responseHeaders []*envoy_config_core_v3.HeaderValueOption
if rlHttp.OnRateLimit != nil {
if rlHttp.OnRateLimit.Status != 0 {
status = &envoy_type_v3.HttpStatus{
Code: envoy_type_v3.StatusCode(rlHttp.OnRateLimit.Status),
}
}
responseHeaders = []*envoy_config_core_v3.HeaderValueOption{}
for _, h := range rlHttp.OnRateLimit.Headers {
appendAction := envoy_config_core_v3.HeaderValueOption_OVERWRITE_IF_EXISTS_OR_ADD
if h.Append {
appendAction = envoy_config_core_v3.HeaderValueOption_APPEND_IF_EXISTS_OR_ADD
}
responseHeaders = append(responseHeaders, &envoy_config_core_v3.HeaderValueOption{
Header: &envoy_config_core_v3.HeaderValue{
Key: h.Key,
Value: h.Value,
},
AppendAction: appendAction,
})
}
}
config := &envoy_extensions_filters_http_local_ratelimit_v3.LocalRateLimit{
StatPrefix: "rate_limit",
Status: status,
TokenBucket: &envoy_type_v3.TokenBucket{
MaxTokens: rlHttp.Requests,
TokensPerFill: proto.UInt32(rlHttp.Requests),
FillInterval: proto.Duration(rlHttp.Interval),
},
FilterEnabled: &envoy_config_core_v3.RuntimeFractionalPercent{
DefaultValue: &envoy_type_v3.FractionalPercent{
Numerator: 100,
Denominator: envoy_type_v3.FractionalPercent_HUNDRED,
},
RuntimeKey: "local_rate_limit_enabled",
},
FilterEnforced: &envoy_config_core_v3.RuntimeFractionalPercent{
DefaultValue: &envoy_type_v3.FractionalPercent{
Numerator: 100,
Denominator: envoy_type_v3.FractionalPercent_HUNDRED,
},
RuntimeKey: "local_rate_limit_enforced",
},
ResponseHeadersToAdd: responseHeaders,
}
return proto.MarshalAnyDeterministic(config)
}