k8s.io/registry.k8s.io@v0.3.1/cmd/geranos/ratelimitroundtrip.go (about) 1 /* 2 Copyright 2023 The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package main 18 19 import ( 20 "context" 21 "net/http" 22 23 "golang.org/x/time/rate" 24 ) 25 26 // RateLimitRoundTripper wraps an http.RoundTripper with rate limiting 27 type RateLimitRoundTripper struct { 28 rateLimiter *rate.Limiter 29 roundTripper http.RoundTripper 30 } 31 32 var _ http.RoundTripper = &RateLimitRoundTripper{} 33 34 func NewRateLimitRoundTripper(limit rate.Limit) *RateLimitRoundTripper { 35 return &RateLimitRoundTripper{ 36 rateLimiter: rate.NewLimiter(limit, 1), 37 roundTripper: http.DefaultTransport, 38 } 39 } 40 41 func (rt *RateLimitRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) { 42 err := rt.rateLimiter.Wait(context.Background()) 43 if err != nil { 44 return nil, err 45 } 46 return rt.roundTripper.RoundTrip(r) 47 }