cchat-gtk/internal/ui/config/file.go

68 lines
1.3 KiB
Go

package config
import (
"encoding/json"
"log"
"os"
"path/filepath"
"github.com/pkg/errors"
)
var DirPath string
func init() {
// Load the config dir:
d, err := os.UserConfigDir()
if err != nil {
log.Fatalln("Failed to get config dir:", err)
}
// Fill Path:
DirPath = filepath.Join(d, "cchat-gtk")
// Ensure it exists:
if err := os.Mkdir(DirPath, 0755|os.ModeDir); err != nil && !os.IsExist(err) {
log.Fatalln("Failed to make config dir:", err)
}
}
func MarshalToFile(file string, from interface{}) error {
file = filepath.Join(DirPath, file)
f, err := os.OpenFile(file, os.O_CREATE|os.O_WRONLY|os.O_SYNC|os.O_TRUNC, 0644)
if err != nil {
return errors.Wrap(err, "Failed to open file")
}
defer f.Close()
enc := json.NewEncoder(f)
enc.SetIndent("", "\t")
if err := enc.Encode(from); err != nil {
return errors.Wrap(err, "Failed to marshal given struct")
}
return nil
}
func UnmarshalFromFile(file string, to interface{}) error {
file = filepath.Join(DirPath, file)
f, err := os.OpenFile(file, os.O_RDONLY, 0644)
if err != nil {
// Ignore does not exist error, leave struct as it is.
if os.IsNotExist(err) {
return nil
}
return err
}
defer f.Close()
if err := json.NewDecoder(f).Decode(to); err != nil {
return errors.Wrap(err, "Failed to unmarshal to given struct")
}
return nil
}