mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Option to allow auto-login during development.
This commit is contained in:
parent
cf553ce812
commit
c09468e135
2 changed files with 12 additions and 3 deletions
|
@ -63,6 +63,7 @@ type configOptions struct {
|
||||||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||||
DevLogSourceLine bool
|
DevLogSourceLine bool
|
||||||
DevAutoCreateAdminPassword string
|
DevAutoCreateAdminPassword string
|
||||||
|
DevAutoLoginUsername string
|
||||||
DevPreCacheAlbumArtwork bool
|
DevPreCacheAlbumArtwork bool
|
||||||
DevFastAccessCoverArt bool
|
DevFastAccessCoverArt bool
|
||||||
DevOldCacheLayout bool
|
DevOldCacheLayout bool
|
||||||
|
@ -220,6 +221,7 @@ func init() {
|
||||||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||||
viper.SetDefault("devlogsourceline", false)
|
viper.SetDefault("devlogsourceline", false)
|
||||||
viper.SetDefault("devautocreateadminpassword", "")
|
viper.SetDefault("devautocreateadminpassword", "")
|
||||||
|
viper.SetDefault("devautologinusername", "")
|
||||||
viper.SetDefault("devprecachealbumartwork", false)
|
viper.SetDefault("devprecachealbumartwork", false)
|
||||||
viper.SetDefault("devoldcachelayout", false)
|
viper.SetDefault("devoldcachelayout", false)
|
||||||
viper.SetDefault("devFastAccessCoverArt", false)
|
viper.SetDefault("devFastAccessCoverArt", false)
|
||||||
|
|
|
@ -207,6 +207,10 @@ func UsernameFromReverseProxyHeader(r *http.Request) string {
|
||||||
return username
|
return username
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func UsernameFromConfig(r *http.Request) string {
|
||||||
|
return conf.Server.DevAutoLoginUsername
|
||||||
|
}
|
||||||
|
|
||||||
func contextWithUser(ctx context.Context, ds model.DataStore, username string) (context.Context, error) {
|
func contextWithUser(ctx context.Context, ds model.DataStore, username string) (context.Context, error) {
|
||||||
user, err := ds.User(ctx).FindByUsername(username)
|
user, err := ds.User(ctx).FindByUsername(username)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
@ -235,7 +239,7 @@ func authenticateRequest(ds model.DataStore, r *http.Request, findUsernameFns ..
|
||||||
func Authenticator(ds model.DataStore) func(next http.Handler) http.Handler {
|
func Authenticator(ds model.DataStore) func(next http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
ctx, err := authenticateRequest(ds, r, UsernameFromToken, UsernameFromReverseProxyHeader)
|
ctx, err := authenticateRequest(ds, r, UsernameFromConfig, UsernameFromToken, UsernameFromReverseProxyHeader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = rest.RespondWithError(w, http.StatusUnauthorized, "Not authenticated")
|
_ = rest.RespondWithError(w, http.StatusUnauthorized, "Not authenticated")
|
||||||
return
|
return
|
||||||
|
@ -268,9 +272,12 @@ func JWTRefresher(next http.Handler) http.Handler {
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleLoginFromHeaders(ds model.DataStore, r *http.Request) map[string]interface{} {
|
func handleLoginFromHeaders(ds model.DataStore, r *http.Request) map[string]interface{} {
|
||||||
username := UsernameFromReverseProxyHeader(r)
|
username := UsernameFromConfig(r)
|
||||||
if username == "" {
|
if username == "" {
|
||||||
return nil
|
username = UsernameFromReverseProxyHeader(r)
|
||||||
|
if username == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
userRepo := ds.User(r.Context())
|
userRepo := ds.User(r.Context())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue