git-lfs/lfs/setup.go

160 lines
3.9 KiB
Go
Raw Normal View History

2015-03-19 19:30:55 +00:00
package lfs
import (
"errors"
"fmt"
"io"
2014-06-04 14:29:19 +00:00
"io/ioutil"
"os"
"path/filepath"
"regexp"
"strings"
2015-05-13 19:43:41 +00:00
"github.com/github/git-lfs/git"
)
2014-06-04 14:29:19 +00:00
var (
valueRegexp = regexp.MustCompile("\\Agit[\\-\\s]media")
prePushHook = "#!/bin/sh\ncommand -v git-lfs >/dev/null 2>&1 || { echo >&2 \"\\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\\n\"; exit 2; }\ngit lfs pre-push \"$@\""
prePushUpgrades = map[string]bool{
"#!/bin/sh\ngit lfs push --stdin $*": true,
"#!/bin/sh\ngit lfs push --stdin \"$@\"": true,
"#!/bin/sh\ngit lfs pre-push \"$@\"": true,
"#!/bin/sh\ncommand -v git-lfs >/dev/null 2>&1 || { echo >&2 \"\\nThis repository has been set up with Git LFS but Git LFS is not installed.\\n\"; exit 0; }\ngit lfs pre-push \"$@\"": true,
"#!/bin/sh\ncommand -v git-lfs >/dev/null 2>&1 || { echo >&2 \"\\nThis repository has been set up with Git LFS but Git LFS is not installed.\\n\"; exit 2; }\ngit lfs pre-push \"$@\"": 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() {
return newInvalidRepoError(nil)
}
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)
}
2015-05-12 08:45:06 +00:00
return ioutil.WriteFile(hookPath, []byte(prePushHook+"\n"), 0755)
}
2015-07-10 16:43:20 +00:00
func UninstallHooks() error {
if !InRepo() {
return newInvalidRepoError(nil)
2015-07-10 16:43:20 +00:00
}
prePushHookPath := filepath.Join(LocalGitDir, "hooks", "pre-push")
file, err := os.Open(prePushHookPath)
if err != nil {
// hook doesn't exist, our work here is done
return nil
}
by, err := ioutil.ReadAll(io.LimitReader(file, 1024))
2015-07-10 16:43:20 +00:00
file.Close()
if err != nil {
return err
}
contents := strings.TrimSpace(string(by))
if contents == prePushHook || prePushUpgrades[contents] {
2015-07-10 16:43:20 +00:00
return os.RemoveAll(prePushHookPath)
}
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}
}
2015-07-06 23:10:47 +00:00
func InstallFilters(force bool) error {
if err := setFilter("clean", force); err != nil {
return err
2014-06-05 18:48:23 +00:00
}
2015-07-06 23:10:47 +00:00
if err := setFilter("smudge", force); err != nil {
return err
2014-06-05 18:48:23 +00:00
}
2015-07-06 23:10:47 +00:00
if err := requireFilters(force); err != nil {
return err
}
return nil
}
2015-07-10 16:43:20 +00:00
func UninstallFilters() error {
git.Config.UnsetGlobalSection("filter.lfs")
2015-07-10 16:43:20 +00:00
return nil
}
2015-07-06 23:10:47 +00:00
func setFilter(filterName string, force bool) 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)
2015-07-06 23:10:47 +00:00
if force || 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
}
2015-07-06 23:10:47 +00:00
func requireFilters(force bool) error {
2015-03-19 19:30:55 +00:00
key := "filter.lfs.required"
value := "true"
existing := git.Config.Find(key)
2015-07-06 23:10:47 +00:00
if force || 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)
}