2024-12-01 10:46:32 -06:00
|
|
|
package gitpb
|
|
|
|
|
|
|
|
// functions to import and export the protobuf
|
|
|
|
// data to and from config files
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"go.wit.com/log"
|
|
|
|
)
|
|
|
|
|
2024-12-07 16:50:26 -06:00
|
|
|
// write to ~/.config/forge/ unless ENV{FORGE_GOSRC} is set
|
2024-12-01 10:46:32 -06:00
|
|
|
func (all *Repos) ConfigSave() error {
|
2024-12-07 16:50:26 -06:00
|
|
|
if os.Getenv("FORGE_GOSRC") == "" {
|
2024-12-01 10:46:32 -06:00
|
|
|
homeDir, _ := os.UserHomeDir()
|
|
|
|
fullpath := filepath.Join(homeDir, ".config/forge")
|
2024-12-07 16:50:26 -06:00
|
|
|
os.Setenv("FORGE_GOSRC", fullpath)
|
2024-12-01 10:46:32 -06:00
|
|
|
}
|
|
|
|
if all == nil {
|
|
|
|
log.Warn("gitpb all == nil")
|
2024-12-01 22:37:11 -06:00
|
|
|
return errors.New("gitpb.ConfigSave() all == nil")
|
2024-12-01 10:46:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err := all.Marshal()
|
|
|
|
if err != nil {
|
|
|
|
log.Info("gitpb proto.Marshal() failed len", len(data), err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Info("gitpb.ConfigSave() repos.Marshal() worked len", len(data))
|
|
|
|
configWrite("repos.pb", data)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// load the ~/.config/forge/ files
|
|
|
|
func (all *Repos) ConfigLoad() error {
|
2024-12-07 16:50:26 -06:00
|
|
|
if os.Getenv("FORGE_GOSRC") == "" {
|
2024-12-01 10:46:32 -06:00
|
|
|
homeDir, _ := os.UserHomeDir()
|
|
|
|
fullpath := filepath.Join(homeDir, ".config/forge")
|
2024-12-07 16:50:26 -06:00
|
|
|
os.Setenv("FORGE_GOSRC", fullpath)
|
2024-12-01 10:46:32 -06:00
|
|
|
}
|
|
|
|
var data []byte
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if data, err = loadFile("repos.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-12-05 12:37:24 -06:00
|
|
|
log.Warn("gitpb.ConfigLoad() repos.pb is empty")
|
|
|
|
return errors.New("gitpb.ConfigLoad() repos.pb is empty")
|
|
|
|
}
|
|
|
|
if all.Repos == nil {
|
2024-12-13 00:19:33 -06:00
|
|
|
// log.Warn("gitpb.ConfigLoad() all.Repos == nil")
|
2024-12-05 12:37:24 -06:00
|
|
|
} else {
|
2024-12-13 00:19:33 -06:00
|
|
|
log.Warn("gitpb.ConfigLoad() error. should be zero. all.Repos.Len() =", all.Len())
|
2024-12-01 10:46:32 -06:00
|
|
|
}
|
|
|
|
if err = all.Unmarshal(data); err != nil {
|
2024-12-05 12:37:24 -06:00
|
|
|
log.Warn("gitpb.ConfigLoad() failed", err)
|
|
|
|
if all.Repos == nil {
|
|
|
|
log.Warn("gitpb.ConfigLoad() all.Repos == nil")
|
|
|
|
} else {
|
|
|
|
log.Warn("gitpb.ConfigLoad() all.Repos.Len()", all.Len())
|
|
|
|
log.Warn("gitpb.ConfigLoad() trying to resave the file")
|
|
|
|
all.ConfigSave()
|
|
|
|
}
|
2024-12-01 10:46:32 -06:00
|
|
|
return err
|
|
|
|
}
|
2024-12-13 00:19:33 -06:00
|
|
|
log.Info("gitpb.Init() ", len(all.Repos), "repos in ~/.config/forge/repos.pb")
|
2024-12-01 10:46:32 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadFile(filename string) ([]byte, error) {
|
2024-12-07 16:50:26 -06:00
|
|
|
fullname := filepath.Join(os.Getenv("FORGE_GOSRC"), filename)
|
2024-12-01 10:46:32 -06:00
|
|
|
data, err := os.ReadFile(fullname)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// log.Info("open config file :", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func configWrite(filename string, data []byte) error {
|
2024-12-07 16:50:26 -06:00
|
|
|
fullname := filepath.Join(os.Getenv("FORGE_GOSRC"), filename)
|
2024-12-01 10:46:32 -06:00
|
|
|
|
2024-12-11 13:55:36 -06:00
|
|
|
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
|
2024-12-01 10:46:32 -06:00
|
|
|
defer cfgfile.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("open config file :", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
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"))
|
|
|
|
}
|
|
|
|
cfgfile.Write(data)
|
|
|
|
return nil
|
|
|
|
}
|