Documentation
¶
Index ¶
- type DeployedConfig
- type Manager
- func (m *Manager) Deploy(outputPath string) error
- func (m *Manager) Get(name string) (interface{}, error)
- func (m *Manager) GetArray(name string) []string
- func (m *Manager) GetBool(name string) bool
- func (m *Manager) GetInt(name string) int
- func (m *Manager) GetSettings() map[string]*Setting
- func (m *Manager) GetString(name string) string
- func (m *Manager) Load() error
- func (m *Manager) Reset(name string, userID int) error
- func (m *Manager) Set(name, value string, userID int) error
- type Option
- type Setting
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeployedConfig ¶
type DeployedConfig struct {
Version string `yaml:"version"`
Timestamp time.Time `yaml:"timestamp"`
Settings map[string]interface{} `yaml:"settings"`
Metadata map[string]interface{} `yaml:"metadata"`
}
DeployedConfig represents the deployed configuration file structure
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager handles system configuration loading and deployment
func NewManager ¶
NewManager creates a new configuration manager
func (*Manager) GetSettings ¶
GetSettings returns all settings for UI display
type Setting ¶
type Setting struct {
ID int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
IsInvisible bool `json:"is_invisible"`
IsReadonly bool `json:"is_readonly"`
IsRequired bool `json:"is_required"`
IsValid bool `json:"is_valid"`
HasConfigLevel int `json:"has_configlevel"`
UserModificationPossible bool `json:"user_modification_possible"`
UserModificationActive bool `json:"user_modification_active"`
XMLContentRaw string `json:"xml_content_raw"`
XMLContentParsed string `json:"xml_content_parsed"`
XMLFilename string `json:"xml_filename"`
EffectiveValue string `json:"effective_value"`
CreateTime time.Time `json:"create_time"`
ChangeTime time.Time `json:"change_time"`
CreateBy int `json:"create_by"`
ChangeBy int `json:"change_by"`
// Parsed configuration data
Type string `json:"type"`
Default interface{} `json:"default"`
Options []Option `json:"options,omitempty"`
Min *int `json:"min,omitempty"`
Max *int `json:"max,omitempty"`
Validation string `json:"validation,omitempty"`
DependsOn string `json:"depends_on,omitempty"`
DependsValue string `json:"depends_value,omitempty"`
}
Setting represents a configuration setting
Click to show internal directories.
Click to hide internal directories.