From f041fc8577331e9e7fac22f90b41534ee97353a8 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Fri, 28 Jan 2022 15:40:32 +0200 Subject: [PATCH] #71 Skip basic auth for OPTIONS http method The OPTIONS needed for CORS requests Signed-off-by: Sergey Ponomarev --- web/handler.go | 3 ++- web/handler_test.go | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/web/handler.go b/web/handler.go index ae3ebc03..2b083492 100644 --- a/web/handler.go +++ b/web/handler.go @@ -97,7 +97,8 @@ func (u *webHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { w.Header().Set(k, v) } - if len(c.Users) == 0 { + // If OPTIONS method or none users configured then skip auth check + if r.Method == http.MethodOptions || len(c.Users) == 0 { u.handler.ServeHTTP(w, r) return } diff --git a/web/handler_test.go b/web/handler_test.go index 9bd6a506..fc84a862 100644 --- a/web/handler_test.go +++ b/web/handler_test.go @@ -172,3 +172,47 @@ func TestHTTPHeaders(t *testing.T) { } } } + +// TestBasicAuthIsNotNeededForMethodOptions validates that OPTIONS method is always allowed +func TestBasicAuthIsNotNeededForMethodOptions(t *testing.T) { + server := &http.Server{ + Addr: port, + Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + if r.Method == http.MethodOptions { + w.Header().Set("Access-Control-Allow-Origin", "https://example.com:8080") + w.Header().Set("Access-Control-Expose-Headers", "Date") + w.Header().Set("Access-Control-Allow-Methods", "GET,OPTIONS,POST") + w.Header().Set("Access-Control-Allow-Headers", "Accept,Authorization,Date,Content-Type,Origin") + w.Header().Set("Access-Control-Allow-Credentials", "true") + w.WriteHeader(http.StatusNoContent) + } + w.WriteHeader(http.StatusMethodNotAllowed) + }), + } + + done := make(chan struct{}) + t.Cleanup(func() { + if err := server.Shutdown(context.Background()); err != nil { + t.Fatal(err) + } + <-done + }) + + go func() { + ListenAndServe(server, "testdata/web_config_users_noTLS.good.yml", testlogger) + close(done) + }() + + client := &http.Client{} + req, err := http.NewRequest("OPTIONS", "http://localhost"+port, nil) + if err != nil { + t.Fatal(err) + } + r, err := client.Do(req) + if err != nil { + t.Fatal(err) + } + if r.StatusCode != 204 { + t.Fatalf("bad return code, expected %d, got %d", 204, r.StatusCode) + } +}