owobot/config.go

69 lines
1.8 KiB
Go
Raw Normal View History

2023-12-04 23:55:01 +00:00
/*
2023-12-05 09:24:03 +00:00
* owobot - Your server's guardian and entertainer
2023-12-04 23:55:01 +00:00
* Copyright (C) 2023 owobot Contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
2023-12-05 00:51:55 +00:00
"os"
2023-12-04 23:55:01 +00:00
"github.com/bwmarrin/discordgo"
"github.com/caarlos0/env/v10"
2023-12-05 00:51:55 +00:00
"github.com/pelletier/go-toml/v2"
2023-12-04 23:55:01 +00:00
)
type Config struct {
2024-04-24 01:25:37 +00:00
Token string `env:"TOKEN" toml:"token"`
DBPath string `env:"DB_PATH" toml:"db_path"`
PluginDir string `env:"PLUGIN_DIR" toml:"plugin_dir"`
Activity Activity `envPrefix:"ACTIVITY_" toml:"activity"`
2023-12-04 23:55:01 +00:00
}
type Activity struct {
2023-12-06 21:28:07 +00:00
Type discordgo.ActivityType `env:"TYPE" toml:"type"`
Name string `env:"NAME" toml:"name"`
2023-12-04 23:55:01 +00:00
}
2023-12-05 00:51:55 +00:00
func loadConfig() (*Config, error) {
2023-12-06 21:28:07 +00:00
// Create a new config struct with default values
cfg := &Config{
2024-04-24 01:25:37 +00:00
Token: "",
DBPath: "owobot.db",
PluginDir: "plugins",
2023-12-06 21:28:07 +00:00
Activity: Activity{
Type: -1,
Name: "",
},
}
configPath := os.Getenv("OWOBOT_CONFIG_PATH")
if configPath == "" {
configPath = "/etc/owobot/config.toml"
}
2023-12-05 00:51:55 +00:00
2023-12-06 21:28:07 +00:00
fl, err := os.Open(configPath)
if err == nil {
err = toml.NewDecoder(fl).Decode(cfg)
if err != nil {
return nil, err
}
fl.Close()
2023-12-05 00:51:55 +00:00
}
2023-12-04 23:55:01 +00:00
return cfg, env.ParseWithOptions(cfg, env.Options{Prefix: "OWOBOT_"})
}