git-lfs/lfs/setup.go

127 lines
2.6 KiB
Go
Raw Normal View History

2015-03-19 19:30:55 +00:00
package lfs
import (
"errors"
"fmt"
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/git"
"io"
2014-06-04 14:29:19 +00:00
"io/ioutil"
"os"
"path/filepath"
"regexp"
"strings"
)
2014-06-04 14:29:19 +00:00
var (
2014-06-05 18:48:23 +00:00
valueRegexp = regexp.MustCompile("\\Agit[\\-\\s]media")
NotInARepositoryError = errors.New("Not in a repository")
prePushHook = "#!/bin/sh\ngit lfs pre-push \"$@\""
prePushUpgrades = map[string]bool{
"#!/bin/sh\ngit lfs push --stdin $*": true,
"#!/bin/sh\ngit lfs push --stdin \"$@\"": true,
}
2014-06-04 14:29:19 +00:00
)
2014-06-05 18:48:23 +00:00
type HookExists struct {
Name string
Path string
Contents string
2014-06-05 18:48:23 +00:00
}
func (e *HookExists) Error() string {
return fmt.Sprintf("Hook already exists: %s\n\n%s\n", e.Name, e.Contents)
2014-06-05 18:48:23 +00:00
}
func InstallHooks(force bool) error {
if !InRepo() {
2014-06-05 18:48:23 +00:00
return NotInARepositoryError
}
if err := os.MkdirAll(filepath.Join(LocalGitDir, "hooks"), 0755); err != nil {
return err
}
2014-06-04 14:29:19 +00:00
hookPath := filepath.Join(LocalGitDir, "hooks", "pre-push")
if _, err := os.Stat(hookPath); err == nil && !force {
return upgradeHookOrError(hookPath, "pre-push", prePushHook, prePushUpgrades)
2014-06-04 14:29:19 +00:00
} else {
return ioutil.WriteFile(hookPath, []byte(prePushHook+"\n"), 0755)
}
return nil
}
func upgradeHookOrError(hookPath, hookName, hook string, upgrades map[string]bool) error {
file, err := os.Open(hookPath)
if err != nil {
return err
2014-06-04 14:29:19 +00:00
}
by, err := ioutil.ReadAll(io.LimitReader(file, 1024))
file.Close()
if err != nil {
return err
}
contents := strings.TrimSpace(string(by))
if contents == hook {
return nil
}
if upgrades[contents] {
return ioutil.WriteFile(hookPath, []byte(hook+"\n"), 0755)
}
return &HookExists{hookName, hookPath, contents}
}
2014-06-05 18:48:23 +00:00
func InstallFilters() error {
var err error
err = setFilter("clean")
if err == nil {
err = setFilter("smudge")
}
if err == nil {
err = requireFilters()
}
return err
}
2014-06-05 18:48:23 +00:00
func setFilter(filterName string) error {
2015-03-19 19:30:55 +00:00
key := fmt.Sprintf("filter.lfs.%s", filterName)
value := fmt.Sprintf("git lfs %s %%f", filterName)
existing := git.Config.Find(key)
if shouldReset(existing) {
git.Config.UnsetGlobal(key)
git.Config.SetGlobal(key, value)
} else if existing != value {
2014-06-05 18:48:23 +00:00
return fmt.Errorf("The %s filter should be \"%s\" but is \"%s\"", filterName, value, existing)
}
2014-06-05 18:48:23 +00:00
return nil
}
2014-06-05 18:48:23 +00:00
func requireFilters() error {
2015-03-19 19:30:55 +00:00
key := "filter.lfs.required"
value := "true"
existing := git.Config.Find(key)
if shouldReset(existing) {
git.Config.UnsetGlobal(key)
git.Config.SetGlobal(key, value)
} else if existing != value {
2015-03-19 19:30:55 +00:00
return errors.New("Git LFS filters should be required but are not.")
}
2014-06-05 18:48:23 +00:00
return nil
}
func shouldReset(value string) bool {
if len(value) == 0 {
return true
}
return valueRegexp.MatchString(value)
}