69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
package settings
|
|
|
|
import (
|
|
"github.com/qdm12/gosettings"
|
|
"github.com/qdm12/gotree"
|
|
"github.com/qdm12/ss-server/pkg/tcpudp"
|
|
)
|
|
|
|
// Shadowsocks contains settings to configure the Shadowsocks server.
|
|
type Shadowsocks struct {
|
|
// Enabled is true if the server should be running.
|
|
// It defaults to false, and cannot be nil in the internal state.
|
|
Enabled *bool
|
|
// Settings are settings for the TCP+UDP server.
|
|
tcpudp.Settings
|
|
}
|
|
|
|
func (s Shadowsocks) validate() (err error) {
|
|
return s.Settings.Validate()
|
|
}
|
|
|
|
func (s *Shadowsocks) copy() (copied Shadowsocks) {
|
|
return Shadowsocks{
|
|
Enabled: gosettings.CopyPointer(s.Enabled),
|
|
Settings: s.Settings.Copy(),
|
|
}
|
|
}
|
|
|
|
// mergeWith merges the other settings into any
|
|
// unset field of the receiver settings object.
|
|
func (s *Shadowsocks) mergeWith(other Shadowsocks) {
|
|
s.Enabled = gosettings.MergeWithPointer(s.Enabled, other.Enabled)
|
|
s.Settings = s.Settings.MergeWith(other.Settings)
|
|
}
|
|
|
|
// overrideWith overrides fields of the receiver
|
|
// settings object with any field set in the other
|
|
// settings.
|
|
func (s *Shadowsocks) overrideWith(other Shadowsocks) {
|
|
s.Enabled = gosettings.OverrideWithPointer(s.Enabled, other.Enabled)
|
|
s.Settings.OverrideWith(other.Settings)
|
|
}
|
|
|
|
func (s *Shadowsocks) setDefaults() {
|
|
s.Enabled = gosettings.DefaultPointer(s.Enabled, false)
|
|
s.Settings.SetDefaults()
|
|
}
|
|
|
|
func (s Shadowsocks) String() string {
|
|
return s.toLinesNode().String()
|
|
}
|
|
|
|
func (s Shadowsocks) toLinesNode() (node *gotree.Node) {
|
|
node = gotree.New("Shadowsocks server settings:")
|
|
|
|
node.Appendf("Enabled: %s", gosettings.BoolToYesNo(s.Enabled))
|
|
if !*s.Enabled {
|
|
return node
|
|
}
|
|
|
|
// TODO have ToLinesNode in qdm12/ss-server
|
|
node.Appendf("Listening address: %s", *s.Address)
|
|
node.Appendf("Cipher: %s", s.CipherName)
|
|
node.Appendf("Password: %s", gosettings.ObfuscateKey(*s.Password))
|
|
node.Appendf("Log addresses: %s", gosettings.BoolToYesNo(s.LogAddresses))
|
|
|
|
return node
|
|
}
|