Allow BaseURL to contain full server url, including scheme and host. Fix #2183

This commit is contained in:
Deluan 2023-02-15 21:13:38 -05:00
parent aac6e2cb07
commit 10108c63c9
8 changed files with 102 additions and 17 deletions

View file

@ -2,6 +2,7 @@ package conf
import (
"fmt"
"net/url"
"os"
"path/filepath"
"runtime"
@ -28,6 +29,9 @@ type configOptions struct {
ScanSchedule string
SessionTimeout time.Duration
BaseURL string
BasePath string
BaseHost string
BaseScheme string
UILoginBackgroundURL string
UIWelcomeMessage string
MaxSidebarPlaylists int
@ -153,6 +157,19 @@ func Load() {
os.Exit(1)
}
if Server.BaseURL != "" {
u, err := url.Parse(Server.BaseURL)
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "FATAL: Invalid BaseURL %s: %s\n", Server.BaseURL, err.Error())
os.Exit(1)
}
Server.BasePath = u.Path
u.Path = ""
u.RawQuery = ""
Server.BaseHost = u.Host
Server.BaseScheme = u.Scheme
}
// Print current configuration if log level is Debug
if log.CurrentLevel() >= log.LevelDebug {
prettyConf := pretty.Sprintf("Loaded configuration from '%s': %# v", Server.ConfigFile, Server)