mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-24 00:44:09 +01:00
Add security handler (#8)
This commit is contained in:
parent
c0b1fefec8
commit
3fb7d27f3a
18
security/handler.go
Normal file
18
security/handler.go
Normal file
@ -0,0 +1,18 @@
|
||||
package security
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func Handler(handler http.HandlerFunc, security *Config) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
usernameEntered, passwordEntered, ok := r.BasicAuth()
|
||||
if !ok || usernameEntered != security.Basic.Username || Sha512(passwordEntered) != security.Basic.PasswordSha512Hash {
|
||||
w.Header().Set("WWW-Authenticate", "Basic")
|
||||
w.WriteHeader(http.StatusUnauthorized)
|
||||
_, _ = w.Write([]byte("Unauthorized"))
|
||||
return
|
||||
}
|
||||
handler(w, r)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user