2014-02-09 16:53:42 +01:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2016-04-13 12:45:09 +02:00
|
|
|
"crypto/tls"
|
2014-03-01 23:34:51 +01:00
|
|
|
"errors"
|
2016-04-12 15:00:09 +02:00
|
|
|
"io/ioutil"
|
2014-02-24 07:21:39 +01:00
|
|
|
"log"
|
2016-04-12 15:00:09 +02:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
2014-02-09 16:53:42 +01:00
|
|
|
)
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
type PassConfig struct {
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
2016-04-13 12:45:09 +02:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
func (conf *PassConfig) PasswordBytes() []byte {
|
2014-03-02 20:41:24 +01:00
|
|
|
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 {
|
2016-04-12 07:44:00 +02:00
|
|
|
Network struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Server struct {
|
|
|
|
PassConfig
|
2016-04-12 07:44:00 +02:00
|
|
|
Name string
|
2014-03-01 23:34:51 +01:00
|
|
|
Database string
|
|
|
|
Listen []string
|
2015-05-04 07:47:26 +02:00
|
|
|
Wslisten string
|
2014-03-09 00:01:15 +01:00
|
|
|
Log string
|
2014-03-01 23:34:51 +01:00
|
|
|
MOTD string
|
|
|
|
}
|
2014-02-25 20:11:34 +01:00
|
|
|
|
2016-04-13 12:45:09 +02:00
|
|
|
SSLListener map[string]*SSLListenConfig
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Operator map[string]*PassConfig
|
2014-03-13 09:55:46 +01:00
|
|
|
|
|
|
|
Theater map[string]*PassConfig
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 21:45:36 +01:00
|
|
|
func (conf *Config) Operators() map[Name][]byte {
|
|
|
|
operators := make(map[Name][]byte)
|
2014-03-01 23:34:51 +01:00
|
|
|
for name, opConf := range conf.Operator {
|
2014-03-09 21:45:36 +01:00
|
|
|
operators[NewName(name)] = opConf.PasswordBytes()
|
2014-02-24 18:41:09 +01:00
|
|
|
}
|
|
|
|
return operators
|
|
|
|
}
|
|
|
|
|
2014-03-13 09:55:46 +01: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
|
|
|
|
}
|
|
|
|
|
2016-04-13 12:45:09 +02:00
|
|
|
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 07:21:39 +01:00
|
|
|
func LoadConfig(filename string) (config *Config, err error) {
|
2016-04-12 15:00:09 +02:00
|
|
|
data, err := ioutil.ReadFile(filename)
|
2014-02-09 16:53:42 +01:00
|
|
|
if err != nil {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, err
|
2014-02-09 16:53:42 +01:00
|
|
|
}
|
2016-04-12 15:00:09 +02:00
|
|
|
|
|
|
|
err = yaml.Unmarshal(data, &config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-04-12 07:44:00 +02:00
|
|
|
if config.Network.Name == "" {
|
|
|
|
return nil, errors.New("Network name missing")
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
if config.Server.Name == "" {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, errors.New("Server name missing")
|
2014-03-01 23:34:51 +01:00
|
|
|
}
|
2016-04-21 02:48:15 +02:00
|
|
|
if !IsHostname(config.Server.Name) {
|
|
|
|
return nil, errors.New("Server name must match the format of a hostname")
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
if config.Server.Database == "" {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, errors.New("Server database missing")
|
2014-03-01 23:34:51 +01:00
|
|
|
}
|
|
|
|
if len(config.Server.Listen) == 0 {
|
2016-04-12 15:00:09 +02:00
|
|
|
return nil, errors.New("Server listening addresses missing")
|
2014-02-10 22:52:28 +01:00
|
|
|
}
|
2016-04-12 15:00:09 +02:00
|
|
|
return config, nil
|
2014-02-09 16:53:42 +01:00
|
|
|
}
|