-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_files.go
221 lines (178 loc) · 4.39 KB
/
app_files.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package appfiles
import (
"crypto/sha1"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/gofileutils/fileutils"
securejoin "github.com/cyphar/filepath-securejoin"
)
const windowsPathPrefix = `\\?\`
//go:generate counterfeiter . AppFiles
type AppFiles interface {
AppFilesInDir(dir string) (appFiles []models.AppFileFields, err error)
CopyFiles(appFiles []models.AppFileFields, fromDir, toDir string) (err error)
CountFiles(directory string) int64
WalkAppFiles(dir string, onEachFile func(string, string) error) (err error)
}
type ApplicationFiles struct{}
func (appfiles ApplicationFiles) AppFilesInDir(dir string) ([]models.AppFileFields, error) {
appFiles := []models.AppFileFields{}
fullDirPath, toplevelErr := filepath.Abs(dir)
if toplevelErr != nil {
return appFiles, toplevelErr
}
toplevelErr = appfiles.WalkAppFiles(fullDirPath, func(fileName string, fullPath string) error {
fileInfo, err := os.Lstat(fullPath)
if err != nil {
return err
}
appFile := models.AppFileFields{
Path: filepath.ToSlash(fileName),
Size: fileInfo.Size(),
}
if fileInfo.IsDir() {
appFile.Sha1 = "0"
appFile.Size = 0
} else {
sha, err := appfiles.shaFile(fullPath)
if err != nil {
return err
}
appFile.Sha1 = sha
}
appFiles = append(appFiles, appFile)
return nil
})
return appFiles, toplevelErr
}
func (appfiles ApplicationFiles) shaFile(fullPath string) (string, error) {
hash := sha1.New()
file, err := os.Open(fullPath)
if err != nil {
return "", err
}
defer file.Close()
_, err = io.Copy(hash, file)
if err != nil {
return "", err
}
return fmt.Sprintf("%x", hash.Sum(nil)), nil
}
func (appfiles ApplicationFiles) CopyFiles(appFiles []models.AppFileFields, fromDir, toDir string) error {
for _, file := range appFiles {
err := func() error {
path, err := securejoin.SecureJoin(fromDir, file.Path)
if err != nil {
return err
}
fromPath, err := filepath.Abs(path)
if err != nil {
return err
}
if runtime.GOOS == "windows" {
fromPath = windowsPathPrefix + fromPath
}
srcFileInfo, err := os.Stat(fromPath)
if err != nil {
return err
}
path, err = securejoin.SecureJoin(toDir, file.Path)
if err != nil {
return err
}
toPath, err := filepath.Abs(path)
if err != nil {
return err
}
if runtime.GOOS == "windows" {
toPath = windowsPathPrefix + toPath
}
if srcFileInfo.IsDir() {
err = os.MkdirAll(toPath, srcFileInfo.Mode())
if err != nil {
return err
}
return nil
}
return appfiles.copyFile(fromPath, toPath, srcFileInfo.Mode())
}()
if err != nil {
return err
}
}
return nil
}
func (appfiles ApplicationFiles) copyFile(srcPath string, dstPath string, fileMode os.FileMode) error {
dst, err := fileutils.Create(dstPath)
if err != nil {
return err
}
defer dst.Close()
if runtime.GOOS != "windows" {
err = dst.Chmod(fileMode)
if err != nil {
return err
}
}
src, err := os.Open(srcPath)
if err != nil {
return err
}
defer src.Close()
_, err = io.Copy(dst, src)
if err != nil {
return err
}
return nil
}
func (appfiles ApplicationFiles) CountFiles(directory string) int64 {
var count int64
appfiles.WalkAppFiles(directory, func(_, _ string) error {
count++
return nil
})
return count
}
func (appfiles ApplicationFiles) WalkAppFiles(dir string, onEachFile func(string, string) error) error {
cfIgnore := loadIgnoreFile(dir)
walkFunc := func(fullPath string, f os.FileInfo, err error) error {
fileRelativePath, _ := filepath.Rel(dir, fullPath)
fileRelativeUnixPath := filepath.ToSlash(fileRelativePath)
if err != nil && runtime.GOOS == "windows" {
f, err = os.Lstat(windowsPathPrefix + fullPath)
if err != nil {
return err
}
fullPath = windowsPathPrefix + fullPath
}
if fullPath == dir {
return nil
}
if cfIgnore.FileShouldBeIgnored(fileRelativeUnixPath) {
if err == nil && f.IsDir() {
return filepath.SkipDir
}
return nil
}
if err != nil {
return err
}
if !f.Mode().IsRegular() && !f.IsDir() {
return nil
}
return onEachFile(fileRelativePath, fullPath)
}
return filepath.Walk(dir, walkFunc)
}
func loadIgnoreFile(dir string) CfIgnore {
fileContents, err := ioutil.ReadFile(filepath.Join(dir, ".cfignore"))
if err != nil {
return NewCfIgnore("")
}
return NewCfIgnore(string(fileContents))
}