//go:build examples // +build examples package main import ( "encoding/hex" "errors" "fmt" "io" "log" "net/http" "net/http/httptest" "os" "github.com/gorilla/sessions" "github.com/jcmturner/goidentity/v6" "github.com/jcmturner/gokrb5/v8/client" "github.com/jcmturner/gokrb5/v8/config" "github.com/jcmturner/gokrb5/v8/credentials" "github.com/jcmturner/gokrb5/v8/keytab" "github.com/jcmturner/gokrb5/v8/service" "github.com/jcmturner/gokrb5/v8/spnego" "github.com/jcmturner/gokrb5/v8/test/testdata" ) func main() { s := httpServer() defer s.Close() fmt.Printf("Listening on %s\n", s.URL) l := log.New(os.Stderr, "GOKRB5 Client: ", log.Ldate|log.Ltime|log.Lshortfile) b, _ := hex.DecodeString(testdata.KEYTAB_TESTUSER1_USER_GOKRB5) kt := keytab.New() kt.Unmarshal(b) c, _ := config.NewFromString(testdata.KRB5_CONF) cl := client.NewWithKeytab("testuser1", "USER.GOKRB5", kt, c, client.DisablePAFXFAST(true), client.Logger(l)) httpRequest(s.URL, cl) b, _ = hex.DecodeString(testdata.KEYTAB_TESTUSER2_USER_GOKRB5) kt = keytab.New() kt.Unmarshal(b) c, _ = config.NewFromString(testdata.KRB5_CONF) cl = client.NewWithKeytab("testuser2", "USER.GOKRB5", kt, c, client.DisablePAFXFAST(true), client.Logger(l)) httpRequest(s.URL, cl) } func httpRequest(url string, cl *client.Client) { l := log.New(os.Stderr, "GOKRB5 Client: ", log.Ldate|log.Ltime|log.Lshortfile) err := cl.Login() if err != nil { l.Fatalf("Error on AS_REQ: %v\n", err) } spnegoCl := spnego.NewClient(cl, nil, "HTTP/host.res.gokrb5") // Make the request for the first time with no session r, _ := http.NewRequest("GET", url, nil) httpResp, err := spnegoCl.Do(r) if err != nil { l.Fatalf("error making request: %v", err) } fmt.Fprintf(os.Stdout, "Response Code: %v\n", httpResp.StatusCode) content, _ := io.ReadAll(httpResp.Body) fmt.Fprintf(os.Stdout, "Response Body:\n%s\n", content) // Make the request again which should use the session httpResp, err = spnegoCl.Do(r) if err != nil { l.Fatalf("error making request: %v", err) } fmt.Fprintf(os.Stdout, "Response Code: %v\n", httpResp.StatusCode) content, _ = io.ReadAll(httpResp.Body) fmt.Fprintf(os.Stdout, "Response Body:\n%s\n", content) } func httpServer() *httptest.Server { l := log.New(os.Stderr, "GOKRB5 Service Tests: ", log.Ldate|log.Ltime|log.Lshortfile) b, _ := hex.DecodeString(testdata.KEYTAB_SYSHTTP_RES_GOKRB5) kt := keytab.New() kt.Unmarshal(b) th := http.HandlerFunc(testAppHandler) s := httptest.NewServer(spnego.SPNEGOKRB5Authenticate(th, kt, service.Logger(l), service.KeytabPrincipal("sysHTTP"), service.SessionManager(NewSessionMgr("gokrb5")))) return s } func testAppHandler(w http.ResponseWriter, r *http.Request) { creds := goidentity.FromHTTPRequestContext(r) fmt.Fprint(w, "\n