-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall.go
154 lines (128 loc) · 2.88 KB
/
install.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"strings"
"github.com/samber/lo"
"github.com/dirk/quickhook/repo"
)
func install(repo *repo.Repo, quickhook string, prompt bool) error {
hooks, err := listHooks(repo)
if err != nil {
return err
}
for _, hook := range hooks {
shimPath := path.Join(".git", "hooks", hook)
if prompt {
shouldInstall, err := promptForInstallShim(os.Stdin, repo, shimPath)
if err != nil {
return err
}
if !shouldInstall {
fmt.Printf("Skipping installing shim %v\n", shimPath)
continue
}
}
installShim(repo, shimPath, quickhook, hook, prompt)
fmt.Printf("Installed shim %v\n", shimPath)
}
return nil
}
func listHooks(repo *repo.Repo) ([]string, error) {
hooksPath := path.Join(repo.Root, ".quickhook")
entries, err := ioutil.ReadDir(hooksPath)
if err != nil {
if os.IsNotExist(err) {
fmt.Fprintf(os.Stderr, "Missing hooks directory: %v\n", hooksPath)
os.Exit(66) // EX_NOINPUT
} else {
return nil, err
}
}
var hooks []string
for _, entry := range entries {
name := entry.Name()
// Rename the mutating hook to the regular pre-commit one.
if name == "pre-commit-mutating" {
name = "pre-commit"
}
isHook := name == "pre-commit" ||
name == "commit-msg"
if entry.IsDir() && isHook {
hooks = append(hooks, name)
}
}
return lo.Uniq(hooks), nil
}
func promptForInstallShim(stdin io.Reader, repo *repo.Repo, shimPath string) (bool, error) {
_, err := os.Stat(path.Join(repo.Root, shimPath))
exists := true
if os.IsNotExist(err) {
exists = false
} else if err != nil {
return false, err
}
var message string
if exists {
message = fmt.Sprintf("Overwrite existing file %v?", shimPath)
} else {
message = fmt.Sprintf("Create file %v?", shimPath)
}
scanner := bufio.NewScanner(stdin)
for {
fmt.Printf("%v [yn] ", message)
if !scanner.Scan() {
return false, scanner.Err()
}
reply := strings.ToLower(scanner.Text())
if len(reply) == 0 {
continue
}
switch reply[0] {
case 'y':
return true, nil
case 'n':
return false, nil
default:
continue
}
}
}
func installShim(repo *repo.Repo, shimPath, quickhook, hook string, prompt bool) error {
command, err := shimCommandForHook(quickhook, hook)
if err != nil {
return err
}
lines := []string{
"#!/bin/sh",
command,
"", // So we get a trailing newline when we join
}
file, err := os.Create(shimPath)
if err != nil {
return err
}
defer file.Close()
err = os.Chmod(shimPath, 0755)
if err != nil {
return err
}
file.WriteString(strings.Join(lines, "\n"))
return nil
}
func shimCommandForHook(quickhook, hook string) (string, error) {
var args string
switch hook {
case "pre-commit":
args = "pre-commit"
case "commit-msg":
args = "commit-msg $1"
default:
return "", fmt.Errorf("invalid hook: %v", hook)
}
return fmt.Sprintf("%s hook %s", quickhook, args), nil
}