remove callback error redirect

This commit is contained in:
Anish Mukherjee 2022-12-23 19:14:30 +05:30
parent 66efcf9eb3
commit fe930c3ca8

View file

@ -4,7 +4,6 @@ import (
"encoding/base64" "encoding/base64"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt"
"net/http" "net/http"
"strings" "strings"
@ -127,13 +126,7 @@ func HandleAuthCallback(w http.ResponseWriter, r *http.Request) {
// oauth // oauth
func HandleAuthLogin(w http.ResponseWriter, r *http.Request) { func HandleAuthLogin(w http.ResponseWriter, r *http.Request) {
if auth_provider == nil { if auth_provider == nil {
var referer = r.Header.Get("referer") handleOauthNotConfigured(w)
if referer != "" {
http.Redirect(w, r, referer+"login?oauth=callback-error", http.StatusTemporaryRedirect)
return
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
_, _ = fmt.Fprintln(w, oauthNotConfigured)
return return
} }
var functions = getCurrentAuthFunctions() var functions = getCurrentAuthFunctions()