Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit 7e44a6a

Browse files
Merge pull request #8 from tadashi-aikawa/0.7.0
0.7.0
2 parents ca77b1d + 4b701c6 commit 7e44a6a

File tree

6 files changed

+65
-26
lines changed

6 files changed

+65
-26
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Support for both Windows and Linux.
99

1010
![DEMO](https://raw.githubusercontent.com/tadashi-aikawa/gowl/master/demo.gif)
1111

12+
1213
Install
1314
-------
1415

@@ -57,9 +58,20 @@ Quick start
5758
```toml
5859
root = "Root directory of repositories for gowl"
5960
# ex. C:\\users\\tadashi-aikawa\\.gowl
61+
6062
browser = "Your browser"
6163
# ex. C:\\Program Files (x86)\\Google\\Chrome\\Application\\Chrome.exe
6264

65+
subSpaces = [
66+
"Subspaces that can be used for purposes other than Get 1",
67+
"Subspaces that can be used for purposes other than Get 2",
68+
]
69+
# ex. [
70+
# "C:\\Users\\tadashi-aikawa\\tmp",
71+
# "C:\\Users\\tadashi-aikawa\\works",
72+
# ]
73+
74+
6375
[editors]
6476
default = "code"
6577
vim = "vim"

args.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/pkg/errors"
66
)
77

8-
const version = "0.6.0"
8+
const version = "0.7.0"
99
const usage = `Gowl.
1010
1111
Usage:

command.go

+23-11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ import (
1616

1717
const gowlSite = "gowl.site"
1818

19+
func concat(elm string, elms []string) []string {
20+
rets := []string{elm}
21+
for _, x := range elms {
22+
rets = append(rets, x)
23+
}
24+
return rets
25+
}
26+
1927
func toSelection(r Repository) string {
2028
return fmt.Sprintf("*%-5v %-45v %-10v %v", r.Star, r.FullName, r.Language, r.License)
2129
}
@@ -89,9 +97,8 @@ func getCommandStdout(workdir *string, name string, arg ...string) (string, erro
8997
}
9098

9199
// selectLocalRepository returns repository path.
92-
func selectLocalRepository(root string) (string, error) {
93-
repoRoot := filepath.Join(root)
94-
repoDirs, err := listRepositories(repoRoot)
100+
func selectLocalRepository(dirs []string) (string, error) {
101+
repoDirs, err := listRepositories(dirs)
95102
if err != nil {
96103
return "", errors.Wrap(err, "Fail to search repositories")
97104
}
@@ -205,8 +212,9 @@ func CmdGet(handler IHandler, root string, force bool, shallow bool, recursive b
205212
}
206213

207214
// CmdList executes `open`
208-
func CmdList(handler IHandler, root string) error {
209-
repositories, err := listRepositories(root)
215+
func CmdList(handler IHandler, root string, subSpaces []string) error {
216+
dirs := concat(root, subSpaces)
217+
repositories, err := listRepositories(dirs)
210218
if err != nil {
211219
return errors.Wrap(err, "Fail to search repository.")
212220
}
@@ -216,8 +224,9 @@ func CmdList(handler IHandler, root string) error {
216224
}
217225

218226
// CmdEdit executes `edit`
219-
func CmdEdit(handler IHandler, root string, editor string) error {
220-
selection, err := selectLocalRepository(root)
227+
func CmdEdit(handler IHandler, root string, subSpaces []string, editor string) error {
228+
dirs := concat(root, subSpaces)
229+
selection, err := selectLocalRepository(dirs)
221230
if selection == "" {
222231
return nil
223232
}
@@ -233,8 +242,10 @@ func CmdEdit(handler IHandler, root string, editor string) error {
233242
}
234243

235244
// CmdPurge purges...
236-
func CmdPurge(handler IHandler, root string) error {
237-
selection, err := selectLocalRepository(root)
245+
func CmdPurge(handler IHandler, root string, subSpaces []string) error {
246+
dirs := concat(root, subSpaces)
247+
248+
selection, err := selectLocalRepository(dirs)
238249
if selection == "" {
239250
return nil
240251
}
@@ -268,8 +279,9 @@ func CmdPurge(handler IHandler, root string) error {
268279
}
269280

270281
// CmdWeb executes `web`
271-
func CmdWeb(handler IHandler, root string, browser string) error {
272-
selection, err := selectLocalRepository(root)
282+
func CmdWeb(handler IHandler, root string, subSpaces []string, browser string) error {
283+
dirs := concat(root, subSpaces)
284+
selection, err := selectLocalRepository(dirs)
273285
if selection == "" {
274286
return nil
275287
}

config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ type Config struct {
2525
Editors map[string]string
2626
Browser string
2727
Root string
28+
SubSpaces []string
2829
GitHub Service
2930
BitbucketServer Service
3031
}
@@ -37,7 +38,6 @@ func CreateConfig() (Config, error) {
3738
}
3839

3940
configPath := filepath.Join(home, ".gowlconfig")
40-
4141
var conf Config
4242
if _, err := toml.DecodeFile(configPath, &conf); err != nil {
4343
return Config{}, err

handler.go

+24-9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ import (
1010
"golang.org/x/oauth2"
1111
)
1212

13+
func contains(elms []string, elm string) bool {
14+
for _, e := range elms {
15+
if e == elm {
16+
return true
17+
}
18+
}
19+
20+
return false
21+
}
22+
1323
// Repository used by gowl
1424
type Repository struct {
1525
FullName string
@@ -105,17 +115,22 @@ func createGithubClient(token string) *github.Client {
105115
return github.NewClient(tc)
106116
}
107117

108-
func listRepositories(dir string) ([]string, error) {
118+
func listRepositories(dirs []string) ([]string, error) {
109119
var gitDirs []string
110-
err := filepath.Walk(dir, func(cpath string, info os.FileInfo, err error) error {
111-
if _, err := os.Stat(filepath.Join(cpath, ".git")); err == nil {
112-
gitDirs = append(gitDirs, cpath)
113-
return filepath.SkipDir
120+
for _, dir := range dirs {
121+
err := filepath.Walk(dir, func(cpath string, info os.FileInfo, err error) error {
122+
if contains([]string{"node_modules", "_build", "build", "dist"}, filepath.Base(cpath)) {
123+
return filepath.SkipDir
124+
}
125+
if _, err := os.Stat(filepath.Join(cpath, ".git")); err == nil {
126+
gitDirs = append(gitDirs, cpath)
127+
return filepath.SkipDir
128+
}
129+
return nil
130+
})
131+
if err != nil {
132+
return nil, errors.Wrap(err, "Fail to search repositories.")
114133
}
115-
return nil
116-
})
117-
if err != nil {
118-
return nil, errors.Wrap(err, "Fail to search repositories.")
119134
}
120135

121136
return gitDirs, nil

main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ func main() {
5353
log.Fatal(errors.Wrap(err, "Fail to command `get`"))
5454
}
5555
case args.CmdEdit:
56-
if err := CmdEdit(handler, getRoot(config), config.Editors[args.Editor]); err != nil {
56+
if err := CmdEdit(handler, getRoot(config), config.SubSpaces, config.Editors[args.Editor]); err != nil {
5757
log.Fatal(errors.Wrap(err, "Fail to command `edit`"))
5858
}
5959
case args.CmdWeb:
60-
if err := CmdWeb(handler, getRoot(config), config.Browser); err != nil {
60+
if err := CmdWeb(handler, getRoot(config), config.SubSpaces, config.Browser); err != nil {
6161
log.Fatal(errors.Wrap(err, "Fail to command `web`"))
6262
}
6363
case args.CmdList:
64-
if err := CmdList(handler, getRoot(config)); err != nil {
64+
if err := CmdList(handler, getRoot(config), config.SubSpaces); err != nil {
6565
log.Fatal(errors.Wrap(err, "Fail to command `list`"))
6666
}
6767
case args.CmdPurge:
68-
if err := CmdPurge(handler, getRoot(config)); err != nil {
68+
if err := CmdPurge(handler, getRoot(config), config.SubSpaces); err != nil {
6969
log.Fatal(errors.Wrap(err, "Fail to command `purge`"))
7070
}
7171
}

0 commit comments

Comments
 (0)