Giter Site home page Giter Site logo

pkg-id / httpmid Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 10 KB

The httpmid package provides a function that allows you to create middleware for the standard net/http library.

License: Apache License 2.0

Makefile 9.31% Go 64.50% Shell 26.19%
go golang http-server middleware mux

httpmid's Introduction

httpmid

The httpmid package provides a function that allows you to create middleware for the standard net/http library.

Installation

go get github.com/pkg-id/httpmid

Example

package main

import (
	"crypto/rand"
	"encoding/base64"
	"io"
	"log"
	"net/http"
	"time"

	"github.com/pkg-id/httpmid"
)

func main() {
	mux := http.NewServeMux()
	mux.HandleFunc("/demo", demoHandler)

	// Creates a new handler with middleware.
	// The requestID becomes the outermost layer, followed by the logger, and
	// the innermost layer is the actual handler (mux) where the API is registered.
	handler := httpmid.Reduce(requestID, logger).Then(mux)

	err := http.ListenAndServe("localhost:8080", handler)
	if err != nil {
		log.Fatalf("listen failed: %v", err)
	}
}

func demoHandler(w http.ResponseWriter, r *http.Request) {
	_, _ = io.WriteString(w, "Hello, World")
}

const headerRequestID = "X-Request-ID"

func requestID(next http.Handler) http.Handler {

	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		rid := r.Header.Get(headerRequestID)
		if rid == "" {
			b := make([]byte, 32)
			_, _ = io.ReadFull(rand.Reader, b)
			rid = base64.URLEncoding.EncodeToString(b)
		}
		r.Header.Set(headerRequestID, rid)
		w.Header().Set(headerRequestID, rid)
		next.ServeHTTP(w, r)
	})
}

func logger(next http.Handler) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		started := time.Now()
		rid := r.Header.Get(headerRequestID)
		log.Printf("request started, request_id: %s, method: %s, path: %s", rid, r.Method, r.URL.Path)
		defer log.Printf("request completed, request_id: %s, latency: %s", rid, time.Since(started))

		next.ServeHTTP(w, r)
	})
}

httpmid's People

Contributors

josestg avatar

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.