Documentation ¶
Overview ¶
Package config contains the implementation and data structures related to configurations and configuration (log and adapter config) parsing. If a new configuration is introduced to the adapter configuration file, the corresponding change needs to be added to the relevant data stucture as well.
Index ¶
- Constants
- Variables
- func ClearLogConfigInstance()
- func GetControlPlaneConnectedTenantDomain() string
- func GetDefaultVhost(environment string) (string, bool, error)
- func GetLogConfigPath() (string, error)
- func GetMgwHome() string
- func NewReceiver() chan string
- func NewSender() chan string
- func ReadLogConfigs() *pkgconf.LogConfig
- func SetConfig(conf *Config)
- func SetDefaultConfig()
- func UpdateLoggers()
- type APICtlUser
- type Config
- type JwtUser
- type KeyPair
- type WireLogConfig
Constants ¶
const DefaultGatewayName = "Default"
DefaultGatewayName represents the name of the default gateway
const DefaultGatewayVHost = "localhost"
DefaultGatewayVHost represents the default vhost of default gateway environment if it is not configured For /testtoken and /health check, if user not configured default env, we have no vhost
const ( //UnassignedAsDeprecated is used by the configurations which are deprecated. UnassignedAsDeprecated string = "unassigned-as-deprecated" )
Variables ¶
var (
C chan string // better to be interface{} type which could send any type of data.
)
C represents the channel to identify modifications added to the configuration file TODO: (VirajSalaka) remove this as unused.
Functions ¶
func ClearLogConfigInstance ¶
func ClearLogConfigInstance()
ClearLogConfigInstance removes the existing configuration. Then the log configuration can be re-initialized.
func GetControlPlaneConnectedTenantDomain ¶
func GetControlPlaneConnectedTenantDomain() string
GetControlPlaneConnectedTenantDomain returns the tenant domain of the user used to authenticate with event hub.
func GetDefaultVhost ¶
GetDefaultVhost returns the default vhost of given environment read from Adapter configurations. Store the configuration in a map, so do not want to loop through the config value Config.Adapter.VhostMapping
func GetLogConfigPath ¶
GetLogConfigPath returns the file location of the log-config path
func GetMgwHome ¶
func GetMgwHome() string
GetMgwHome reads the MGW_HOME environmental variable and returns the value. This represent the directory where the distribution is located. If the env variable is not present, the directory from which the executable is triggered will be assigned.
func NewReceiver ¶
func NewReceiver() chan string
NewReceiver initializes the channel if it is not created an returns
func NewSender ¶
func NewSender() chan string
NewSender initializes the channel if it is not created an returns
func ReadLogConfigs ¶
ReadLogConfigs implements adapter/proxy log-configuration read operation.The read operation will happen only once, hence the consistancy is ensured.
If the "MGW_HOME" variable is set, the log configuration file location would be picked relative to the variable's value ("/conf/log_config.toml"). otherwise, the "MGW_HOME" variable would be set to the directory from where the executable is called from.
Returns the log configuration object mapped from the configuration file during the startup.
func SetConfig ¶
func SetConfig(conf *Config)
SetConfig sets the given configuration to the adapter configuration
func SetDefaultConfig ¶
func SetDefaultConfig()
SetDefaultConfig sets the default configuration to the adapter configuration
Types ¶
type APICtlUser ¶
APICtlUser represents registered APICtl Users
type Config ¶
type Config struct { Adapter adapter Enforcer enforcer Envoy envoy `toml:"router"` ControlPlane controlPlane `toml:"controlPlane"` GlobalAdapter globalAdapter `toml:"globalAdapter"` Analytics analytics `toml:"analytics"` Tracing tracing }
Config represents the adapter configuration. It is created directly from the configuration toml file. Note :
Don't use toml tag for configuration properties as it may affect environment variable based config resolution.
func ReadConfigs ¶
ReadConfigs implements adapter configuration read operation. The read operation will happen only once, hence the consistancy is ensured.
If the "MGW_HOME" variable is set, the configuration file location would be picked relative to the variable's value ("/conf/config.toml"). otherwise, the "MGW_HOME" variable would be set to the directory from where the executable is called from.
Returns the configuration object that is initialized with default values. Changes to the default configuration object is achieved through the configuration file.
type WireLogConfig ¶
WireLogConfig is the config holder for wire logs
func GetWireLogConfig ¶
func GetWireLogConfig() *WireLogConfig
GetWireLogConfig converts the wire log configs read from the config file