2014-02-09 16:53:42 +01:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2014-03-01 23:34:51 +01:00
|
|
|
"code.google.com/p/gcfg"
|
2014-02-24 07:21:39 +01:00
|
|
|
"encoding/base64"
|
2014-03-01 23:34:51 +01:00
|
|
|
"errors"
|
2014-02-24 07:21:39 +01:00
|
|
|
"log"
|
|
|
|
"path/filepath"
|
2014-02-09 16:53:42 +01:00
|
|
|
)
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
type PassConfig struct {
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (conf *PassConfig) PasswordBytes() []byte {
|
|
|
|
if conf.Password == "" {
|
2014-02-24 07:21:39 +01:00
|
|
|
return nil
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
bytes, err := base64.StdEncoding.DecodeString(conf.Password)
|
2014-02-24 07:21:39 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
return bytes
|
|
|
|
}
|
|
|
|
|
2014-02-09 16:53:42 +01:00
|
|
|
type Config struct {
|
2014-03-01 23:34:51 +01:00
|
|
|
Server struct {
|
|
|
|
PassConfig
|
|
|
|
Database string
|
|
|
|
Listen []string
|
|
|
|
MOTD string
|
|
|
|
Name string
|
|
|
|
}
|
2014-02-25 20:11:34 +01:00
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Operator map[string]*PassConfig
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
Debug struct {
|
|
|
|
Net bool
|
|
|
|
Client bool
|
|
|
|
Channel bool
|
|
|
|
Server bool
|
|
|
|
}
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
func (conf *Config) Operators() map[string][]byte {
|
2014-02-24 18:41:09 +01:00
|
|
|
operators := make(map[string][]byte)
|
2014-03-01 23:34:51 +01:00
|
|
|
for name, opConf := range conf.Operator {
|
|
|
|
operators[name] = opConf.PasswordBytes()
|
2014-02-24 18:41:09 +01:00
|
|
|
}
|
|
|
|
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{}
|
2014-03-01 23:34:51 +01:00
|
|
|
err = gcfg.ReadFileInto(config, filename)
|
2014-02-09 16:53:42 +01:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
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-24 07:21:39 +01:00
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
// make
|
|
|
|
dir := filepath.Dir(filename)
|
|
|
|
if config.Server.MOTD != "" {
|
|
|
|
config.Server.MOTD = filepath.Join(dir, config.Server.MOTD)
|
2014-02-10 22:52:28 +01:00
|
|
|
}
|
2014-03-01 23:34:51 +01:00
|
|
|
config.Server.Database = filepath.Join(dir, config.Server.Database)
|
2014-02-09 16:53:42 +01:00
|
|
|
return
|
|
|
|
}
|