9a7a65f05e
* auth provider mock interface * Auth Provider Options * Implement API Server Auth Package * Add weh utils * Add Login URL * Auth Provider Options * Add auth provider scope and setting token in cookie * Remove auth_login_url flag Co-authored-by: Asim Aslam <asim@aslam.me> Co-authored-by: Ben Toogood <ben@micro.mu>
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
package auth
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/micro/go-micro/v2/auth"
|
|
"github.com/micro/go-micro/v2/metadata"
|
|
)
|
|
|
|
// CombinedAuthHandler wraps a server and authenticates requests
|
|
func CombinedAuthHandler(h http.Handler) http.Handler {
|
|
return authHandler{
|
|
handler: h,
|
|
auth: auth.DefaultAuth,
|
|
}
|
|
}
|
|
|
|
type authHandler struct {
|
|
handler http.Handler
|
|
auth auth.Auth
|
|
}
|
|
|
|
const (
|
|
// BearerScheme is the prefix in the auth header
|
|
BearerScheme = "Bearer "
|
|
)
|
|
|
|
func (h authHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
loginURL := h.auth.Options().LoginURL
|
|
|
|
// Return if the user disabled auth on this endpoint
|
|
excludes := h.auth.Options().Exclude
|
|
if len(loginURL) > 0 {
|
|
excludes = append(excludes, loginURL)
|
|
}
|
|
for _, e := range excludes {
|
|
if e == req.URL.Path {
|
|
h.handler.ServeHTTP(w, req)
|
|
return
|
|
}
|
|
}
|
|
|
|
var token string
|
|
if header, ok := metadata.Get(req.Context(), "Authorization"); ok {
|
|
// Extract the auth token from the request
|
|
if strings.HasPrefix(header, BearerScheme) {
|
|
token = header[len(BearerScheme):]
|
|
}
|
|
} else {
|
|
// Get the token out the cookies if not provided in headers
|
|
if c, err := req.Cookie(auth.CookieName); err != nil && c != nil {
|
|
token = c.Value
|
|
}
|
|
}
|
|
|
|
// If the token is valid, allow the request
|
|
if _, err := h.auth.Verify(token); err == nil {
|
|
h.handler.ServeHTTP(w, req)
|
|
return
|
|
}
|
|
|
|
// If there is no auth login url set, 401
|
|
if loginURL == "" {
|
|
w.WriteHeader(401)
|
|
}
|
|
|
|
// Redirect to the login path
|
|
http.Redirect(w, req, loginURL, http.StatusTemporaryRedirect)
|
|
}
|