mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
283 lines
7.2 KiB
Go
283 lines
7.2 KiB
Go
// Package config initializes all files required for Amfora, even those used by
|
|
// other packages. It also reads in the config file and initializes a Viper and
|
|
// the theme
|
|
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/gdamore/tcell"
|
|
"github.com/makeworld-the-better-one/amfora/cache"
|
|
homedir "github.com/mitchellh/go-homedir"
|
|
"github.com/spf13/viper"
|
|
"gitlab.com/tslocum/cview"
|
|
)
|
|
|
|
var amforaAppData string // Where amfora files are stored on Windows - cached here
|
|
var configDir string
|
|
var configPath string
|
|
|
|
var NewTabPath string
|
|
var CustomNewTab bool
|
|
|
|
var TofuStore = viper.New()
|
|
var tofuDBDir string
|
|
var tofuDBPath string
|
|
|
|
// Bookmarks
|
|
|
|
var BkmkStore = viper.New()
|
|
var bkmkDir string
|
|
var bkmkPath string
|
|
|
|
var DownloadsDir string
|
|
|
|
// Feeds
|
|
|
|
var FeedJSON io.ReadCloser
|
|
var feedDir string
|
|
var FeedPath string
|
|
|
|
//nolint:golint,goerr113
|
|
func Init() error {
|
|
|
|
// *** Set paths ***
|
|
|
|
home, err := homedir.Dir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// Store AppData path
|
|
if runtime.GOOS == "windows" { //nolint:goconst
|
|
appdata, ok := os.LookupEnv("APPDATA")
|
|
if ok {
|
|
amforaAppData = filepath.Join(appdata, "amfora")
|
|
} else {
|
|
amforaAppData = filepath.Join(home, filepath.FromSlash("AppData/Roaming/amfora/"))
|
|
}
|
|
}
|
|
|
|
// Store config directory and file paths
|
|
if runtime.GOOS == "windows" {
|
|
configDir = amforaAppData
|
|
} else {
|
|
// Unix / POSIX system
|
|
xdg_config, ok := os.LookupEnv("XDG_CONFIG_HOME")
|
|
if ok && strings.TrimSpace(xdg_config) != "" {
|
|
configDir = filepath.Join(xdg_config, "amfora")
|
|
} else {
|
|
// Default to ~/.config/amfora
|
|
configDir = filepath.Join(home, ".config", "amfora")
|
|
}
|
|
}
|
|
configPath = filepath.Join(configDir, "config.toml")
|
|
|
|
// Search for a custom new tab
|
|
NewTabPath = filepath.Join(configDir, "newtab.gmi")
|
|
CustomNewTab = false
|
|
if _, err := os.Stat(NewTabPath); err == nil {
|
|
CustomNewTab = true
|
|
}
|
|
|
|
// Store TOFU db directory and file paths
|
|
if runtime.GOOS == "windows" {
|
|
// Windows just stores it in APPDATA along with other stuff
|
|
tofuDBDir = amforaAppData
|
|
} else {
|
|
// XDG cache dir on POSIX systems
|
|
xdg_cache, ok := os.LookupEnv("XDG_CACHE_HOME")
|
|
if ok && strings.TrimSpace(xdg_cache) != "" {
|
|
tofuDBDir = filepath.Join(xdg_cache, "amfora")
|
|
} else {
|
|
// Default to ~/.cache/amfora
|
|
tofuDBDir = filepath.Join(home, ".cache", "amfora")
|
|
}
|
|
}
|
|
tofuDBPath = filepath.Join(tofuDBDir, "tofu.toml")
|
|
|
|
// Store bookmarks dir and path
|
|
if runtime.GOOS == "windows" {
|
|
// Windows just keeps it in APPDATA along with other Amfora files
|
|
bkmkDir = amforaAppData
|
|
} else {
|
|
// XDG data dir on POSIX systems
|
|
xdg_data, ok := os.LookupEnv("XDG_DATA_HOME")
|
|
if ok && strings.TrimSpace(xdg_data) != "" {
|
|
bkmkDir = filepath.Join(xdg_data, "amfora")
|
|
} else {
|
|
// Default to ~/.local/share/amfora
|
|
bkmkDir = filepath.Join(home, ".local", "share", "amfora")
|
|
}
|
|
}
|
|
bkmkPath = filepath.Join(bkmkDir, "bookmarks.toml")
|
|
|
|
// Feeds dir and path
|
|
if runtime.GOOS == "windows" {
|
|
// In APPDATA beside other Amfora files
|
|
feedDir = amforaAppData
|
|
} else {
|
|
// XDG data dir on POSIX systems
|
|
xdg_data, ok := os.LookupEnv("XDG_DATA_HOME")
|
|
if ok && strings.TrimSpace(xdg_data) != "" {
|
|
feedDir = filepath.Join(xdg_data, "amfora")
|
|
} else {
|
|
// Default to ~/.local/share/amfora
|
|
feedDir = filepath.Join(home, ".local", "share", "amfora")
|
|
}
|
|
}
|
|
FeedPath = filepath.Join(feedDir, "feeds.json")
|
|
|
|
// *** Create necessary files and folders ***
|
|
|
|
// Config
|
|
err = os.MkdirAll(configDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f, err := os.OpenFile(configPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
|
|
if err == nil {
|
|
// Config file doesn't exist yet, write the default one
|
|
_, err = f.Write(defaultConf)
|
|
if err != nil {
|
|
f.Close()
|
|
return err
|
|
}
|
|
f.Close()
|
|
}
|
|
// TOFU
|
|
err = os.MkdirAll(tofuDBDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f, err = os.OpenFile(tofuDBPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
|
|
if err == nil {
|
|
f.Close()
|
|
}
|
|
// Bookmarks
|
|
err = os.MkdirAll(bkmkDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f, err = os.OpenFile(bkmkPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
|
|
if err == nil {
|
|
f.Close()
|
|
}
|
|
// Feeds
|
|
err = os.MkdirAll(feedDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f, _ = os.OpenFile(FeedPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
|
|
FeedJSON = f
|
|
|
|
// *** Downloads paths, setup, and creation ***
|
|
|
|
// Setup downloads dir
|
|
if viper.GetString("a-general.downloads") == "" {
|
|
// Find default Downloads dir
|
|
// This seems to work for all OSes?
|
|
DownloadsDir = filepath.Join(home, "Downloads")
|
|
// Create it just in case
|
|
err = os.MkdirAll(DownloadsDir, 0755)
|
|
if err != nil {
|
|
return fmt.Errorf("downloads path could not be created: %s", DownloadsDir)
|
|
}
|
|
} else {
|
|
// Validate path
|
|
dDir := viper.GetString("a-general.downloads")
|
|
di, err := os.Stat(dDir)
|
|
if err == nil {
|
|
if !di.IsDir() {
|
|
return fmt.Errorf("downloads path specified is not a directory: %s", dDir)
|
|
}
|
|
} else if os.IsNotExist(err) {
|
|
// Try to create path
|
|
err = os.MkdirAll(dDir, 0755)
|
|
if err != nil {
|
|
return fmt.Errorf("downloads path could not be created: %s", dDir)
|
|
}
|
|
} else {
|
|
// Some other error
|
|
return fmt.Errorf("couldn't access downloads directory: %s", dDir)
|
|
}
|
|
DownloadsDir = dDir
|
|
}
|
|
|
|
// *** Setup vipers ***
|
|
|
|
TofuStore.SetConfigFile(tofuDBPath)
|
|
TofuStore.SetConfigType("toml")
|
|
err = TofuStore.ReadInConfig()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
BkmkStore.SetConfigFile(bkmkPath)
|
|
BkmkStore.SetConfigType("toml")
|
|
err = BkmkStore.ReadInConfig()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
BkmkStore.Set("DO NOT TOUCH", true)
|
|
err = BkmkStore.WriteConfig()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Setup main config
|
|
|
|
viper.SetDefault("a-general.home", "gemini.circumlunar.space")
|
|
viper.SetDefault("a-general.auto_redirect", false)
|
|
viper.SetDefault("a-general.http", "default")
|
|
viper.SetDefault("a-general.search", "gus.guru/search")
|
|
viper.SetDefault("a-general.color", true)
|
|
viper.SetDefault("a-general.bullets", true)
|
|
viper.SetDefault("a-general.left_margin", 0.15)
|
|
viper.SetDefault("a-general.max_width", 100)
|
|
viper.SetDefault("a-general.downloads", "")
|
|
viper.SetDefault("a-general.page_max_size", 2097152)
|
|
viper.SetDefault("a-general.page_max_time", 10)
|
|
viper.SetDefault("a-general.emoji_favicons", false)
|
|
viper.SetDefault("keybindings.shift_numbers", "!@#$%^&*()")
|
|
viper.SetDefault("url-handlers.other", "off")
|
|
viper.SetDefault("cache.max_size", 0)
|
|
viper.SetDefault("cache.max_pages", 20)
|
|
|
|
viper.SetConfigFile(configPath)
|
|
viper.SetConfigType("toml")
|
|
err = viper.ReadInConfig()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Setup cache from config
|
|
cache.SetMaxSize(viper.GetInt("cache.max_size"))
|
|
cache.SetMaxPages(viper.GetInt("cache.max_pages"))
|
|
|
|
// Setup theme
|
|
configTheme := viper.Sub("theme")
|
|
if configTheme != nil {
|
|
for k, v := range configTheme.AllSettings() {
|
|
colorStr, ok := v.(string)
|
|
if !ok {
|
|
return fmt.Errorf(`value for "%s" is not a string: %v`, k, v)
|
|
}
|
|
color := tcell.GetColor(strings.ToLower(colorStr))
|
|
if color == tcell.ColorDefault {
|
|
return fmt.Errorf(`invalid color format for "%s": %s`, k, colorStr)
|
|
}
|
|
SetColor(k, color)
|
|
}
|
|
}
|
|
if viper.GetBool("a-general.color") {
|
|
cview.Styles.PrimitiveBackgroundColor = GetColor("bg")
|
|
} // Otherwise it's black by default
|
|
|
|
return nil
|
|
}
|