package parser import ( "errors" ociscfg "github.com/owncloud/ocis/v2/ocis-pkg/config" "github.com/owncloud/ocis/v2/ocis-pkg/config/envdecode" "github.com/owncloud/ocis/v2/ocis-pkg/shared" "github.com/owncloud/ocis/v2/services/web/pkg/config" "github.com/owncloud/ocis/v2/services/web/pkg/config/defaults" ) // ParseConfig loads configuration from known paths. func ParseConfig(cfg *config.Config) error { err := ociscfg.BindSourcesToStructs(cfg.Service.Name, cfg) if err != nil { return err } defaults.EnsureDefaults(cfg) // load all env variables relevant to the config in the current context. if err := envdecode.Decode(cfg); err != nil { // no environment variable set for this config is an expected "error" if !errors.Is(err, envdecode.ErrNoTargetFieldsAreSet) { return err } } // apps are a special case, as they are not part of the main config, but are loaded from a separate config file err = ociscfg.BindSourcesToStructs("apps", &cfg.Apps) if err != nil { return err } defaults.Sanitize(cfg) return Validate(cfg) } // Validate validates the configuration func Validate(cfg *config.Config) error { if cfg.TokenManager.JWTSecret == "" { return shared.MissingJWTTokenError(cfg.Service.Name) } return nil }