diff options
author | amine <hilalyamine@gmail.com> | 2019-11-01 22:01:21 +0100 |
---|---|---|
committer | amine <hilalyamine@gmail.com> | 2019-11-01 22:01:21 +0100 |
commit | 618f896f667b272c1272b1289c8ff3f3310c3168 (patch) | |
tree | 082d43b849c15c296dd5d8eb8d5229d8d0347e8e | |
parent | b85b2c57a73a6068fdc446866f79115315082997 (diff) | |
download | git-bug-618f896f667b272c1272b1289c8ff3f3310c3168.tar.gz |
cache: update RepoCache and identity to use new repository Config
-rw-r--r-- | cache/repo_cache.go | 35 | ||||
-rw-r--r-- | identity/identity.go | 8 |
2 files changed, 14 insertions, 29 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index bc095856..ec4cf436 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -99,6 +99,16 @@ func NewRepoCache(r repository.ClockedRepo) (*RepoCache, error) { return c, c.write() } +// LocalConfig give access to the repository scoped configuration +func (c *RepoCache) LocalConfig() repository.Config { + return c.repo.LocalConfig() +} + +// GlobalConfig give access to the git global configuration +func (c *RepoCache) GlobalConfig() repository.Config { + return c.repo.GlobalConfig() +} + // GetPath returns the path to the repo. func (c *RepoCache) GetPath() string { return c.repo.GetPath() @@ -124,31 +134,6 @@ func (c *RepoCache) GetUserEmail() (string, error) { return c.repo.GetUserEmail() } -// StoreConfig store a single key/value pair in the config of the repo -func (c *RepoCache) StoreConfig(key string, value string) error { - return c.repo.StoreConfig(key, value) -} - -// ReadConfigs read all key/value pair matching the key prefix -func (c *RepoCache) ReadConfigs(keyPrefix string) (map[string]string, error) { - return c.repo.ReadConfigs(keyPrefix) -} - -// ReadConfigBool read a single boolean value from the config -func (c *RepoCache) ReadConfigBool(key string) (bool, error) { - return c.repo.ReadConfigBool(key) -} - -// ReadConfigBool read a single string value from the config -func (c *RepoCache) ReadConfigString(key string) (string, error) { - return c.repo.ReadConfigString(key) -} - -// RmConfigs remove all key/value pair matching the key prefix -func (c *RepoCache) RmConfigs(keyPrefix string) error { - return c.repo.RmConfigs(keyPrefix) -} - func (c *RepoCache) lock() error { lockPath := repoLockFilePath(c.repo) diff --git a/identity/identity.go b/identity/identity.go index 765b77cd..b7d44a4b 100644 --- a/identity/identity.go +++ b/identity/identity.go @@ -220,7 +220,7 @@ func NewFromGitUser(repo repository.Repo) (*Identity, error) { // IsUserIdentitySet tell if the user identity is correctly set. func IsUserIdentitySet(repo repository.RepoCommon) (bool, error) { - configs, err := repo.ReadConfigs(identityConfigKey) + configs, err := repo.LocalConfig().ReadAll(identityConfigKey) if err != nil { return false, err } @@ -234,12 +234,12 @@ func IsUserIdentitySet(repo repository.RepoCommon) (bool, error) { // SetUserIdentity store the user identity's id in the git config func SetUserIdentity(repo repository.RepoCommon, identity *Identity) error { - return repo.StoreConfig(identityConfigKey, identity.Id().String()) + return repo.LocalConfig().StoreString(identityConfigKey, identity.Id().String()) } // GetUserIdentity read the current user identity, set with a git config entry func GetUserIdentity(repo repository.Repo) (*Identity, error) { - configs, err := repo.ReadConfigs(identityConfigKey) + configs, err := repo.LocalConfig().ReadAll(identityConfigKey) if err != nil { return nil, err } @@ -263,7 +263,7 @@ func GetUserIdentity(repo repository.Repo) (*Identity, error) { i, err := ReadLocal(repo, id) if err == ErrIdentityNotExist { - innerErr := repo.RmConfigs(identityConfigKey) + innerErr := repo.LocalConfig().RemoveAll(identityConfigKey) if innerErr != nil { _, _ = fmt.Fprintln(os.Stderr, errors.Wrap(innerErr, "can't clear user identity").Error()) } |