forked from 99designs/smartling
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathglob_files.go
143 lines (116 loc) · 2.48 KB
/
glob_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
package main
import (
"fmt"
"os"
"path/filepath"
"regexp"
"strings"
"github.com/Smartling/api-sdk-go"
"github.com/gobwas/glob"
"github.com/reconquest/hierr-go"
)
func globFilesRemote(
client *smartling.Client,
project string,
uri string,
) ([]smartling.File, error) {
if uri == "" {
uri = "**"
}
pattern, err := glob.Compile(uri, '/')
if err != nil {
return nil, NewError(
err,
"Search file URI is malformed. Check out help for more "+
"information about search patterns.",
)
}
request := smartling.FilesListRequest{}
files, err := client.ListAllFiles(project, request)
if err != nil {
if _, ok := err.(smartling.NotFoundError); ok {
return nil, ProjectNotFoundError{}
}
return nil, hierr.Errorf(
err,
`unable to list files in project "%s"`,
project,
)
}
result := []smartling.File{}
for _, file := range files {
if pattern.Match(file.FileURI) {
result = append(result, file)
}
}
if len(result) == 0 {
return nil, NewError(
fmt.Errorf(
"no files found on the remote server matching provided pattern",
),
"Check that file URI pattern is correct.",
)
}
return result, nil
}
func getDirectoryFromPattern(mask string) (string, string) {
matches := regexp.MustCompile(`^([^*?{}\[\]]+)/(.+)$`).FindStringSubmatch(
mask,
)
if len(matches) < 2 {
return "", mask
}
return matches[1], matches[2]
}
func globFilesLocallyFunc(
directory string,
base string,
mask string,
) ([]string, error) {
if strings.HasPrefix(base, "/") {
directory = base
} else {
directory = filepath.Join(directory, base)
}
pattern, err := glob.Compile(mask, '/')
if err != nil {
return nil, NewError(
err,
"Search file pattern is malformed. Check out help for more "+
"information about search patterns.",
)
}
if _, err := os.Stat(filepath.Join(directory, mask)); err == nil {
return []string{filepath.Join(directory, mask)}, nil
}
var result []string
err = filepath.Walk(
directory,
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
return nil
}
path = strings.TrimPrefix(path, directory)
path = strings.TrimPrefix(path, "/")
if pattern.Match(path) {
result = append(
result,
filepath.Join(directory, path),
)
}
return nil
},
)
if err != nil {
return nil, hierr.Errorf(
err,
`unable to walk down files in dir "%s"`,
directory,
)
}
return result, nil
}
var globFilesLocally = globFilesLocallyFunc