mt-multiserver-proxy/config.go

151 lines
3.0 KiB
Go
Raw Normal View History

2021-09-06 02:03:27 -07:00
package proxy
import (
"encoding/json"
"log"
"os"
2021-09-05 03:18:22 -07:00
"sync"
)
2021-09-13 03:14:11 -07:00
const (
defaultCmdPrefix = ">"
defaultSendInterval = 0.09
defaultUserLimit = 10
defaultAuthBackend = "files"
2021-09-13 03:14:11 -07:00
defaultTelnetAddr = "[::1]:40010"
defaultBindAddr = ":40000"
defaultListInterval = 300
)
2021-09-05 03:18:22 -07:00
var config Config
var configMu sync.RWMutex
2021-09-10 03:47:19 -07:00
// A Config contains information from the configuration file
// that affects the way the proxy works.
type Config struct {
2021-09-05 10:19:27 -07:00
NoPlugins bool
CmdPrefix string
RequirePasswd bool
SendInterval float32
UserLimit int
AuthBackend string
2021-09-13 07:12:16 -07:00
NoTelnet bool
2021-09-12 03:03:20 -07:00
TelnetAddr string
BindAddr string
Servers []struct {
2022-04-20 13:48:54 -07:00
Name string
Addr string
Fallbacks []string
}
ForceDefaultSrv bool
2022-04-20 13:48:54 -07:00
FallbackServers []string
CSMRF struct {
2021-08-28 04:05:09 -07:00
NoCSMs bool
ChatMsgs bool
ItemDefs bool
NodeDefs bool
2021-08-28 04:02:27 -07:00
NoLimitMapRange bool
2021-08-28 04:05:09 -07:00
PlayerList bool
2021-08-27 11:40:07 -07:00
}
2021-09-07 10:13:12 -07:00
MapRange uint32
DropCSMRF bool
2021-09-07 10:13:12 -07:00
Groups map[string][]string
UserGroups map[string]string
2021-09-11 06:38:45 -07:00
List struct {
Enable bool
Addr string
Interval int
Name string
Desc string
URL string
Creative bool
Dmg bool
PvP bool
Game string
FarNames bool
Mods []string
}
}
2021-09-10 03:47:19 -07:00
// Conf returns a copy of the Config used by the proxy.
// Any modifications will not affect the original Config.
2021-09-06 02:03:27 -07:00
func Conf() Config {
2021-09-05 03:18:22 -07:00
configMu.RLock()
defer configMu.RUnlock()
return config
}
2022-04-21 03:31:05 -07:00
// FallbackServers returns a slice of server names that
2022-04-20 13:48:54 -07:00
// a server can fall back to.
func FallbackServers(server string) []string {
configMu.RLock()
defer configMu.RUnlock()
fallbacks := make([]string, 0)
2022-04-21 03:35:35 -07:00
conf := Conf()
2022-04-21 04:05:01 -07:00
2022-04-20 13:48:54 -07:00
// find server
2022-04-21 03:35:35 -07:00
for _, srv := range conf.Servers {
2022-04-20 13:48:54 -07:00
if srv.Name == server {
fallbacks = append(fallbacks, srv.Fallbacks...)
break
}
}
// global fallbacks
2022-04-21 03:35:35 -07:00
if len(conf.FallbackServers) == 0 {
if len(conf.Servers) == 0 {
return fallbacks
}
2022-04-21 04:05:01 -07:00
2022-04-21 03:35:35 -07:00
return append(fallbacks, conf.Servers[0].Name)
2022-04-20 13:48:54 -07:00
} else {
2022-04-21 03:35:35 -07:00
return append(fallbacks, conf.FallbackServers...)
2022-04-20 13:48:54 -07:00
}
}
2021-09-10 03:47:19 -07:00
// LoadConfig attempts to parse the configuration file.
// It leaves the config unchanged if there is an error
// and returns the error.
2021-09-06 02:03:27 -07:00
func LoadConfig() error {
2021-09-05 03:18:22 -07:00
configMu.Lock()
defer configMu.Unlock()
oldConf := config
2021-09-05 10:19:27 -07:00
config.CmdPrefix = defaultCmdPrefix
2021-09-05 03:18:22 -07:00
config.SendInterval = defaultSendInterval
config.UserLimit = defaultUserLimit
config.AuthBackend = defaultAuthBackend
2021-09-12 03:03:20 -07:00
config.TelnetAddr = defaultTelnetAddr
2021-09-05 03:18:22 -07:00
config.BindAddr = defaultBindAddr
2022-04-20 13:48:54 -07:00
config.FallbackServers = make([]string, 0)
2021-09-07 10:13:12 -07:00
config.Groups = make(map[string][]string)
config.UserGroups = make(map[string]string)
2021-09-11 06:55:10 -07:00
config.List.Interval = defaultListInterval
f, err := os.OpenFile(Path("config.json"), os.O_RDWR|os.O_CREATE, 0666)
if err != nil {
2021-09-05 03:18:22 -07:00
config = oldConf
return err
}
defer f.Close()
if fi, _ := f.Stat(); fi.Size() == 0 {
f.WriteString("{\n\t\n}\n")
f.Seek(0, os.SEEK_SET)
}
decoder := json.NewDecoder(f)
2021-09-05 03:18:22 -07:00
if err := decoder.Decode(&config); err != nil {
config = oldConf
return err
}
2021-09-13 03:14:11 -07:00
log.Print("load config")
return nil
}