mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 09:51:42 -05:00
109 lines
2.8 KiB
Go
109 lines
2.8 KiB
Go
package config
|
|
|
|
import (
|
|
graphExplorer "github.com/owncloud/ocis-graph-explorer/pkg/config"
|
|
graph "github.com/owncloud/ocis-graph/pkg/config"
|
|
hello "github.com/owncloud/ocis-hello/pkg/config"
|
|
accounts "github.com/owncloud/ocis/accounts/pkg/config"
|
|
glauth "github.com/owncloud/ocis/glauth/pkg/config"
|
|
konnectd "github.com/owncloud/ocis/konnectd/pkg/config"
|
|
phoenix "github.com/owncloud/ocis/ocis-phoenix/pkg/config"
|
|
ocs "github.com/owncloud/ocis/ocs/pkg/config"
|
|
proxy "github.com/owncloud/ocis/proxy/pkg/config"
|
|
settings "github.com/owncloud/ocis/settings/pkg/config"
|
|
storage "github.com/owncloud/ocis/storage/pkg/config"
|
|
store "github.com/owncloud/ocis/store/pkg/config"
|
|
thumbnails "github.com/owncloud/ocis/thumbnails/pkg/config"
|
|
webdav "github.com/owncloud/ocis/webdav/pkg/config"
|
|
pman "github.com/refs/pman/pkg/config"
|
|
)
|
|
|
|
// Log defines the available logging configuration.
|
|
type Log struct {
|
|
Level string
|
|
Pretty bool
|
|
Color bool
|
|
}
|
|
|
|
// Debug defines the available debug configuration.
|
|
type Debug struct {
|
|
Addr string
|
|
Token string
|
|
Pprof bool
|
|
Zpages bool
|
|
}
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string
|
|
Root string
|
|
}
|
|
|
|
// GRPC defines the available grpc configuration.
|
|
type GRPC struct {
|
|
Addr string
|
|
}
|
|
|
|
// Tracing defines the available tracing configuration.
|
|
type Tracing struct {
|
|
Enabled bool
|
|
Type string
|
|
Endpoint string
|
|
Collector string
|
|
Service string
|
|
}
|
|
|
|
// TokenManager is the config for using the reva token manager
|
|
type TokenManager struct {
|
|
JWTSecret string
|
|
}
|
|
|
|
// Config combines all available configuration parts.
|
|
type Config struct {
|
|
File string
|
|
Registry string
|
|
Log Log
|
|
Debug Debug
|
|
HTTP HTTP
|
|
GRPC GRPC
|
|
Tracing Tracing
|
|
TokenManager TokenManager
|
|
|
|
Accounts *accounts.Config
|
|
Graph *graph.Config
|
|
GraphExplorer *graphExplorer.Config
|
|
GLAuth *glauth.Config
|
|
Hello *hello.Config
|
|
Konnectd *konnectd.Config
|
|
OCS *ocs.Config
|
|
Phoenix *phoenix.Config
|
|
Proxy *proxy.Config
|
|
Storage *storage.Config
|
|
Thumbnails *thumbnails.Config
|
|
WebDAV *webdav.Config
|
|
Settings *settings.Config
|
|
Store *store.Config
|
|
Runtime *pman.Config
|
|
}
|
|
|
|
// New initializes a new configuration with or without defaults.
|
|
func New() *Config {
|
|
return &Config{
|
|
Accounts: accounts.New(),
|
|
Graph: graph.New(),
|
|
GraphExplorer: graphExplorer.New(),
|
|
Hello: hello.New(),
|
|
Konnectd: konnectd.New(),
|
|
OCS: ocs.New(),
|
|
Phoenix: phoenix.New(),
|
|
WebDAV: webdav.New(),
|
|
Storage: storage.New(),
|
|
GLAuth: glauth.New(),
|
|
Proxy: proxy.New(),
|
|
Thumbnails: thumbnails.New(),
|
|
Settings: settings.New(),
|
|
Store: store.New(),
|
|
Runtime: pman.NewConfig(),
|
|
}
|
|
}
|