Code Monkey home page Code Monkey logo

Comments (1)

sergolius avatar sergolius commented on August 12, 2024

@fproulx-eoscanada
middlewares:

func authorizeMiddleware(next http.HandlerFunc) http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		ctx := context.WithValue(r.Context(), "user_id", "user-12345")
		next(w, r.WithContext(ctx))
	}
}

func limiterMiddleware(rateLimiter *redis_rate.Limiter, limit int64, next http.HandlerFunc) http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		userID := r.Context().Value("user_id").(string)

		rate, delay, allowed := rateLimiter.AllowMinute(userID, limit)
		if !allowed {
			h := w.Header()
			h.Set("X-RateLimit-Limit", strconv.FormatInt(limit, 10))
			h.Set("X-RateLimit-Remaining", strconv.FormatInt(limit-rate, 10))
			delaySec := int64(delay / time.Second)
			h.Set("X-RateLimit-Delay", strconv.FormatInt(delaySec, 10))
			http.Error(w, "API rate limit exceeded.", 429)

			buf := new(bytes.Buffer)
			buf.WriteByte('\n')
			fmt.Fprintf(buf, "Current rate: %d\n", rate)
			fmt.Fprintf(buf, "Delay: %s\n", delay)
			fmt.Fprintf(buf, "Allowed: %v\n", allowed)
			fmt.Fprintf(buf, "Rate limit remaining: %s\n", strconv.FormatInt(limit-rate, 10))
			buf.WriteTo(w)
			return
		}

		next(w, r)
	}
}

func handler(w http.ResponseWriter, _ *http.Request) {
	fmt.Fprintf(w, "Hello world!\n")
}

func main:

redisClient := redis.NewClient(...)
limiter := redis_rate.NewLimiter(redisClient)
limit := int64(5)
http.HandleFunc("/", authorizeMiddleware(limiterMiddleware(limiter, limit, handler)))
log.Fatal(http.ListenAndServe("localhost:8820", nil))

from redis_rate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.