2016-01-17 13:00:44 -05:00
|
|
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
2013-12-10 18:37:07 -05:00
|
|
|
|
2012-08-17 16:38:15 -04:00
|
|
|
package config
|
|
|
|
|
|
|
|
import "encoding/json"
|
|
|
|
import "fmt"
|
|
|
|
import "io/ioutil"
|
|
|
|
|
|
|
|
// Config stores any system-wide startup information that cannot be easily configured via
|
|
|
|
// the database
|
|
|
|
type Config struct {
|
2016-03-10 13:37:07 -05:00
|
|
|
DB struct {
|
|
|
|
File string
|
|
|
|
Name string
|
|
|
|
Server string
|
|
|
|
}
|
|
|
|
Channels []string
|
|
|
|
MainChannel string
|
|
|
|
Plugins []string
|
|
|
|
Type string
|
|
|
|
Irc struct {
|
|
|
|
Server, Pass string
|
|
|
|
}
|
2016-03-10 21:11:52 -05:00
|
|
|
Slack struct {
|
|
|
|
Token string
|
|
|
|
}
|
2016-03-11 12:48:41 -05:00
|
|
|
Nick string
|
|
|
|
FullName string
|
|
|
|
Version string
|
2016-09-27 12:42:00 -04:00
|
|
|
CommandChar []string
|
2016-03-11 12:48:41 -05:00
|
|
|
RatePerSec float64
|
|
|
|
LogLength int
|
|
|
|
Admins []string
|
|
|
|
HttpAddr string
|
|
|
|
Untappd struct {
|
|
|
|
Token string
|
|
|
|
Freq int
|
|
|
|
Channels []string
|
|
|
|
}
|
2016-08-30 15:40:55 -04:00
|
|
|
Twitch struct {
|
|
|
|
Freq int
|
|
|
|
Users map[string][]string //channel -> usernames
|
2016-08-08 20:44:28 -04:00
|
|
|
}
|
2016-01-15 09:43:31 -05:00
|
|
|
EnforceNicks bool
|
2013-02-20 22:24:51 -05:00
|
|
|
WelcomeMsgs []string
|
|
|
|
TwitterConsumerKey string
|
|
|
|
TwitterConsumerSecret string
|
|
|
|
TwitterUserKey string
|
|
|
|
TwitterUserSecret string
|
2013-03-30 07:12:27 -04:00
|
|
|
BadMsgs []string
|
2013-04-21 12:37:04 -04:00
|
|
|
Bad struct {
|
|
|
|
Msgs []string
|
|
|
|
Nicks []string
|
|
|
|
Hosts []string
|
|
|
|
}
|
2016-03-24 13:49:44 -04:00
|
|
|
Your struct {
|
|
|
|
YourChance float64
|
|
|
|
FuckingChance float64
|
2016-08-30 15:40:55 -04:00
|
|
|
DuckingChance float64
|
2017-03-13 12:41:17 -04:00
|
|
|
NegativeChance float64
|
2016-03-24 13:49:44 -04:00
|
|
|
MaxLength int
|
|
|
|
}
|
2016-04-01 10:37:44 -04:00
|
|
|
LeftPad struct {
|
|
|
|
MaxLen int
|
|
|
|
Who string
|
|
|
|
}
|
2016-04-01 10:45:45 -04:00
|
|
|
Factoid struct {
|
|
|
|
MinLen int
|
|
|
|
QuoteChance float64
|
|
|
|
QuoteTime int
|
|
|
|
StartupFact string
|
|
|
|
}
|
2016-05-10 21:15:52 -04:00
|
|
|
Babbler struct {
|
|
|
|
DefaultUsers []string
|
|
|
|
}
|
2017-05-01 11:54:44 -04:00
|
|
|
Reminder struct {
|
|
|
|
MaxBatchAdd int
|
|
|
|
}
|
2017-06-05 18:37:46 -04:00
|
|
|
Stats struct {
|
|
|
|
DBPath string
|
|
|
|
Sightings []string
|
|
|
|
}
|
2012-08-17 17:37:49 -04:00
|
|
|
}
|
2012-08-17 16:38:15 -04:00
|
|
|
|
2012-08-17 17:37:49 -04:00
|
|
|
// Readconfig loads the config data out of a JSON file located in cfile
|
2012-08-17 18:56:44 -04:00
|
|
|
func Readconfig(version, cfile string) *Config {
|
2012-08-17 16:38:15 -04:00
|
|
|
fmt.Printf("Using %s as config file.\n", cfile)
|
|
|
|
file, e := ioutil.ReadFile(cfile)
|
|
|
|
if e != nil {
|
|
|
|
panic("Couldn't read config file!")
|
|
|
|
}
|
|
|
|
|
|
|
|
var c Config
|
|
|
|
err := json.Unmarshal(file, &c)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2012-08-17 18:56:44 -04:00
|
|
|
c.Version = version
|
2012-08-25 00:49:48 -04:00
|
|
|
|
2016-03-10 13:37:07 -05:00
|
|
|
if c.Type == "" {
|
|
|
|
c.Type = "irc"
|
|
|
|
}
|
|
|
|
|
2012-08-25 00:51:16 -04:00
|
|
|
fmt.Printf("godeepintir version %s running.\n", c.Version)
|
2012-08-25 00:49:48 -04:00
|
|
|
|
2012-08-17 16:38:15 -04:00
|
|
|
return &c
|
|
|
|
}
|