GH syntax highlighting

This commit is contained in:
Matthew Dillon 2015-04-21 09:59:43 -08:00
parent 11c03db65e
commit dc58eb70a2

View file

@ -3,22 +3,23 @@
A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into
your application: your application:
package main ```go
package main
import ( import (
"errors" "errors"
"fmt" "fmt"
"net/http" "net/http"
"time" "time"
"github.com/thermokarst/jwt" "github.com/thermokarst/jwt"
) )
func protectMe(w http.ResponseWriter, r *http.Request) { func protectMe(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "secured") fmt.Fprintf(w, "secured")
} }
func main() { func main() {
var authFunc = func(email string, password string) error { var authFunc = func(email string, password string) error {
// Hard-code a user --- this could easily be a database call, etc. // Hard-code a user --- this could easily be a database call, etc.
if email != "test" || password != "test" { if email != "test" || password != "test" {
@ -69,7 +70,8 @@ your application:
http.Handle("/authenticate", j.GenerateToken()) http.Handle("/authenticate", j.GenerateToken())
http.Handle("/secure", j.Secure(protect, verifyClaimsFunc)) http.Handle("/secure", j.Secure(protect, verifyClaimsFunc))
http.ListenAndServe(":8080", nil) http.ListenAndServe(":8080", nil)
} }
```
# Installation # Installation
@ -85,17 +87,21 @@ tokens), a function for authenticating user, and a function for generating a
user's claims. The idea here is to be dead-simple for someone to drop this into user's claims. The idea here is to be dead-simple for someone to drop this into
a project and hit the ground running. a project and hit the ground running.
config := &jwt.Config{ ```go
config := &jwt.Config{
Secret: "password", Secret: "password",
Auth: authFunc, // func(string, string) error Auth: authFunc, // func(string, string) error
Claims: claimsFunc, // func(string) (map[string]interface{}) Claims: claimsFunc, // func(string) (map[string]interface{})
} }
j, err := jwt.NewMiddleware(config) j, err := jwt.NewMiddleware(config)
```
Once the middleware is instanciated, create a route for users to generate a JWT Once the middleware is instanciated, create a route for users to generate a JWT
at. at.
http.Handle("/authenticate", j.GenerateToken()) ```go
http.Handle("/authenticate", j.GenerateToken())
```
The auth function takes two arguments (the identity, and the authorization The auth function takes two arguments (the identity, and the authorization
key), POSTed as a JSON-encoded body: key), POSTed as a JSON-encoded body:
@ -112,7 +118,9 @@ function should return a `map[string]interface{}` with the desired claimset.
Routes are "secured" by calling the `Secure(http.Handler, jwt.VerifyClaimsFunc)` Routes are "secured" by calling the `Secure(http.Handler, jwt.VerifyClaimsFunc)`
handler: handler:
http.Handle("/secureendpoint", j.Secure(someHandler, verifyClaimsFunc)) ```go
http.Handle("/secureendpoint", j.Secure(someHandler, verifyClaimsFunc))
```
The claims verification function is called after the token has been parsed and The claims verification function is called after the token has been parsed and
validated: this is where you control how your application handles the claims validated: this is where you control how your application handles the claims