ergo/irc/config.go

68 lines
1.1 KiB
Go
Raw Normal View History

2014-02-09 16:53:42 +01:00
package irc
import (
"code.google.com/p/gcfg"
"errors"
2014-02-24 07:21:39 +01:00
"log"
2014-02-09 16:53:42 +01:00
)
type PassConfig struct {
Password string
}
func (conf *PassConfig) PasswordBytes() []byte {
bytes, err := DecodePassword(conf.Password)
2014-02-24 07:21:39 +01:00
if err != nil {
2014-03-06 08:07:55 +01:00
log.Fatal("decode password error: ", err)
2014-02-24 07:21:39 +01:00
}
return bytes
}
2014-02-09 16:53:42 +01:00
type Config struct {
Server struct {
PassConfig
Database string
Listen []string
MOTD string
Name string
}
Operator map[string]*PassConfig
2014-02-09 19:07:40 +01:00
Debug struct {
Net bool
Client bool
Channel bool
Server bool
}
2014-02-24 07:21:39 +01:00
}
func (conf *Config) Operators() map[string][]byte {
operators := make(map[string][]byte)
for name, opConf := range conf.Operator {
operators[name] = opConf.PasswordBytes()
}
return operators
}
2014-02-24 07:21:39 +01:00
func LoadConfig(filename string) (config *Config, err error) {
2014-02-09 16:53:42 +01:00
config = &Config{}
err = gcfg.ReadFileInto(config, filename)
2014-02-09 16:53:42 +01:00
if err != nil {
return
}
if config.Server.Name == "" {
err = errors.New("server.name missing")
return
}
if config.Server.Database == "" {
err = errors.New("server.database missing")
return
}
if len(config.Server.Listen) == 0 {
err = errors.New("server.listen missing")
2014-02-10 22:52:28 +01:00
return
}
2014-02-09 16:53:42 +01:00
return
}