-
-
Save nurali/4649246ff2d5a281e5509d0a4ed3ba24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
) | |
func init() { | |
log.SetFlags(log.Lshortfile) | |
} | |
// middleware provides a convenient mechanism for filtering HTTP requests | |
// entering the application. It returns a new handler which performs various | |
// operations and finishes with calling the next HTTP handler. | |
type middleware func(http.HandlerFunc) http.HandlerFunc | |
// chainMiddleware provides syntactic sugar to create a new middleware | |
// which will be the result of chaining the ones received as parameters. | |
func chainMiddleware(mw ...middleware) middleware { | |
return func(final http.HandlerFunc) http.HandlerFunc { | |
last := final | |
for i := len(mw) - 1; i >= 0; i-- { | |
last = mw[i](last) | |
} | |
return func(w http.ResponseWriter, r *http.Request) { | |
last(w, r) | |
} | |
} | |
} | |
func withLogging(next http.HandlerFunc) http.HandlerFunc { | |
return func(w http.ResponseWriter, r *http.Request) { | |
log.Printf("Logged connection from %s", r.RemoteAddr) | |
next.ServeHTTP(w, r) | |
} | |
} | |
func withTracing(next http.HandlerFunc) http.HandlerFunc { | |
return func(w http.ResponseWriter, r *http.Request) { | |
log.Printf("Tracing request for %s", r.RequestURI) | |
next.ServeHTTP(w, r) | |
} | |
} | |
func home(w http.ResponseWriter, r *http.Request) { | |
log.Println("reached home") | |
fmt.Fprintf(w, "welcome") | |
} | |
func main() { | |
mw := chainMiddleware(withLogging, withTracing) | |
http.Handle("/", mw(home)) | |
log.Fatal(http.ListenAndServe(":8080", nil)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment