git-lfs/git/config.go

147 lines
4.0 KiB
Go
Raw Normal View History

2017-10-18 18:22:45 +00:00
package git
import (
"os"
"path/filepath"
2017-10-18 18:22:45 +00:00
"strings"
"sync"
"github.com/git-lfs/git-lfs/subprocess"
2017-10-18 18:22:45 +00:00
)
// Configuration can fetch or modify the current Git config and track the Git
// version.
type Configuration struct {
WorkDir string
GitDir string
version *string
2017-10-18 18:22:45 +00:00
mu sync.Mutex
}
func NewConfig(workdir, gitdir string) *Configuration {
if len(gitdir) == 0 && len(workdir) > 0 {
gitdir = filepath.Join(workdir, ".git")
}
return &Configuration{WorkDir: workdir, GitDir: gitdir}
}
2017-10-18 18:22:45 +00:00
func ParseConfigLines(lines string, onlySafeKeys bool) *ConfigurationSource {
return &ConfigurationSource{
Lines: strings.Split(lines, "\n"),
OnlySafeKeys: onlySafeKeys,
}
}
type ConfigurationSource struct {
Lines []string
OnlySafeKeys bool
}
// Find returns the git config value for the key
func (c *Configuration) Find(val string) string {
output, _ := c.gitConfig(val)
2017-10-18 18:22:45 +00:00
return output
}
// FindGlobal returns the git config value global scope for the key
2017-10-18 18:52:24 +00:00
func (c *Configuration) FindGlobal(key string) string {
output, _ := c.gitConfig("--global", key)
2017-10-18 18:22:45 +00:00
return output
}
// FindSystem returns the git config value in system scope for the key
2017-10-18 18:52:24 +00:00
func (c *Configuration) FindSystem(key string) string {
output, _ := c.gitConfig("--system", key)
2017-10-18 18:22:45 +00:00
return output
}
// Find returns the git config value for the key
2017-10-18 18:52:24 +00:00
func (c *Configuration) FindLocal(key string) string {
output, _ := c.gitConfig("--local", key)
2017-10-18 18:22:45 +00:00
return output
}
// SetGlobal sets the git config value for the key in the global config
func (c *Configuration) SetGlobal(key, val string) (string, error) {
return c.gitConfig("--global", "--replace-all", key, val)
2017-10-18 18:22:45 +00:00
}
// SetSystem sets the git config value for the key in the system config
func (c *Configuration) SetSystem(key, val string) (string, error) {
return c.gitConfig("--system", "--replace-all", key, val)
2017-10-18 18:22:45 +00:00
}
// UnsetGlobalSection removes the entire named section from the global config
func (c *Configuration) UnsetGlobalSection(key string) (string, error) {
return c.gitConfig("--global", "--remove-section", key)
2017-10-18 18:22:45 +00:00
}
// UnsetSystemSection removes the entire named section from the system config
func (c *Configuration) UnsetSystemSection(key string) (string, error) {
return c.gitConfig("--system", "--remove-section", key)
2017-10-18 18:22:45 +00:00
}
// UnsetLocalSection removes the entire named section from the system config
func (c *Configuration) UnsetLocalSection(key string) (string, error) {
return c.gitConfig("--local", "--remove-section", key)
2017-10-18 18:22:45 +00:00
}
// SetLocal sets the git config value for the key in the specified config file
2017-10-26 01:20:35 +00:00
func (c *Configuration) SetLocal(key, val string) (string, error) {
return c.gitConfig("--replace-all", key, val)
2017-10-18 18:22:45 +00:00
}
// UnsetLocalKey removes the git config value for the key from the specified config file
2017-10-26 01:20:35 +00:00
func (c *Configuration) UnsetLocalKey(key string) (string, error) {
return c.gitConfig("--unset", key)
2017-10-18 18:22:45 +00:00
}
func (c *Configuration) Sources(optionalFilename string) ([]*ConfigurationSource, error) {
gitconfig, err := c.Source()
if err != nil {
return nil, err
}
fileconfig, err := c.FileSource(optionalFilename)
if err != nil && !os.IsNotExist(err) {
return nil, err
}
configs := make([]*ConfigurationSource, 0, 2)
if fileconfig != nil {
configs = append(configs, fileconfig)
}
return append(configs, gitconfig), nil
}
func (c *Configuration) FileSource(filename string) (*ConfigurationSource, error) {
if _, err := os.Stat(filename); err != nil {
return nil, err
}
out, err := c.gitConfig("-l", "-f", filename)
2017-10-18 18:22:45 +00:00
if err != nil {
return nil, err
}
return ParseConfigLines(out, true), nil
}
func (c *Configuration) Source() (*ConfigurationSource, error) {
out, err := c.gitConfig("-l")
2017-10-18 18:22:45 +00:00
if err != nil {
return nil, err
}
return ParseConfigLines(out, false), nil
}
func (c *Configuration) gitConfig(args ...string) (string, error) {
args = append([]string{"config"}, args...)
subprocess.Trace("git", args...)
cmd := subprocess.ExecCommand("git", args...)
if len(c.GitDir) > 0 {
cmd.Dir = c.GitDir
}
return subprocess.Output(cmd)
}