ircd/irc/config.go

77 lines
1.4 KiB
Go
Raw Normal View History

2014-02-09 15:53:42 +00:00
package irc
import (
"gopkg.in/gcfg.v1"
"errors"
2014-02-24 06:21:39 +00:00
"log"
2014-02-09 15:53:42 +00:00
)
type PassConfig struct {
Password string
}
func (conf *PassConfig) PasswordBytes() []byte {
bytes, err := DecodePassword(conf.Password)
2014-02-24 06:21:39 +00:00
if err != nil {
2014-03-06 07:07:55 +00:00
log.Fatal("decode password error: ", err)
2014-02-24 06:21:39 +00:00
}
return bytes
}
2014-02-09 15:53:42 +00:00
type Config struct {
Server struct {
PassConfig
Database string
Listen []string
Wslisten string
2014-03-08 23:01:15 +00:00
Log string
MOTD string
Name string
}
Operator map[string]*PassConfig
2014-03-13 08:55:46 +00:00
Theater map[string]*PassConfig
2014-02-24 06:21:39 +00:00
}
2014-03-09 20:45:36 +00:00
func (conf *Config) Operators() map[Name][]byte {
operators := make(map[Name][]byte)
for name, opConf := range conf.Operator {
2014-03-09 20:45:36 +00:00
operators[NewName(name)] = opConf.PasswordBytes()
}
return operators
}
2014-03-13 08:55:46 +00:00
func (conf *Config) Theaters() map[Name][]byte {
theaters := make(map[Name][]byte)
for s, theaterConf := range conf.Theater {
name := NewName(s)
if !name.IsChannel() {
log.Fatal("config uses a non-channel for a theater!")
}
theaters[name] = theaterConf.PasswordBytes()
}
return theaters
}
2014-02-24 06:21:39 +00:00
func LoadConfig(filename string) (config *Config, err error) {
2014-02-09 15:53:42 +00:00
config = &Config{}
err = gcfg.ReadFileInto(config, filename)
2014-02-09 15:53:42 +00: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 21:52:28 +00:00
return
}
2014-02-09 15:53:42 +00:00
return
}