1
0
Fork 0
mirror of https://github.com/vbatts/srvdav.git synced 2024-11-22 16:45:39 +00:00
srvdav/vendor/github.com/abbot/go-http-auth/examples/basic.go
Vincent Batts 6feae25207
vendor: dep init
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-04-03 20:33:38 -04:00

35 lines
619 B
Go

// +build ignore
/*
Example application using Basic auth
Build with:
go build basic.go
*/
package main
import (
auth ".."
"fmt"
"net/http"
)
func Secret(user, realm string) string {
if user == "john" {
// password is "hello"
return "$1$dlPL2MqE$oQmn16q49SqdmhenQuNgs1"
}
return ""
}
func handle(w http.ResponseWriter, r *auth.AuthenticatedRequest) {
fmt.Fprintf(w, "<html><body><h1>Hello, %s!</h1></body></html>", r.Username)
}
func main() {
authenticator := auth.NewBasicAuthenticator("example.com", Secret)
http.HandleFunc("/", authenticator.Wrap(handle))
http.ListenAndServe(":8080", nil)
}