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

508 lines
16 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 {
Debug bool
Log string
Proxy string
Browser string
RenderShadows bool
RenderImages bool
2023-06-23 21:36:57 +00:00
RenderSplash bool
RenderBanner bool
2023-01-06 23:57:50 +00:00
2022-12-29 22:45:57 +00:00
Systems []SystemConfig
2022-12-31 21:57:11 +00:00
Theme struct {
Header struct {
Selector ThemeItemConfig
2023-06-25 00:57:20 +00:00
Spinner ThemeItemConfig
}
2022-12-31 21:57:11 +00:00
DialogBox struct {
Window struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Titlebar struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
2022-12-31 21:57:11 +00:00
Bottombar ThemeItemConfig
}
ErrorDialogBox struct {
Window struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Titlebar struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Bottombar ThemeItemConfig
}
2022-12-31 21:57:11 +00:00
PostsList struct {
2022-12-31 22:18:53 +00:00
List struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Item struct {
2022-12-31 23:32:04 +00:00
Focused ThemeItemConfig
Blurred ThemeItemConfig
Selected ThemeItemConfig
}
ItemDetail struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
Selected ThemeItemConfig
2022-12-31 22:18:53 +00:00
}
2022-12-31 21:57:11 +00:00
}
2023-01-05 02:40:54 +00:00
PopupList struct {
List struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
}
Item struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
Selected ThemeItemConfig
}
ItemDetail struct {
Focused ThemeItemConfig
Blurred ThemeItemConfig
Selected 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-31 23:46:22 +00:00
SetDefaults(cacheDir)
2023-01-07 00:46:41 +00:00
viper.SetConfigName("neonmodem")
2022-12-31 23:46:22 +00:00
viper.SetConfigType("toml")
viper.AddConfigPath(cfgDir)
viper.AddConfigPath(homeDir)
2023-01-07 00:46:41 +00:00
viper.SetEnvPrefix("neonmodem")
2022-12-31 23:46:22 +00:00
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
return Config{}, err
}
}
var config Config
if err := viper.Unmarshal(&config); err != nil {
return Config{}, err
}
return config, nil
}
func (cfg *Config) Save() error {
cfgFile := viper.ConfigFileUsed()
if cfgFile == "" {
cfgDir, err := os.UserConfigDir()
if err != nil {
return err
}
2023-01-07 00:46:41 +00:00
cfgFile = path.Join(cfgDir, "neonmodem.toml")
2022-12-31 23:46:22 +00:00
}
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
}
func SetDefaults(cacheDir string) {
2023-01-06 03:14:25 +00:00
viper.SetDefault("Debug", "false")
2023-01-07 00:46:41 +00:00
viper.SetDefault("Log", path.Join(cacheDir, "neonmodem.log"))
2023-01-10 23:56:02 +00:00
viper.SetDefault("Proxy", "")
viper.SetDefault("Browser", "")
2022-12-29 19:32:48 +00:00
viper.SetDefault("RenderShadows", "true")
2023-01-06 23:57:50 +00:00
viper.SetDefault("RenderImages", "true")
2023-06-23 21:36:57 +00:00
viper.SetDefault("RenderSplash", "true")
viper.SetDefault("RenderBanner", "true")
2023-01-06 23:57:50 +00:00
// --- Header ---
// Header Selector
viper.SetDefault("Theme.Header.Selector.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.Header.Selector.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.Header.Selector.Border.Border",
lipgloss.NormalBorder())
viper.SetDefault("Theme.Header.Selector.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.Header.Selector.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#6ca1d0", Dark: "#6ca1d0"})
viper.SetDefault("Theme.Header.Selector.Foreground",
lipgloss.AdaptiveColor{Light: "#6ca1d0", Dark: "#6ca1d0"})
2023-06-25 00:57:20 +00:00
// Header Spinner
viper.SetDefault("Theme.Header.Spinner",
lipgloss.AdaptiveColor{Light: "#FF5FAF", Dark: "#FF5FAF"})
2023-01-05 02:40:54 +00:00
// --- DialogBox ---
// DialogBox Window:Focused
viper.SetDefault("Theme.DialogBox.Window.Focused.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Focused.Padding",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Border",
lipgloss.ThickBorder())
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Sides",
[]bool{false, true, true, true},
)
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
// DialogBox Window:Blurred
viper.SetDefault("Theme.DialogBox.Window.Blurred.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Blurred.Padding",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Border",
lipgloss.ThickBorder())
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Sides",
[]bool{false, true, true, true},
)
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// DialogBox Titlebar:Focused
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Margin",
[]int{0, 0, 1, 0})
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Foreground",
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Background",
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
// DialogBox Titlebar:Blurred
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Margin",
[]int{0, 0, 1, 0})
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Foreground",
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Background",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// 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"})
2023-01-05 02:40:54 +00:00
// --- ErrorDialogBox ---
// ErrorDialogBox Window:Focused
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Padding",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Border",
lipgloss.ThickBorder())
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Sides",
[]bool{false, true, true, true},
)
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#dc143c", Dark: "#dc143c"})
// ErrorDialogBox Window:Blurred
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Padding",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Border",
lipgloss.ThickBorder())
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Sides",
[]bool{false, true, true, true},
)
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// ErrorDialogBox Titlebar:Focused
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Margin",
[]int{0, 0, 1, 0})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Foreground",
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Background",
lipgloss.AdaptiveColor{Light: "#dc143c", Dark: "#dc143c"})
// ErrorDialogBox Titlebar:Blurred
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Margin",
[]int{0, 0, 1, 0})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Foreground",
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Background",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// ErrorDialogBox Bottombar
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Margin",
[]int{1, 0, 0, 0})
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Foreground",
lipgloss.AdaptiveColor{Light: "#aaaaaa", Dark: "#999999"})
2023-01-05 02:40:54 +00:00
// --- PostsList ---
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",
lipgloss.DoubleBorder())
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",
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
2022-12-31 21:57:11 +00:00
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.DoubleBorder())
2022-12-31 22:18:53 +00:00
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.Padding",
2022-12-31 23:32:04 +00:00
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PostsList.Item.Focused.Foreground",
2022-12-31 22:18:53 +00:00
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
// PostsList Item:Blurred
viper.SetDefault("Theme.PostsList.Item.Blurred.Padding",
2022-12-31 23:32:04 +00:00
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PostsList.Item.Blurred.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// PostsList Item:Selected
viper.SetDefault("Theme.PostsList.Item.Selected.Padding",
[]int{0, 0, 0, 1})
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Border",
lipgloss.NormalBorder())
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Sides",
[]bool{false, false, false, true},
2022-12-31 22:18:53 +00:00
)
2022-12-31 23:32:04 +00:00
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Foreground",
2023-01-01 06:23:46 +00:00
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
2022-12-31 23:32:04 +00:00
viper.SetDefault("Theme.PostsList.Item.Selected.Foreground",
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
2022-12-31 23:32:04 +00:00
// PostsList ItemDetail:Focused
viper.SetDefault("Theme.PostsList.ItemDetail.Focused.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PostsList.ItemDetail.Focused.Foreground",
2023-01-01 06:23:46 +00:00
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
2022-12-31 23:32:04 +00:00
// PostsList ItemDetail:Blurred
viper.SetDefault("Theme.PostsList.ItemDetail.Blurred.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PostsList.ItemDetail.Blurred.Foreground",
2023-01-01 06:23:46 +00:00
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
2022-12-31 22:18:53 +00:00
2022-12-31 23:32:04 +00:00
// PostsList ItemDetail:Selected
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Padding",
[]int{0, 0, 0, 1})
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Border",
lipgloss.NormalBorder())
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Sides",
[]bool{false, false, false, true},
)
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Foreground",
2023-01-01 06:23:46 +00:00
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
2022-12-31 23:32:04 +00:00
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Foreground",
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#FFFFFF"})
2023-01-05 02:40:54 +00:00
// --- PopupList ---
// PopupList List:Focused
viper.SetDefault("Theme.PopupList.List.Focused.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.PopupList.List.Focused.Padding",
[]int{1, 1, 1, 1})
viper.SetDefault("Theme.PopupList.List.Focused.Border.Border",
lipgloss.HiddenBorder())
viper.SetDefault("Theme.PopupList.List.Focused.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.PopupList.List.Focused.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
2023-01-05 02:40:54 +00:00
// PopupList List:Blurred
viper.SetDefault("Theme.PopupList.List.Blurred.Margin",
[]int{0, 0, 0, 0})
viper.SetDefault("Theme.PopupList.List.Blurred.Padding",
[]int{1, 1, 1, 1})
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Border",
lipgloss.HiddenBorder())
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Sides",
[]bool{true, true, true, true},
)
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// PopupList Item:Focused
viper.SetDefault("Theme.PopupList.Item.Focused.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PopupList.Item.Focused.Foreground",
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
// PopupList Item:Blurred
viper.SetDefault("Theme.PopupList.Item.Blurred.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PopupList.Item.Blurred.Foreground",
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
// PopupList Item:Selected
viper.SetDefault("Theme.PopupList.Item.Selected.Padding",
[]int{0, 0, 0, 1})
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Border",
lipgloss.NormalBorder())
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Sides",
[]bool{false, false, false, true},
)
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
viper.SetDefault("Theme.PopupList.Item.Selected.Foreground",
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
2023-01-05 02:40:54 +00:00
// PopupList ItemDetail:Focused
viper.SetDefault("Theme.PopupList.ItemDetail.Focused.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PopupList.ItemDetail.Focused.Foreground",
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
// PopupList ItemDetail:Blurred
viper.SetDefault("Theme.PopupList.ItemDetail.Blurred.Padding",
[]int{0, 0, 0, 2})
viper.SetDefault("Theme.PopupList.ItemDetail.Blurred.Foreground",
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
// PopupList ItemDetail:Selected
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Padding",
[]int{0, 0, 0, 1})
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Border",
lipgloss.NormalBorder())
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Sides",
[]bool{false, false, false, true},
)
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Foreground",
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Foreground",
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#FFFFFF"})
// --- Post ---
2022-12-31 21:57:11 +00:00
// Post Author
viper.SetDefault("Theme.Post.Author.Padding",
[]int{0, 1, 0, 1})
viper.SetDefault("Theme.Post.Author.Foreground",
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
2022-12-31 21:57:11 +00:00
// 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: "#f119a0", Dark: "#f119a0"})
2022-12-31 21:57:11 +00:00
// 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.Background",
2023-01-01 06:23:46 +00:00
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
2022-12-29 22:45:57 +00:00
}