mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
109 lines
2.9 KiB
Go
109 lines
2.9 KiB
Go
package server
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/1f349/lavender/database"
|
|
"github.com/julienschmidt/httprouter"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
type UserHandler func(rw http.ResponseWriter, req *http.Request, params httprouter.Params, auth UserAuth)
|
|
|
|
type UserAuth struct {
|
|
Subject string
|
|
DisplayName string
|
|
UserInfo UserInfoFields
|
|
}
|
|
|
|
func (u UserAuth) IsGuest() bool { return u.Subject == "" }
|
|
|
|
var ErrAuthHttpError = errors.New("auth http error")
|
|
|
|
func (h *HttpServer) RequireAdminAuthentication(next UserHandler) httprouter.Handle {
|
|
return h.RequireAuthentication(func(rw http.ResponseWriter, req *http.Request, params httprouter.Params, auth UserAuth) {
|
|
var roles string
|
|
if h.DbTx(rw, func(tx *database.Queries) (err error) {
|
|
roles, err = tx.GetUserRoles(req.Context(), auth.Subject)
|
|
return
|
|
}) {
|
|
return
|
|
}
|
|
if !HasRole(roles, "lavender:admin") {
|
|
http.Error(rw, "403 Forbidden", http.StatusForbidden)
|
|
return
|
|
}
|
|
next(rw, req, params, auth)
|
|
})
|
|
}
|
|
|
|
func (h *HttpServer) RequireAuthentication(next UserHandler) httprouter.Handle {
|
|
return h.OptionalAuthentication(func(rw http.ResponseWriter, req *http.Request, params httprouter.Params, auth UserAuth) {
|
|
if auth.IsGuest() {
|
|
redirectUrl := PrepareRedirectUrl("/login", req.URL)
|
|
http.Redirect(rw, req, redirectUrl.String(), http.StatusFound)
|
|
return
|
|
}
|
|
next(rw, req, params, auth)
|
|
})
|
|
}
|
|
|
|
func (h *HttpServer) OptionalAuthentication(next UserHandler) httprouter.Handle {
|
|
return func(rw http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
|
authUser, err := h.internalAuthenticationHandler(rw, req)
|
|
if err != nil {
|
|
if !errors.Is(err, ErrAuthHttpError) {
|
|
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
|
}
|
|
return
|
|
}
|
|
next(rw, req, params, authUser)
|
|
}
|
|
}
|
|
|
|
func (h *HttpServer) internalAuthenticationHandler(rw http.ResponseWriter, req *http.Request) (UserAuth, error) {
|
|
// Delete previous login data cookie
|
|
http.SetCookie(rw, &http.Cookie{
|
|
Name: "lavender-login-data",
|
|
Path: "/",
|
|
MaxAge: -1,
|
|
Secure: true,
|
|
SameSite: http.SameSiteLaxMode,
|
|
})
|
|
|
|
var u UserAuth
|
|
err := h.readLoginAccessCookie(rw, req, &u)
|
|
if err != nil {
|
|
// not logged in
|
|
return UserAuth{}, nil
|
|
}
|
|
return u, nil
|
|
}
|
|
|
|
func PrepareRedirectUrl(targetPath string, origin *url.URL) *url.URL {
|
|
// find start of query parameters in target path
|
|
n := strings.IndexByte(targetPath, '?')
|
|
v := url.Values{}
|
|
|
|
// parse existing query parameters
|
|
if n != -1 {
|
|
q, err := url.ParseQuery(targetPath[n+1:])
|
|
if err != nil {
|
|
panic("PrepareRedirectUrl: invalid hardcoded target path query parameters")
|
|
}
|
|
v = q
|
|
targetPath = targetPath[:n]
|
|
}
|
|
|
|
// add path of origin as a new query parameter
|
|
orig := origin.Path
|
|
if origin.RawQuery != "" || origin.ForceQuery {
|
|
orig += "?" + origin.RawQuery
|
|
}
|
|
if orig != "" {
|
|
v.Set("redirect", orig)
|
|
}
|
|
return &url.URL{Path: targetPath, RawQuery: v.Encode()}
|
|
}
|