2016-01-17 18:00:44 +00:00
|
|
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
2013-12-10 23:37:07 +00:00
|
|
|
|
2012-08-17 20:38:15 +00:00
|
|
|
package config
|
|
|
|
|
2017-07-25 17:58:04 +00:00
|
|
|
import (
|
|
|
|
"database/sql"
|
2020-04-28 15:32:52 +00:00
|
|
|
"encoding/json"
|
2017-07-25 17:58:04 +00:00
|
|
|
"fmt"
|
2019-01-20 20:21:26 +00:00
|
|
|
"os"
|
2017-07-25 17:58:04 +00:00
|
|
|
"regexp"
|
2019-01-20 20:21:26 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2017-07-25 17:58:04 +00:00
|
|
|
|
2019-10-21 00:55:13 +00:00
|
|
|
sqlite3 "github.com/mattn/go-sqlite3"
|
|
|
|
|
2017-07-25 17:58:04 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2019-03-07 16:35:42 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2017-07-25 17:58:04 +00:00
|
|
|
)
|
2012-08-17 20:38:15 +00:00
|
|
|
|
|
|
|
// Config stores any system-wide startup information that cannot be easily configured via
|
|
|
|
// the database
|
|
|
|
type Config struct {
|
2019-01-20 20:21:26 +00:00
|
|
|
*sqlx.DB
|
2017-07-25 17:58:04 +00:00
|
|
|
|
2021-05-20 13:59:28 +00:00
|
|
|
DBFile string
|
|
|
|
secrets map[string]Secret
|
|
|
|
}
|
|
|
|
|
|
|
|
// Secret is a config value that is loaded permanently and not ever displayed
|
|
|
|
type Secret struct {
|
|
|
|
// Key is the key field of the table
|
|
|
|
Key string `db:"key"`
|
|
|
|
// Value represents the secret that must not be shared
|
|
|
|
Value string `db:"value"`
|
2019-01-20 20:21:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetFloat64 returns the config value for a string key
|
|
|
|
// It will first look in the env vars for the key
|
2021-07-21 18:52:45 +00:00
|
|
|
// It will check the db for the key if an env DNE
|
2019-01-20 20:21:26 +00:00
|
|
|
// Finally, it will return a zero value if the key does not exist
|
|
|
|
// It will attempt to convert the value to a float64 if it exists
|
2019-01-22 00:16:57 +00:00
|
|
|
func (c *Config) GetFloat64(key string, fallback float64) float64 {
|
|
|
|
f, err := strconv.ParseFloat(c.GetString(key, fmt.Sprintf("%f", fallback)), 64)
|
2019-01-20 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0.0
|
2017-07-25 18:44:36 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2019-10-21 00:55:13 +00:00
|
|
|
// GetInt64 returns the config value for a string key
|
|
|
|
// It will first look in the env vars for the key
|
2021-07-21 18:52:45 +00:00
|
|
|
// It will check the db for the key if an env DNE
|
2019-10-21 00:55:13 +00:00
|
|
|
// Finally, it will return a zero value if the key does not exist
|
|
|
|
// It will attempt to convert the value to an int if it exists
|
|
|
|
func (c *Config) GetInt64(key string, fallback int64) int64 {
|
|
|
|
i, err := strconv.ParseInt(c.GetString(key, strconv.FormatInt(fallback, 10)), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
// GetInt returns the config value for a string key
|
|
|
|
// It will first look in the env vars for the key
|
2021-07-21 18:52:45 +00:00
|
|
|
// It will check the db for the key if an env DNE
|
2019-01-20 20:21:26 +00:00
|
|
|
// Finally, it will return a zero value if the key does not exist
|
|
|
|
// It will attempt to convert the value to an int if it exists
|
2019-01-22 00:16:57 +00:00
|
|
|
func (c *Config) GetInt(key string, fallback int) int {
|
|
|
|
i, err := strconv.Atoi(c.GetString(key, strconv.Itoa(fallback)))
|
2019-01-20 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0
|
2017-08-30 17:41:58 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get is a shortcut for GetString
|
2019-01-22 00:16:57 +00:00
|
|
|
func (c *Config) Get(key, fallback string) string {
|
|
|
|
return c.GetString(key, fallback)
|
2019-01-20 20:21:26 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 19:24:03 +00:00
|
|
|
func envkey(key string) string {
|
|
|
|
key = strings.ToUpper(key)
|
|
|
|
key = strings.Replace(key, ".", "", -1)
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
// GetString returns the config value for a string key
|
|
|
|
// It will first look in the env vars for the key
|
2021-07-21 18:52:45 +00:00
|
|
|
// It will check the db for the key if an env DNE
|
2019-01-20 20:21:26 +00:00
|
|
|
// Finally, it will return a zero value if the key does not exist
|
|
|
|
// It will convert the value to a string if it exists
|
2019-01-22 00:16:57 +00:00
|
|
|
func (c *Config) GetString(key, fallback string) string {
|
2019-01-20 20:21:26 +00:00
|
|
|
key = strings.ToLower(key)
|
2019-01-21 19:24:03 +00:00
|
|
|
if v, found := os.LookupEnv(envkey(key)); found {
|
2019-01-20 20:21:26 +00:00
|
|
|
return v
|
|
|
|
}
|
2021-05-20 13:59:28 +00:00
|
|
|
if v, found := c.secrets[key]; found {
|
|
|
|
return v.Value
|
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
var configValue string
|
|
|
|
q := `select value from config where key=?`
|
|
|
|
err := c.DB.Get(&configValue, q, key)
|
|
|
|
if err != nil {
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Debug().Msgf("WARN: Key %s is empty", key)
|
2019-01-22 00:16:57 +00:00
|
|
|
return fallback
|
2017-09-29 04:58:21 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
return configValue
|
|
|
|
}
|
|
|
|
|
2020-04-28 15:32:52 +00:00
|
|
|
func (c *Config) GetMap(key string, fallback map[string]string) map[string]string {
|
|
|
|
content := c.Get(key, "")
|
|
|
|
if content == "" {
|
|
|
|
return fallback
|
|
|
|
}
|
|
|
|
vals := map[string]string{}
|
|
|
|
err := json.Unmarshal([]byte(content), &vals)
|
|
|
|
if err != nil {
|
2020-10-21 19:55:28 +00:00
|
|
|
log.Error().Err(err).Msgf("Could not decode config for %s", key)
|
2020-04-28 15:32:52 +00:00
|
|
|
return fallback
|
|
|
|
}
|
|
|
|
return vals
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
// GetArray returns the string slice config value for a string key
|
|
|
|
// It will first look in the env vars for the key with ;; separated values
|
|
|
|
// Look, I'm too lazy to do parsing to ensure that a comma is what the user meant
|
2021-07-21 18:52:45 +00:00
|
|
|
// It will check the db for the key if an env DNE
|
2019-01-20 20:21:26 +00:00
|
|
|
// Finally, it will return a zero value if the key does not exist
|
|
|
|
// This will do no conversion.
|
2019-01-22 00:16:57 +00:00
|
|
|
func (c *Config) GetArray(key string, fallback []string) []string {
|
|
|
|
val := c.GetString(key, "")
|
2019-01-21 19:24:03 +00:00
|
|
|
if val == "" {
|
2019-01-22 00:16:57 +00:00
|
|
|
return fallback
|
2019-01-21 19:24:03 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
return strings.Split(val, ";;")
|
|
|
|
}
|
|
|
|
|
2019-10-26 21:39:01 +00:00
|
|
|
func (c *Config) Unset(key string) error {
|
|
|
|
q := `delete from config where key=?`
|
|
|
|
tx, err := c.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = tx.Exec(q, key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = tx.Commit()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
// Set changes the value for a configuration in the database
|
|
|
|
// Note, this is always a string. Use the SetArray for an array helper
|
|
|
|
func (c *Config) Set(key, value string) error {
|
|
|
|
key = strings.ToLower(key)
|
2020-12-02 14:53:57 +00:00
|
|
|
value = strings.Trim(value, "`")
|
2019-05-27 23:21:53 +00:00
|
|
|
q := `insert into config (key,value) values (?, ?)
|
|
|
|
on conflict(key) do update set value=?;`
|
2019-01-21 19:24:03 +00:00
|
|
|
tx, err := c.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = tx.Exec(q, key, value, value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = tx.Commit()
|
2019-01-20 20:21:26 +00:00
|
|
|
if err != nil {
|
2019-01-21 19:24:03 +00:00
|
|
|
return err
|
2017-11-06 19:32:49 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-05-20 13:59:28 +00:00
|
|
|
func (c *Config) RefreshSecrets() error {
|
|
|
|
q := `select key, value from secrets`
|
|
|
|
var secrets []Secret
|
|
|
|
err := c.Select(&secrets, q)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
secretMap := map[string]Secret{}
|
|
|
|
for _, s := range secrets {
|
|
|
|
secretMap[s.Key] = s
|
|
|
|
}
|
|
|
|
c.secrets = secretMap
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) GetAllSecrets() map[string]Secret {
|
|
|
|
return c.secrets
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) SecretKeys() []string {
|
|
|
|
keys := []string{}
|
|
|
|
for k := range c.secrets {
|
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
return keys
|
|
|
|
}
|
|
|
|
|
2022-08-04 01:09:04 +00:00
|
|
|
func (c *Config) setSecret(key, value string) error {
|
|
|
|
q := `insert into secrets (key,value) values (?, ?)
|
|
|
|
on conflict(key) do update set value=?;`
|
|
|
|
_, err := c.Exec(q, key, value, value)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msgf("secret")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.RefreshSecrets()
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterSecret creates a new secret
|
|
|
|
func (c *Config) RegisterSecret(key, value string) error {
|
|
|
|
return c.setSecret(key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveSecret deregisters a secret
|
|
|
|
func (c *Config) RemoveSecret(key string) error {
|
|
|
|
q := `delete from secrets where key=?`
|
|
|
|
_, err := c.Exec(q, key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.RefreshSecrets()
|
|
|
|
}
|
|
|
|
|
2020-04-29 21:36:34 +00:00
|
|
|
func (c *Config) SetMap(key string, values map[string]string) error {
|
|
|
|
b, err := json.Marshal(values)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.Set(key, string(b))
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
func (c *Config) SetArray(key string, values []string) error {
|
|
|
|
vals := strings.Join(values, ";;")
|
|
|
|
return c.Set(key, vals)
|
2012-08-17 21:37:49 +00:00
|
|
|
}
|
2012-08-17 20:38:15 +00:00
|
|
|
|
2017-07-25 17:58:04 +00:00
|
|
|
func init() {
|
|
|
|
regex := func(re, s string) (bool, error) {
|
|
|
|
return regexp.MatchString(re, s)
|
|
|
|
}
|
|
|
|
sql.Register("sqlite3_custom",
|
|
|
|
&sqlite3.SQLiteDriver{
|
|
|
|
ConnectHook: func(conn *sqlite3.SQLiteConn) error {
|
|
|
|
return conn.RegisterFunc("REGEXP", regex, true)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2012-08-17 21:37:49 +00:00
|
|
|
// Readconfig loads the config data out of a JSON file located in cfile
|
2019-01-20 20:21:26 +00:00
|
|
|
func ReadConfig(dbpath string) *Config {
|
|
|
|
if dbpath == "" {
|
|
|
|
dbpath = "catbase.db"
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Info().Msgf("Using %s as database file.\n", dbpath)
|
2012-08-17 20:38:15 +00:00
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
sqlDB, err := sqlx.Open("sqlite3_custom", dbpath)
|
|
|
|
if err != nil {
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Fatal().Err(err)
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
c := Config{
|
2021-05-20 13:59:28 +00:00
|
|
|
DBFile: dbpath,
|
|
|
|
secrets: map[string]Secret{},
|
2016-03-10 18:37:07 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
c.DB = sqlDB
|
2016-03-10 18:37:07 +00:00
|
|
|
|
2019-01-20 20:21:26 +00:00
|
|
|
if _, err := c.Exec(`create table if not exists config (
|
|
|
|
key string,
|
|
|
|
value string,
|
|
|
|
primary key (key)
|
|
|
|
);`); err != nil {
|
2021-05-20 13:59:28 +00:00
|
|
|
log.Fatal().Err(err).Msgf("failed to initialize config")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := c.Exec(`create table if not exists secrets (
|
|
|
|
key string,
|
|
|
|
value string,
|
|
|
|
primary key (key)
|
|
|
|
);`); err != nil {
|
2022-08-04 01:09:04 +00:00
|
|
|
log.Fatal().Err(err).Msgf("failed to initialize secrets")
|
2021-05-20 13:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.RefreshSecrets(); err != nil {
|
|
|
|
log.Fatal().Err(err).Msgf("failed to initialize config")
|
2017-07-25 17:58:04 +00:00
|
|
|
}
|
2019-01-20 20:21:26 +00:00
|
|
|
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Info().Msgf("catbase is running.")
|
2017-07-25 17:58:04 +00:00
|
|
|
|
2012-08-17 20:38:15 +00:00
|
|
|
return &c
|
|
|
|
}
|