From e9e268d945f539bd229e46648e8e8fb83955ab83 Mon Sep 17 00:00:00 2001 From: Andinus Date: Sat, 25 Apr 2020 17:02:47 +0530 Subject: Add configDir & configFile function --- config.go | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 config.go diff --git a/config.go b/config.go new file mode 100644 index 0000000..1045f3d --- /dev/null +++ b/config.go @@ -0,0 +1,43 @@ +package main + +import ( + "fmt" + "os" +) + +// configFile returns the config file for pavo. It is +// configDir/pavo.json by default but can be changed by setting +// PAVO_CONFIG_FILE environment variable. If you set this then no need +// to set PAVO_CONFIG_DIR. +func configFile() (configFile string) { + configFile = os.Getenv("PAVO_CONFIG_FILE") + + if len(configFile) == 0 { + configFile = fmt.Sprintf("%s/%s", + configDir(), + "pavo.json") + } + + return +} + +// configDir returns the config directory for pavo. First +// PAVO_CONFIG_DIR environment variable is checked, if it doesn't +// exist then XDG_CONFIG_HOME & if that is not set either then we +// assume it to be the default value which is $HOME/.config according +// to XDG Base Directory Specification. +func configDir() (configDir string) { + configDir = os.Getenv("PAVO_CONFIG_DIR") + + if len(configDir) == 0 { + configDir = os.Getenv("XDG_CONFIG_HOME") + } + + if len(configDir) == 0 { + configDir = fmt.Sprintf("%s/%s", + os.Getenv("HOME"), + ".config") + } + + return +} -- cgit 1.4.1-2-gfad0