forgepb/config.go

157 lines
4.3 KiB
Go
Raw Permalink Normal View History

2024-11-20 09:31:24 -06:00
package forgepb
// functions to import and export the protobuf
// data to and from config files
import (
"errors"
"os"
"path/filepath"
"go.wit.com/log"
)
2024-11-21 10:27:40 -06:00
// write to ~/.config/forge/ unless ENV{FORGE_HOME} is set
2024-11-20 09:31:24 -06:00
func (m *Repos) ConfigSave() error {
2024-11-20 11:02:41 -06:00
if os.Getenv("FORGE_HOME") == "" {
homeDir, _ := os.UserHomeDir()
fullpath := filepath.Join(homeDir, ".config/forge")
os.Setenv("FORGE_HOME", fullpath)
}
// try to backup the current cluster config files
if err := backupConfig(); err != nil {
return err
}
2024-11-20 09:31:24 -06:00
data, err := m.Marshal()
if err != nil {
log.Info("proto.Marshal() failed len", len(data), err)
return err
}
log.Info("proto.Marshal() worked len", len(data))
configWrite("forge.pb", data)
s := m.FormatTEXT()
configWrite("forge.text", []byte(s))
2024-11-20 11:02:41 -06:00
s = m.FormatJSON()
configWrite("forge.json", []byte(s))
2024-11-20 09:31:24 -06:00
return nil
}
2024-11-21 10:27:40 -06:00
// load the ~/.config/forge/ files
func (c *Repos) ConfigLoad() error {
2024-11-20 12:11:13 -06:00
if os.Getenv("FORGE_HOME") == "" {
homeDir, _ := os.UserHomeDir()
fullpath := filepath.Join(homeDir, ".config/forge")
os.Setenv("FORGE_HOME", fullpath)
}
2024-11-20 10:31:25 -06:00
var data []byte
var err error
2024-11-21 10:27:40 -06:00
if c == nil {
// can't safely do c = new(Repo) if c is in a struct from the caller. notsure why
return errors.New("It's not safe to run ConfigLoad() on a nil")
2024-11-20 09:31:24 -06:00
}
2024-11-20 10:31:25 -06:00
if data, err = loadFile("forge.pb"); err != nil {
// something went wrong loading the file
return err
}
if data != nil {
// this means the forge.pb file exists and was read
if len(data) == 0 {
// todo: error out if the file is empty?
// try forge.text & forge.json?
}
2024-11-21 10:27:40 -06:00
if err = c.Unmarshal(data); err != nil {
2024-11-20 09:31:24 -06:00
log.Warn("broken forge.pb config file")
return err
}
2024-11-21 10:27:40 -06:00
log.Info("config load found", len(c.Repos), "repos")
2024-11-20 10:31:25 -06:00
return nil
}
// forge.db doesn't exist. try forge.text
// this lets the user hand edit the config
if data, err = loadFile("forge.text"); err != nil {
// something went wrong loading the file
2024-11-20 09:31:24 -06:00
return err
}
2024-11-20 10:31:25 -06:00
if data != nil {
// this means the forge.text file exists and was read
if len(data) == 0 {
// todo: error out if the file is empty?
}
2024-11-21 10:27:40 -06:00
if err = c.UnmarshalTEXT(data); err != nil {
2024-11-20 10:31:25 -06:00
log.Warn("broken forge.text config file")
return err
}
2024-11-21 10:27:40 -06:00
log.Info("config load found", len(c.Repos), "repos")
2024-11-20 12:11:13 -06:00
return nil
}
// forge.text doesn't exist. try forge.json
// this lets the user hand edit the config
if data, err = loadFile("forge.json"); err != nil {
// something went wrong loading the file
return err
}
if data != nil {
// this means the forge.text file exists and was read
if len(data) == 0 {
// todo: error out if the file is empty?
}
2024-11-21 10:27:40 -06:00
if err = c.UnmarshalJSON(data); err != nil {
2024-11-20 12:11:13 -06:00
log.Warn("broken forge.json config file")
return err
}
2024-11-21 10:27:40 -06:00
log.Info("config load found", len(c.Repos), "repos")
2024-11-20 10:31:25 -06:00
return nil
}
// first time user. make a template config file
2024-11-21 10:27:40 -06:00
c.SampleConfig()
2024-11-20 09:31:24 -06:00
return nil
}
func loadFile(filename string) ([]byte, error) {
2024-11-20 11:02:41 -06:00
fullname := filepath.Join(os.Getenv("FORGE_HOME"), filename)
2024-11-20 09:31:24 -06:00
data, err := os.ReadFile(fullname)
2024-11-20 10:31:25 -06:00
if errors.Is(err, os.ErrNotExist) {
// if file does not exist, just return nil. this
// will cause ConfigLoad() to try the next config file like "forge.text"
// because the user might want to edit the .config by hand
return nil, nil
}
2024-11-20 09:31:24 -06:00
if err != nil {
// log.Info("open config file :", err)
return nil, err
}
return data, nil
}
func configWrite(filename string, data []byte) error {
2024-11-20 11:02:41 -06:00
fullname := filepath.Join(os.Getenv("FORGE_HOME"), filename)
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
2024-11-20 09:31:24 -06:00
defer cfgfile.Close()
if err != nil {
log.Warn("open config file :", err)
return err
}
2024-11-20 23:51:28 -06:00
if filename == "forge.text" {
// add header
cfgfile.Write([]byte("# this file is automatically re-generated from forge.pb, however,\n"))
cfgfile.Write([]byte("# if you want to edit it by hand, you can:\n"))
cfgfile.Write([]byte("# stop forge; remove forge.pb; edit forge.text; start forge\n"))
cfgfile.Write([]byte("# this will cause the default behavior to fallback to parsing this file for the config\n"))
cfgfile.Write([]byte("\n"))
cfgfile.Write([]byte("# this file is intended to be used to customize settings on what\n"))
cfgfile.Write([]byte("# git repos you have write access to. That is, where you can run 'git push'\n"))
}
2024-11-20 09:31:24 -06:00
cfgfile.Write(data)
return nil
}