-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
125 lines (104 loc) · 2.27 KB
/
utils.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
package commands
import (
"bufio"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/atotto/clipboard"
"github.com/github/hub/git"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
)
type stringSliceValue []string
func (s *stringSliceValue) Set(val string) error {
*s = append(*s, val)
return nil
}
func (s *stringSliceValue) String() string {
return fmt.Sprintf("%s", *s)
}
type listFlag []string
func (l *listFlag) String() string {
return strings.Join([]string(*l), ",")
}
func (l *listFlag) Set(value string) error {
for _, flag := range strings.Split(value, ",") {
*l = append(*l, flag)
}
return nil
}
type messageBlocks []string
func (m *messageBlocks) String() string {
return strings.Join([]string(*m), "\n\n")
}
func (m *messageBlocks) Set(value string) error {
*m = append(*m, value)
return nil
}
func isCloneable(file string) bool {
f, err := os.Open(file)
if err != nil {
return false
}
defer f.Close()
fi, err := f.Stat()
if err != nil {
return false
}
if fi.IsDir() {
gitf, err := os.Open(filepath.Join(file, ".git"))
if err == nil {
gitf.Close()
return true
} else {
return git.IsGitDir(file)
}
} else {
reader := bufio.NewReader(f)
line, err := reader.ReadString('\n')
if err == nil {
return strings.Contains(line, "git bundle")
} else {
return false
}
}
}
func isEmptyDir(path string) bool {
fullPath := filepath.Join(path, "*")
match, _ := filepath.Glob(fullPath)
return match == nil
}
func msgFromFile(filename string) (string, error) {
var content []byte
var err error
if filename == "-" {
content, err = ioutil.ReadAll(os.Stdin)
} else {
content, err = ioutil.ReadFile(filename)
}
if err != nil {
return "", err
}
return strings.Replace(string(content), "\r\n", "\n", -1), nil
}
func printBrowseOrCopy(args *Args, msg string, openBrowser bool, performCopy bool) {
if performCopy {
if err := clipboard.WriteAll(msg); err != nil {
ui.Errorf("Error copying %s to clipboard:\n%s\n", msg, err.Error())
}
}
if openBrowser {
launcher, err := utils.BrowserLauncher()
utils.Check(err)
args.Replace(launcher[0], "", launcher[1:]...)
args.AppendParams(msg)
}
if !openBrowser && !performCopy {
args.AfterFn(func() error {
ui.Println(msg)
return nil
})
}
}