aboutsummaryrefslogblamecommitdiffstats
path: root/storage/filesystem/config.go
blob: 84252eb5c6e8c657d22549b55f705d17cea6f860 (plain) (tree)
1
2
3
4
5
6
7
8


                  
                                         
                                                           


                                                                     





                                




                                                                           
                            



                               


                                                          

         
                                  


                                                                   
                            



                               



                                                         





                                                                 













                                                          


                                                         







                                                       

 
                                                           
                                



                               
                       
 







                                    

 














                                                            

 













                                                                
 
package filesystem

import (
	"gopkg.in/src-d/go-git.v4/config"
	gitconfig "gopkg.in/src-d/go-git.v4/formats/config"
	"gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit"
)

const (
	remoteSection = "remote"
	fetchKey      = "fetch"
	urlKey        = "url"
)

type ConfigStorage struct {
	dir *dotgit.DotGit
}

func (c *ConfigStorage) Remote(name string) (*config.RemoteConfig, error) {
	cfg, err := c.read()
	if err != nil {
		return nil, err
	}

	s := cfg.Section(remoteSection).Subsection(name)
	if s == nil {
		return nil, config.ErrRemoteConfigNotFound
	}

	return parseRemote(s), nil
}

func (c *ConfigStorage) Remotes() ([]*config.RemoteConfig, error) {
	cfg, err := c.read()
	if err != nil {
		return nil, err
	}

	remotes := []*config.RemoteConfig{}
	sect := cfg.Section(remoteSection)
	for _, s := range sect.Subsections {
		remotes = append(remotes, parseRemote(s))
	}

	return remotes, nil
}

func (c *ConfigStorage) SetRemote(r *config.RemoteConfig) error {
	cfg, err := c.read()
	if err != nil {
		return err
	}

	s := cfg.Section(remoteSection).Subsection(r.Name)
	s.Name = r.Name
	s.SetOption(urlKey, r.URL)
	s.RemoveOption(fetchKey)
	for _, rs := range r.Fetch {
		s.AddOption(fetchKey, rs.String())
	}

	return c.write(cfg)
}

func (c *ConfigStorage) DeleteRemote(name string) error {
	cfg, err := c.read()
	if err != nil {
		return err
	}

	cfg = cfg.RemoveSubsection(remoteSection, name)

	return c.write(cfg)
}

func (c *ConfigStorage) read() (*gitconfig.Config, error) {
	f, err := c.dir.Config()
	if err != nil {
		return nil, err
	}

	defer f.Close()

	cfg := gitconfig.New()
	d := gitconfig.NewDecoder(f)
	err = d.Decode(cfg)
	if err != nil {
		return nil, err
	}

	return cfg, nil
}

func (c *ConfigStorage) write(cfg *gitconfig.Config) error {
	f, err := c.dir.Config()
	if err != nil {
		return err
	}

	defer f.Close()

	e := gitconfig.NewEncoder(f)
	err = e.Encode(cfg)
	if err != nil {
		return err
	}

	return nil
}

func parseRemote(s *gitconfig.Subsection) *config.RemoteConfig {
	fetch := []config.RefSpec{}
	for _, f := range s.Options.GetAll(fetchKey) {
		rs := config.RefSpec(f)
		if rs.IsValid() {
			fetch = append(fetch, rs)
		}
	}

	return &config.RemoteConfig{
		Name:  s.Name,
		URL:   s.Option(urlKey),
		Fetch: fetch,
	}
}