a8fd33d4ed
Nine golangci-lint failures accumulated across M7 #352, #372, and
6d1709c that were never surfaced because test-go never ran green long
enough to reach the lint step. The first push to land cleanly through
vet (the M7 #363 slice) ran lint and exposed them.
- errcheck: discard the error on defer Close() in collage.go,
collage_test.go, and server_test.go.
- gofmt -s: re-run on config.go and playlists_test.go.
- goimports: move the stray "time" import from the local-module group
to stdlib in server_test.go.
- revive unused-parameter: rename ctx to _ on stubScanner.Scan and
fakeLidarrUnmonitorer.UnmonitorTrack (test stubs); on
tracks.Service's adminID, add //nolint:revive directive rather than
renaming because the HTTP handler passes admin.ID (a real authed-user
UUID) and the existing comment already flags it as reserved for the
audit-log follow-up.
211 lines
6.4 KiB
Go
211 lines
6.4 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type Config struct {
|
|
Server ServerConfig `yaml:"server"`
|
|
Storage StorageConfig `yaml:"storage"`
|
|
Database DatabaseConfig `yaml:"database"`
|
|
Log LogConfig `yaml:"log"`
|
|
Auth AuthConfig `yaml:"auth"`
|
|
Library LibraryConfig `yaml:"library"`
|
|
Subsonic SubsonicConfig `yaml:"subsonic"`
|
|
Events EventsConfig `yaml:"events"`
|
|
Recommendation RecommendationConfig `yaml:"recommendation"`
|
|
Branding BrandingConfig `yaml:"branding"`
|
|
}
|
|
|
|
type ServerConfig struct {
|
|
Address string `yaml:"address"`
|
|
}
|
|
|
|
// StorageConfig points at on-disk locations the server uses for cached
|
|
// runtime artifacts. Currently:
|
|
// - DataDir hosts <DataDir>/playlist_covers/{playlist_id}.jpg (M7 #352).
|
|
//
|
|
// More entries may grow here (e.g., transcode cache) without breaking
|
|
// existing layouts.
|
|
type StorageConfig struct {
|
|
// DataDir is the root for cached artifacts. Default: "./data" (relative
|
|
// to the working directory). Operators in production should set an
|
|
// absolute path persistent across restarts.
|
|
DataDir string `yaml:"data_dir"`
|
|
}
|
|
|
|
// BrandingConfig drives per-instance UI labelling: the app name shown
|
|
// in the header / tab title and the description used in OG share-preview
|
|
// metadata. Both default to sensible values when unset.
|
|
type BrandingConfig struct {
|
|
AppName string `yaml:"app_name"`
|
|
Description string `yaml:"description"`
|
|
}
|
|
|
|
type DatabaseConfig struct {
|
|
URL string `yaml:"url"`
|
|
}
|
|
|
|
type LogConfig struct {
|
|
Level string `yaml:"level"`
|
|
Format string `yaml:"format"`
|
|
}
|
|
|
|
type AuthConfig struct {
|
|
AdminBootstrap AdminBootstrapConfig `yaml:"admin_bootstrap"`
|
|
}
|
|
|
|
// AdminBootstrapConfig drives the one-shot admin creation on an empty users
|
|
// table. Username is required to enable the flow; leaving Password blank asks
|
|
// the server to generate a random one and log it to stderr.
|
|
type AdminBootstrapConfig struct {
|
|
Username string `yaml:"username"`
|
|
Password string `yaml:"password"`
|
|
}
|
|
|
|
type LibraryConfig struct {
|
|
ScanPaths []string `yaml:"scan_paths"`
|
|
ScanOnStartup bool `yaml:"scan_on_startup"`
|
|
}
|
|
|
|
// SubsonicConfig controls wire-format concessions on the /rest/* surface.
|
|
// AllowPlaintextPassword gates the `p=` parameter; the recommended posture is
|
|
// to leave it disabled and require apiKey (OpenSubsonic) or t+s.
|
|
type SubsonicConfig struct {
|
|
AllowPlaintextPassword bool `yaml:"allow_plaintext_password"`
|
|
}
|
|
|
|
// EventsConfig governs play-event ingestion: session window, skip rule.
|
|
type EventsConfig struct {
|
|
SessionTimeoutMinutes int `yaml:"session_timeout_minutes"`
|
|
SkipMaxCompletionRatio float64 `yaml:"skip_max_completion_ratio"`
|
|
SkipMaxDurationPlayedMs int `yaml:"skip_max_duration_played_ms"`
|
|
}
|
|
|
|
// RecommendationConfig governs the M3 weighted-shuffle scoring (spec §6).
|
|
// All weights are operator-tunable; defaults match the spec recommendations.
|
|
type RecommendationConfig struct {
|
|
BaseWeight float64 `yaml:"base_weight"`
|
|
LikeBoost float64 `yaml:"like_boost"`
|
|
RecencyWeight float64 `yaml:"recency_weight"`
|
|
SkipPenalty float64 `yaml:"skip_penalty"`
|
|
JitterMagnitude float64 `yaml:"jitter_magnitude"`
|
|
ContextWeight float64 `yaml:"context_weight"`
|
|
SimilarityWeight float64 `yaml:"similarity_weight"`
|
|
RecentlyPlayedHours int `yaml:"recently_played_hours"`
|
|
RadioSize int `yaml:"radio_size"`
|
|
RadioSizeMax int `yaml:"radio_size_max"`
|
|
}
|
|
|
|
func Default() Config {
|
|
return Config{
|
|
Server: ServerConfig{Address: ":4533"},
|
|
Storage: StorageConfig{DataDir: "./data"},
|
|
Database: DatabaseConfig{URL: ""},
|
|
Log: LogConfig{Level: "info", Format: "text"},
|
|
Branding: BrandingConfig{
|
|
AppName: "Minstrel",
|
|
Description: "Self-hosted music server with Subsonic compatibility, smart shuffle, and Lidarr integration.",
|
|
},
|
|
Auth: AuthConfig{
|
|
AdminBootstrap: AdminBootstrapConfig{
|
|
Username: "admin",
|
|
},
|
|
},
|
|
Events: EventsConfig{
|
|
SessionTimeoutMinutes: 30,
|
|
SkipMaxCompletionRatio: 0.5,
|
|
SkipMaxDurationPlayedMs: 30000,
|
|
},
|
|
Recommendation: RecommendationConfig{
|
|
BaseWeight: 1.0,
|
|
LikeBoost: 2.0,
|
|
RecencyWeight: 1.0,
|
|
SkipPenalty: 1.0,
|
|
JitterMagnitude: 0.1,
|
|
ContextWeight: 2.0,
|
|
SimilarityWeight: 2.0,
|
|
RecentlyPlayedHours: 1,
|
|
RadioSize: 50,
|
|
RadioSizeMax: 200,
|
|
},
|
|
}
|
|
}
|
|
|
|
func Load(path string) (Config, error) {
|
|
cfg := Default()
|
|
if path != "" {
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
if !os.IsNotExist(err) {
|
|
return cfg, fmt.Errorf("read config %q: %w", path, err)
|
|
}
|
|
} else if err := yaml.Unmarshal(data, &cfg); err != nil {
|
|
return cfg, fmt.Errorf("parse config %q: %w", path, err)
|
|
}
|
|
}
|
|
applyEnv(&cfg)
|
|
return cfg, nil
|
|
}
|
|
|
|
func applyEnv(cfg *Config) {
|
|
if v, ok := os.LookupEnv("MINSTREL_SERVER_ADDRESS"); ok {
|
|
cfg.Server.Address = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_STORAGE_DATA_DIR"); ok {
|
|
cfg.Storage.DataDir = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_DATABASE_URL"); ok {
|
|
cfg.Database.URL = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_LOG_LEVEL"); ok {
|
|
cfg.Log.Level = strings.ToLower(v)
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_LOG_FORMAT"); ok {
|
|
cfg.Log.Format = strings.ToLower(v)
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_BRANDING_APP_NAME"); ok && v != "" {
|
|
cfg.Branding.AppName = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_BRANDING_DESCRIPTION"); ok && v != "" {
|
|
cfg.Branding.Description = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_AUTH_ADMIN_USERNAME"); ok {
|
|
cfg.Auth.AdminBootstrap.Username = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_AUTH_ADMIN_PASSWORD"); ok {
|
|
cfg.Auth.AdminBootstrap.Password = v
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_LIBRARY_SCAN_PATHS"); ok {
|
|
cfg.Library.ScanPaths = splitPaths(v)
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_LIBRARY_SCAN_ON_STARTUP"); ok {
|
|
if b, err := strconv.ParseBool(v); err == nil {
|
|
cfg.Library.ScanOnStartup = b
|
|
}
|
|
}
|
|
if v, ok := os.LookupEnv("MINSTREL_SUBSONIC_ALLOW_PLAINTEXT_PASSWORD"); ok {
|
|
if b, err := strconv.ParseBool(v); err == nil {
|
|
cfg.Subsonic.AllowPlaintextPassword = b
|
|
}
|
|
}
|
|
}
|
|
|
|
// splitPaths splits a colon-separated path list, dropping empty entries.
|
|
// Colon matches PATH-style Unix conventions; Minstrel ships Linux-only.
|
|
func splitPaths(s string) []string {
|
|
parts := strings.Split(s, ":")
|
|
out := parts[:0]
|
|
for _, p := range parts {
|
|
if p != "" {
|
|
out = append(out, p)
|
|
}
|
|
}
|
|
return out
|
|
}
|