mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-01-07 12:24:26 +00:00
Some checks failed
Build , Vet Test, and Lint / Run Vet Tests (1.23.x) (push) Successful in -24m8s
Build , Vet Test, and Lint / Lint Code (push) Successful in -24m1s
Build , Vet Test, and Lint / Run Vet Tests (1.24.x) (push) Successful in 3m8s
Tests / Unit Tests (push) Successful in -25m22s
Build , Vet Test, and Lint / Build (push) Successful in -25m1s
Tests / Integration Tests (push) Failing after 1m38s
- Use indexing instead of range value to prevent 208 byte copies per iteration
108 lines
2.9 KiB
Go
108 lines
2.9 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ApplyGlobalDefaults applies global server defaults to this instance
|
|
// Called for instances that don't specify their own timeout values
|
|
func (sic *ServerInstanceConfig) ApplyGlobalDefaults(globals ServersConfig) {
|
|
if sic.ShutdownTimeout == nil && globals.ShutdownTimeout > 0 {
|
|
t := globals.ShutdownTimeout
|
|
sic.ShutdownTimeout = &t
|
|
}
|
|
if sic.DrainTimeout == nil && globals.DrainTimeout > 0 {
|
|
t := globals.DrainTimeout
|
|
sic.DrainTimeout = &t
|
|
}
|
|
if sic.ReadTimeout == nil && globals.ReadTimeout > 0 {
|
|
t := globals.ReadTimeout
|
|
sic.ReadTimeout = &t
|
|
}
|
|
if sic.WriteTimeout == nil && globals.WriteTimeout > 0 {
|
|
t := globals.WriteTimeout
|
|
sic.WriteTimeout = &t
|
|
}
|
|
if sic.IdleTimeout == nil && globals.IdleTimeout > 0 {
|
|
t := globals.IdleTimeout
|
|
sic.IdleTimeout = &t
|
|
}
|
|
}
|
|
|
|
// Validate validates the ServerInstanceConfig
|
|
func (sic *ServerInstanceConfig) Validate() error {
|
|
if sic.Name == "" {
|
|
return fmt.Errorf("server instance name cannot be empty")
|
|
}
|
|
if sic.Port <= 0 || sic.Port > 65535 {
|
|
return fmt.Errorf("invalid port: %d (must be 1-65535)", sic.Port)
|
|
}
|
|
|
|
// Validate TLS options are mutually exclusive
|
|
tlsCount := 0
|
|
if sic.SSLCert != "" || sic.SSLKey != "" {
|
|
tlsCount++
|
|
}
|
|
if sic.SelfSignedSSL {
|
|
tlsCount++
|
|
}
|
|
if sic.AutoTLS {
|
|
tlsCount++
|
|
}
|
|
if tlsCount > 1 {
|
|
return fmt.Errorf("server '%s': only one TLS option can be enabled", sic.Name)
|
|
}
|
|
|
|
// If using certificate files, both must be provided
|
|
if (sic.SSLCert != "" && sic.SSLKey == "") || (sic.SSLCert == "" && sic.SSLKey != "") {
|
|
return fmt.Errorf("server '%s': both ssl_cert and ssl_key must be provided", sic.Name)
|
|
}
|
|
|
|
// If using AutoTLS, domains must be specified
|
|
if sic.AutoTLS && len(sic.AutoTLSDomains) == 0 {
|
|
return fmt.Errorf("server '%s': auto_tls_domains must be specified when auto_tls is enabled", sic.Name)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the ServersConfig
|
|
func (sc *ServersConfig) Validate() error {
|
|
if len(sc.Instances) == 0 {
|
|
return fmt.Errorf("at least one server instance must be configured")
|
|
}
|
|
|
|
if sc.DefaultServer != "" {
|
|
if _, ok := sc.Instances[sc.DefaultServer]; !ok {
|
|
return fmt.Errorf("default server '%s' not found in instances", sc.DefaultServer)
|
|
}
|
|
}
|
|
|
|
// Validate each instance
|
|
for name := range sc.Instances {
|
|
instance := sc.Instances[name]
|
|
if instance.Name != name {
|
|
return fmt.Errorf("server instance name mismatch: key='%s', name='%s'", name, instance.Name)
|
|
}
|
|
if err := instance.Validate(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// GetDefault returns the default server instance configuration
|
|
func (sc *ServersConfig) GetDefault() (*ServerInstanceConfig, error) {
|
|
if sc.DefaultServer == "" {
|
|
return nil, fmt.Errorf("no default server configured")
|
|
}
|
|
|
|
instance, ok := sc.Instances[sc.DefaultServer]
|
|
if !ok {
|
|
return nil, fmt.Errorf("default server '%s' not found", sc.DefaultServer)
|
|
}
|
|
|
|
return &instance, nil
|
|
}
|