ircd/irc/config.go

121 lines
2.4 KiB
Go
Raw Normal View History

2014-02-09 15:53:42 +00:00
package irc
import (
"crypto/tls"
"errors"
"io/ioutil"
2014-02-24 06:21:39 +00:00
"log"
"gopkg.in/yaml.v2"
2014-02-09 15:53:42 +00:00
)
type PassConfig struct {
Password string
}
// SSLListenConfig defines configuration options for listening on SSL
type SSLListenConfig struct {
Cert string
Key string
}
// Certificate returns the SSL certificate assicated with this SSLListenConfig
func (conf *SSLListenConfig) Config() (*tls.Config, error) {
cert, err := tls.LoadX509KeyPair(conf.Cert, conf.Key)
if err != nil {
return nil, errors.New("ssl cert+key: invalid pair")
}
return &tls.Config{
Certificates: []tls.Certificate{cert},
}, err
}
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 {
2016-04-12 05:44:00 +00:00
Network struct {
Name string
}
Server struct {
PassConfig
2016-04-12 05:44:00 +00:00
Name string
Database string
Listen []string
Wslisten string
2014-03-08 23:01:15 +00:00
Log string
MOTD string
}
SSLListener map[string]*SSLListenConfig
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
}
func (conf *Config) SSLListeners() map[Name]*tls.Config {
sslListeners := make(map[Name]*tls.Config)
for s, sslListenersConf := range conf.SSLListener {
config, err := sslListenersConf.Config()
if err != nil {
log.Fatal(err)
}
sslListeners[NewName(s)] = config
}
return sslListeners
}
2014-02-24 06:21:39 +00:00
func LoadConfig(filename string) (config *Config, err error) {
data, err := ioutil.ReadFile(filename)
2014-02-09 15:53:42 +00:00
if err != nil {
return nil, err
2014-02-09 15:53:42 +00:00
}
err = yaml.Unmarshal(data, &config)
if err != nil {
return nil, err
}
2016-04-12 05:44:00 +00:00
if config.Network.Name == "" {
return nil, errors.New("Network name missing")
}
if config.Server.Name == "" {
return nil, errors.New("Server name missing")
}
if config.Server.Database == "" {
return nil, errors.New("Server database missing")
}
if len(config.Server.Listen) == 0 {
return nil, errors.New("Server listening addresses missing")
2014-02-10 21:52:28 +00:00
}
return config, nil
2014-02-09 15:53:42 +00:00
}