1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-23 06:35:24 +00:00
neonmodem/config/config.go

245 lines
6.3 KiB
Go
Raw Normal View History

2022-12-29 19:32:48 +00:00
package config
import (
2022-12-29 22:45:57 +00:00
"os"
"path"
2022-12-29 19:32:48 +00:00
"strings"
2022-12-31 21:57:11 +00:00
"github.com/charmbracelet/lipgloss"
2022-12-29 22:45:57 +00:00
"github.com/pelletier/go-toml/v2"
2022-12-29 19:32:48 +00:00
"github.com/spf13/viper"
)
const (
StatusOnline int8 = iota
StatusOffline = 2
StatusNoNewSyncs = 3
)
var VERSION string
type ServiceStatus int8
2022-12-29 22:45:57 +00:00
type SystemConfig struct {
Type string
Config map[string]interface{}
}
2022-12-31 21:57:11 +00:00
type ThemeItemConfig struct {
Foreground lipgloss.AdaptiveColor
Background lipgloss.AdaptiveColor
Border struct {
Foreground lipgloss.AdaptiveColor
Background lipgloss.AdaptiveColor
Border lipgloss.Border
Sides []bool
}
Padding []int
Margin []int
}
2022-12-29 19:32:48 +00:00
type Config struct {
2022-12-31 18:00:32 +00:00
Debug bool
Log string
2022-12-29 19:32:48 +00:00
2022-12-29 22:45:57 +00:00
Systems []SystemConfig
2022-12-31 21:57:11 +00:00
Theme struct {
DialogBox struct {
Window ThemeItemConfig
Titlebar ThemeItemConfig
Bottombar ThemeItemConfig
}
PostsList struct {
2022-12-31 22:18:53 +00:00
List struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Item struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
2022-12-31 21:57:11 +00:00
}
Post struct {
Author ThemeItemConfig
Subject ThemeItemConfig
}
Reply struct {
Author ThemeItemConfig
}
}
2022-12-29 19:32:48 +00:00
}
func Load() (Config, error) {
2022-12-29 22:45:57 +00:00
cfgDir, err := os.UserConfigDir()
if err != nil {
return Config{}, err
}
homeDir, err := os.UserHomeDir()
if err != nil {
return Config{}, err
}
2022-12-31 18:00:32 +00:00
cacheDir, err := os.UserCacheDir()
if err != nil {
return Config{}, err
}
2022-12-29 22:45:57 +00:00
2022-12-29 19:32:48 +00:00
viper.SetDefault("Debug", "true")
2022-12-31 18:00:32 +00:00
viper.SetDefault("Log", path.Join(cacheDir, "gobbs.log"))
2022-12-29 19:32:48 +00:00
2022-12-31 22:18:53 +00:00
// PostsList List:Focused
viper.SetDefault("Theme.PostsList.List.Focused.Margin",
2022-12-31 21:57:11 +00:00
[]int{0, 0, 0, 0})
2022-12-31 22:18:53 +00:00
viper.SetDefault("Theme.PostsList.List.Focused.Padding",
2022-12-31 21:57:11 +00:00
[]int{1, 1, 1, 1})
2022-12-31 22:18:53 +00:00
viper.SetDefault("Theme.PostsList.List.Focused.Border.Border",
2022-12-31 21:57:11 +00:00
lipgloss.RoundedBorder())
2022-12-31 22:18:53 +00:00
viper.SetDefault("Theme.PostsList.List.Focused.Border.Sides",
2022-12-31 21:57:11 +00:00
[]bool{true, true, true, true},
)
2022-12-31 22:18:53 +00:00
viper.SetDefault("Theme.PostsList.List.Focused.Border.Foreground",
2022-12-31 21:57:11 +00:00
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
2022-12-31 22:18:53 +00:00
// PostsList List:Blurred
viper.SetDefault("Theme.PostsList.List.Blurred.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.PostsList.List.Blurred.Padding",
[]int{1, 1, 1, 1})
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Border",
lipgloss.RoundedBorder())
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// PostsList Item:Focused
viper.SetDefault("Theme.PostsList.Item.Focused.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.PostsList.Item.Focused.Padding",
[]int{1, 1, 1, 1})
viper.SetDefault("Theme.PostsList.Item.Focused.Border.Border",
lipgloss.RoundedBorder())
viper.SetDefault("Theme.PostsList.Item.Focused.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.PostsList.Item.Focused.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
// PostsList Item:Blurred
viper.SetDefault("Theme.PostsList.Item.Blurred.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.PostsList.Item.Blurred.Padding",
[]int{1, 1, 1, 1})
viper.SetDefault("Theme.PostsList.Item.Blurred.Border.Border",
lipgloss.RoundedBorder())
viper.SetDefault("Theme.PostsList.Item.Blurred.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.PostsList.Item.Blurred.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
2022-12-31 21:57:11 +00:00
// DialogBox Window
viper.SetDefault("Theme.DialogBox.Window.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Padding",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Border.Border",
lipgloss.ThickBorder())
viper.SetDefault("Theme.DialogBox.Window.Border.Sides",
[]bool{false, true, true, true},
)
viper.SetDefault("Theme.DialogBox.Window.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
// DialogBox Titlebar
viper.SetDefault("Theme.DialogBox.Titlebar.Margin",
[]int{0, 0, 1, 0})
viper.SetDefault("Theme.DialogBox.Titlebar.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.DialogBox.Titlebar.Foreground",
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
viper.SetDefault("Theme.DialogBox.Titlebar.Background",
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
// DialogBox Bottombar
viper.SetDefault("Theme.DialogBox.Bottombar.Margin",
[]int{1, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Bottombar.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.DialogBox.Bottombar.Foreground",
lipgloss.AdaptiveColor{Light: "#aaaaaa", Dark: "#999999"})
// Post Author
viper.SetDefault("Theme.Post.Author.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.Post.Author.Foreground",
lipgloss.AdaptiveColor{Light: "#F25D94", Dark: "#F25D94"})
// Post Subject
viper.SetDefault("Theme.Post.Subject.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.Post.Subject.Foreground",
lipgloss.AdaptiveColor{Light: "#FFFFFF", Dark: "#FFFFFF"})
viper.SetDefault("Theme.Post.Subject.Background",
lipgloss.AdaptiveColor{Light: "#F25D94", Dark: "#F25D94"})
// Reply Author
viper.SetDefault("Theme.Reply.Author.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.Reply.Author.Foreground",
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#00000"})
viper.SetDefault("Theme.Reply.Author.Foreground",
lipgloss.AdaptiveColor{Light: "#874BFD", Dark: "#874BFD"})
2022-12-29 22:45:57 +00:00
viper.SetConfigName("gobbs")
2022-12-29 19:32:48 +00:00
viper.SetConfigType("toml")
2022-12-29 22:45:57 +00:00
viper.AddConfigPath(cfgDir)
viper.AddConfigPath(homeDir)
2022-12-29 19:32:48 +00:00
viper.SetEnvPrefix("gobbs")
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
return Config{}, err
2022-12-29 22:45:57 +00:00
} else {
return Config{}, nil
2022-12-29 19:32:48 +00:00
}
}
var config Config
if err := viper.Unmarshal(&config); err != nil {
return Config{}, err
}
return config, nil
}
2022-12-29 22:45:57 +00:00
func (cfg *Config) Save() error {
cfgFile := viper.ConfigFileUsed()
if cfgFile == "" {
cfgDir, err := os.UserConfigDir()
if err != nil {
return err
}
cfgFile = path.Join(cfgDir, "gobbs.toml")
}
fd, err := os.OpenFile(cfgFile, os.O_WRONLY|os.O_CREATE, 0600)
if err != nil {
return err
}
defer fd.Close()
if err := toml.NewEncoder(fd).Encode(cfg); err != nil {
return err
}
return nil
}