mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 01:41:21 -05:00
80 lines
3.0 KiB
Go
80 lines
3.0 KiB
Go
package config
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/shared"
|
|
)
|
|
|
|
// Config combines all available configuration parts.
|
|
type Config struct {
|
|
Commons *shared.Commons `yaml:"-"` // don't use this directly as configuration for a service
|
|
|
|
Service Service `yaml:"-"`
|
|
|
|
Tracing *Tracing `yaml:"tracing"`
|
|
Log *Log `yaml:"log"`
|
|
Debug Debug `yaml:"debug"`
|
|
|
|
HTTP HTTP `yaml:"http"`
|
|
|
|
Asset Asset `yaml:"asset"`
|
|
File string `yaml:"file" env:"WEB_UI_CONFIG"` // TODO: rename this to a more self explaining string
|
|
Web Web `yaml:"web"`
|
|
|
|
Context context.Context `yaml:"-"`
|
|
}
|
|
|
|
// Asset defines the available asset configuration.
|
|
type Asset struct {
|
|
Path string `yaml:"path" env:"WEB_ASSET_PATH"`
|
|
}
|
|
|
|
// WebConfig defines the available web configuration for a dynamically rendered config.json.
|
|
type WebConfig struct {
|
|
Server string `json:"server,omitempty" yaml:"server" env:"OCIS_URL;WEB_UI_CONFIG_SERVER"`
|
|
Theme string `json:"theme,omitempty" yaml:"theme" env:""`
|
|
Version string `json:"version,omitempty" yaml:"version" env:"WEB_UI_CONFIG_VERSION"`
|
|
OpenIDConnect OIDC `json:"openIdConnect,omitempty" yaml:"oids"`
|
|
Apps []string `json:"apps" yaml:"apps"`
|
|
ExternalApps []ExternalApp `json:"external_apps,omitempty" yaml:"external_apps"`
|
|
Options map[string]interface{} `json:"options,omitempty" yaml:"options"`
|
|
}
|
|
|
|
// OIDC defines the available oidc configuration
|
|
type OIDC struct {
|
|
MetadataURL string `json:"metadata_url,omitempty" yaml:"metadata_url" env:"WEB_OIDC_METADATA_URL"`
|
|
Authority string `json:"authority,omitempty" yaml:"authority" env:"OCIS_URL;OCIS_OIDC_ISSUER;WEB_OIDC_AUTHORITY" desc:"URL of the OIDC issuer. It defaults to URL of the builtin IDP."`
|
|
ClientID string `json:"client_id,omitempty" yaml:"client_id" env:"WEB_OIDC_CLIENT_ID"`
|
|
ResponseType string `json:"response_type,omitempty" yaml:"response_type" env:"WEB_OIDC_RESPONSE_TYPE"`
|
|
Scope string `json:"scope,omitempty" yaml:"scope" env:"WEB_OIDC_SCOPE"`
|
|
}
|
|
|
|
// ExternalApp defines an external web app.
|
|
// {
|
|
// "name": "hello",
|
|
// "path": "http://localhost:9105/hello.js",
|
|
// "config": {
|
|
// "url": "http://localhost:9105"
|
|
// }
|
|
// }
|
|
type ExternalApp struct {
|
|
ID string `json:"id,omitempty" yaml:"id"`
|
|
Path string `json:"path,omitempty" yaml:"path"`
|
|
// Config is completely dynamic, because it depends on the extension
|
|
Config map[string]interface{} `json:"config,omitempty" yaml:"config"`
|
|
}
|
|
|
|
// ExternalAppConfig defines an external web app configuration.
|
|
type ExternalAppConfig struct {
|
|
URL string `json:"url,omitempty" yaml:"url" env:""`
|
|
}
|
|
|
|
// Web defines the available web configuration.
|
|
type Web struct {
|
|
Path string `yaml:"path" env:"WEB_UI_PATH"`
|
|
ThemeServer string `yaml:"theme_server" env:"OCIS_URL;WEB_UI_THEME_SERVER"` // used to build Theme in WebConfig
|
|
ThemePath string `yaml:"theme_path" env:"WEB_UI_THEME_PATH"` // used to build Theme in WebConfig
|
|
Config WebConfig `yaml:"config"`
|
|
}
|