Skip to content
Snippets Groups Projects
Commit 4c07de52 authored by Christian Pointner's avatar Christian Pointner
Browse files

auth backend vs method

parent 416e584b
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ func Init(c *Config) (err error) {
}
func login(w http.ResponseWriter, r *http.Request) {
method := r.URL.Query().Get("method")
switch strings.ToLower(method) {
backend := r.URL.Query().Get("backend")
switch strings.ToLower(backend) {
case "oidc":
if auth.oidc == nil {
sendHTTPResponse(w, http.StatusBadRequest, HTTPResponse{Error: "OIDC authentication is not configured"})
......@@ -69,9 +69,9 @@ func login(w http.ResponseWriter, r *http.Request) {
}
auth.oidc.HandleLogin(w, r)
case "":
sendHTTPResponse(w, http.StatusNotImplemented, HTTPResponse{Error: "default/fallback authentication method has not been implemented yet"})
sendHTTPResponse(w, http.StatusNotImplemented, HTTPResponse{Error: "default/fallback authentication backend has not been implemented yet"})
default:
sendHTTPResponse(w, http.StatusBadRequest, HTTPResponse{Error: "invalid authentication method: " + method})
sendHTTPResponse(w, http.StatusBadRequest, HTTPResponse{Error: "invalid authentication backend: " + backend})
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment