mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-12-21 04:50:57 +01:00
Instead of requiring the directory to be created by the user. Let aerc create it if necessary with restrictive permissions. Signed-off-by: Robin Jarry <robin@jarry.cc> Reviewed-by: Tristan Partin <tristan@partin.io>
102 lines
2.8 KiB
Go
102 lines
2.8 KiB
Go
package config
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
"sync/atomic"
|
|
|
|
"git.sr.ht/~rjarry/aerc/lib/log"
|
|
"git.sr.ht/~rjarry/aerc/lib/xdg"
|
|
"github.com/go-ini/ini"
|
|
"github.com/mattn/go-isatty"
|
|
)
|
|
|
|
type GeneralConfig struct {
|
|
DefaultSavePath string `ini:"default-save-path"`
|
|
PgpProvider string `ini:"pgp-provider" default:"auto" parse:"ParsePgpProvider"`
|
|
UnsafeAccountsConf bool `ini:"unsafe-accounts-conf"`
|
|
LogFile string `ini:"log-file"`
|
|
LogLevel log.LogLevel `ini:"log-level" default:"info" parse:"ParseLogLevel"`
|
|
DisableIPC bool `ini:"disable-ipc"`
|
|
DisableIPCMailto bool `ini:"disable-ipc-mailto"`
|
|
DisableIPCMbox bool `ini:"disable-ipc-mbox"`
|
|
EnableOSC8 bool `ini:"enable-osc8" default:"false"`
|
|
Term string `ini:"term" default:"xterm-256color"`
|
|
DefaultMenuCmd string `ini:"default-menu-cmd"`
|
|
QuakeMode bool `ini:"enable-quake-mode" default:"false"`
|
|
UsePinentry bool `ini:"use-terminal-pinentry" default:"false"`
|
|
TempDir string `ini:"temporary-directory" default:"" parse:"ParseTempDir"`
|
|
}
|
|
|
|
var generalConfig atomic.Pointer[GeneralConfig]
|
|
|
|
func General() *GeneralConfig {
|
|
return generalConfig.Load()
|
|
}
|
|
|
|
func parseGeneral(file *ini.File) (*GeneralConfig, error) {
|
|
var logFile *os.File
|
|
|
|
conf := new(GeneralConfig)
|
|
|
|
if err := MapToStruct(file.Section("general"), conf, true); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
useStdout := false
|
|
if !isatty.IsTerminal(os.Stdout.Fd()) {
|
|
logFile = os.Stdout
|
|
useStdout = true
|
|
// redirected to file, force TRACE level
|
|
conf.LogLevel = log.TRACE
|
|
} else if conf.LogFile != "" {
|
|
var err error
|
|
path := xdg.ExpandHome(conf.LogFile)
|
|
err = os.MkdirAll(filepath.Dir(path), 0o700)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("log-file: %w", err)
|
|
}
|
|
logFile, err = os.OpenFile(path,
|
|
os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0o600)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
err := log.Init(logFile, useStdout, conf.LogLevel)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
log.Debugf("aerc.conf: [general] %#v", conf)
|
|
|
|
return conf, nil
|
|
}
|
|
|
|
func (gen *GeneralConfig) ParseLogLevel(sec *ini.Section, key *ini.Key) (log.LogLevel, error) {
|
|
return log.ParseLevel(key.String())
|
|
}
|
|
|
|
func (gen *GeneralConfig) ParsePgpProvider(sec *ini.Section, key *ini.Key) (string, error) {
|
|
switch key.String() {
|
|
case "gpg", "internal", "auto":
|
|
return key.String(), nil
|
|
}
|
|
return "", fmt.Errorf("must be either auto, gpg or internal")
|
|
}
|
|
|
|
func (gen *GeneralConfig) ParseTempDir(_ *ini.Section, key *ini.Key) (string, error) {
|
|
tmp := key.String()
|
|
if tmp == "" {
|
|
tmp = os.TempDir()
|
|
}
|
|
tmpPath := xdg.ExpandHome(tmp)
|
|
err := os.MkdirAll(tmpPath, 0o700)
|
|
if err != nil && !errors.Is(err, fs.ErrExist) {
|
|
return "", err
|
|
}
|
|
return tmpPath, nil
|
|
}
|