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

Commit 1243d24

Browse files
Merge pull request #4 from tadashi-aikawa/0.5.0
0.5.0
2 parents 8b44c4a + cd0ac9b commit 1243d24

File tree

7 files changed

+147
-24
lines changed

7 files changed

+147
-24
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ version := $(shell git rev-parse --abbrev-ref HEAD)
1616

1717
#------
1818

19-
package-windows:
19+
package-windows: ## Create gowl.exe for Windows.
2020
@mkdir -p dist
2121
GOOS=windows GOARCH=amd64 go build -o dist/gowl.exe
2222

23-
package-linux:
23+
package-linux: ## Create gowl for Linux.
2424
@mkdir -p dist
2525
GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o dist/gowl
2626

27-
clean-package:
27+
clean-package: ## Remove packages with dist.
2828
rm -rf dist
2929

30-
release: clean-package
30+
release: clean-package ## Build and upload packages, regarding branch name as version
3131
@echo '1. Update versions'
3232
@sed -i -r 's/const version = ".+"/const version = "$(version)"/g' args.go
3333

@@ -56,4 +56,4 @@ release: clean-package
5656
@echo 'Success All!!'
5757
@echo 'Create a pull request and merge to master!!'
5858
@echo 'https://github.com/tadashi-aikawa/gowl/compare/$(version)?expand=1'
59-
@echo '..And deploy package!!'
59+
@echo '..And deploy package!!'

README.md

+48
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ vim = "vim"
6565

6666
[github]
6767
token = "your github token"
68+
# If `overrideUser = true`, Add userName and mailAddress to `.git/config` (`user.name` and `user.email`)
69+
overrideUser = true
70+
userName = "your github account name"
71+
mailAddress = "your github email address"
6872

6973
[bitbucketserver]
7074
baseurl = "http://your.bitbucket.server.url"
@@ -101,6 +105,15 @@ For example..
101105
2. `gowl edit`
102106

103107

108+
Configuration
109+
-------------
110+
111+
Gowl uses toml format as a configuration file.
112+
Please check `config.go`.
113+
114+
TODO: Definition table
115+
116+
104117
Root directory
105118
--------------
106119

@@ -111,6 +124,24 @@ The root directory is determined by the following priority.
111124
3. `<HOME>/.gowlroot`
112125

113126

127+
Other
128+
-----
129+
130+
If you use fzf(or peco), the following setting may make you happy!
131+
132+
bash
133+
```
134+
alias cdg="cd $(gowl list | fzf)"
135+
```
136+
137+
fish
138+
```
139+
alias cdg "cd (gowl list | fzf)"
140+
```
141+
142+
![DEMO2](https://raw.githubusercontent.com/tadashi-aikawa/gowl/master/demo2.gif)
143+
144+
114145
For developer
115146
-------------
116147

@@ -124,3 +155,20 @@ For developer
124155
```
125156
$ dep ensure
126157
```
158+
159+
### Release
160+
161+
#### Requirements
162+
163+
* make
164+
* bash
165+
* dep
166+
* ghr
167+
168+
#### Packaging and deploy
169+
170+
Confirm that your branch name equals release version, then...
171+
172+
```
173+
$ make release
174+
```

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.4.0"
8+
const version = "0.5.0"
99
const usage = `Gowl.
1010
1111
Usage:

command.go

+28
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,24 @@ func clone(url string, dst string, shallow bool, recursive bool) error {
126126
return nil
127127
}
128128

129+
func configureUser(dir string, name, mailAddress *string) error {
130+
if name != nil {
131+
fmt.Printf("Exec: git config user.name %v\n", *name)
132+
if err := execCommand(&dir, "git", "config", "user.name", *name); err != nil {
133+
return errors.Wrap(err, "Fail to config user.name "+*name)
134+
}
135+
}
136+
137+
if mailAddress != nil {
138+
fmt.Printf("Exec: git config user.email %v\n", *mailAddress)
139+
if err := execCommand(&dir, "git", "config", "user.email", *mailAddress); err != nil {
140+
return errors.Wrap(err, "Fail to config user.email "+*mailAddress)
141+
}
142+
}
143+
144+
return nil
145+
}
146+
129147
// CmdGet executes `get`
130148
func CmdGet(handler IHandler, root string, force bool, shallow bool, recursive bool) error {
131149
repo, err := doRepositorySelection(handler)
@@ -145,13 +163,23 @@ func CmdGet(handler IHandler, root string, force bool, shallow bool, recursive b
145163
dst := filepath.Join(root, handler.GetPrefix(), repo.FullName)
146164
if _, err := os.Stat(dst); os.IsNotExist(err) {
147165
clone(cloneURL, dst, shallow, recursive)
166+
if handler.GetOverrideUser() {
167+
if err := configureUser(dst, handler.GetUserName(), handler.GetMailAddress()); err != nil {
168+
return errors.Wrap(err, "Fail to configure "+dst)
169+
}
170+
}
148171
} else {
149172
if force {
150173
fmt.Printf("Remove %v\n", dst)
151174
if err := os.RemoveAll(dst); err != nil {
152175
return errors.Wrap(err, "Fail to remove "+dst)
153176
}
154177
clone(cloneURL, dst, shallow, recursive)
178+
if handler.GetOverrideUser() {
179+
if err := configureUser(dst, handler.GetUserName(), handler.GetMailAddress()); err != nil {
180+
return errors.Wrap(err, "Fail to configure "+dst)
181+
}
182+
}
155183
} else {
156184
fmt.Printf("Checkout master %v\n", dst)
157185
if err := execCommand(&dst, "git", "checkout", "master"); err != nil {

config.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ import (
1010

1111
// Service is information of Github, Bitbucket, and so on.
1212
type Service struct {
13-
Token *string
14-
UserName *string
15-
Password *string
16-
BaseURL *string
17-
Prefix *string
18-
UseSSH bool
13+
Token *string
14+
UserName *string
15+
Password *string
16+
MailAddress *string
17+
BaseURL *string
18+
Prefix *string
19+
UseSSH bool
20+
OverrideUser bool
1921
}
2022

2123
// Config configuration

demo2.gif

114 KB
Loading

handler.go

+57-12
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,30 @@ func (r *Repository) fromBitbucketServer(bsr *BitbucketRepository) *Repository {
5858
type IHandler interface {
5959
SearchRepositories(word string) ([]Repository, error)
6060
GetPrefix() string
61+
GetUserName() *string
62+
GetMailAddress() *string
6163
GetUseSSH() bool
64+
GetOverrideUser() bool
6265
}
6366

6467
// GitHubHandler handles a github command.
6568
type GitHubHandler struct {
66-
client *github.Client
67-
prefix string
68-
useSSH bool
69+
client *github.Client
70+
prefix string
71+
userName *string
72+
mailAddress *string
73+
useSSH bool
74+
overrideUser bool
6975
}
7076

7177
// BitbucketServerHandler handles a bitbucket command.
7278
type BitbucketServerHandler struct {
73-
client *BitbucketClient
74-
prefix string
75-
useSSH bool
79+
client *BitbucketClient
80+
prefix string
81+
userName *string
82+
mailAddress *string
83+
useSSH bool
84+
overrideUser bool
7685
}
7786

7887
func createBitbucketClient(userName string, password string, baseURL string) *BitbucketClient {
@@ -112,18 +121,24 @@ func listRepositories(dir string) ([]string, error) {
112121
// NewGithubHandler creates Githubhandler
113122
func NewGithubHandler(config Config) IHandler {
114123
return &GitHubHandler{
115-
client: createGithubClient(*config.GitHub.Token),
116-
prefix: "github.com",
117-
useSSH: config.GitHub.UseSSH,
124+
client: createGithubClient(*config.GitHub.Token),
125+
prefix: "github.com",
126+
userName: config.GitHub.UserName,
127+
mailAddress: config.GitHub.MailAddress,
128+
useSSH: config.GitHub.UseSSH,
129+
overrideUser: config.GitHub.OverrideUser,
118130
}
119131
}
120132

121133
// NewBitbucketServerHandler creates BitbucketServerHandler
122134
func NewBitbucketServerHandler(config Config) IHandler {
123135
return &BitbucketServerHandler{
124-
client: createBitbucketClient(*config.BitbucketServer.UserName, *config.BitbucketServer.Password, *config.BitbucketServer.BaseURL),
125-
prefix: *config.BitbucketServer.Prefix,
126-
useSSH: config.BitbucketServer.UseSSH,
136+
client: createBitbucketClient(*config.BitbucketServer.UserName, *config.BitbucketServer.Password, *config.BitbucketServer.BaseURL),
137+
prefix: *config.BitbucketServer.Prefix,
138+
userName: config.BitbucketServer.UserName,
139+
mailAddress: config.BitbucketServer.MailAddress,
140+
useSSH: config.BitbucketServer.UseSSH,
141+
overrideUser: config.BitbucketServer.OverrideUser,
127142
}
128143
}
129144

@@ -137,6 +152,26 @@ func (h *BitbucketServerHandler) GetPrefix() string {
137152
return h.prefix
138153
}
139154

155+
// GetUserName gets user name
156+
func (h *GitHubHandler) GetUserName() *string {
157+
return h.userName
158+
}
159+
160+
// GetUserName gets user name
161+
func (h *BitbucketServerHandler) GetUserName() *string {
162+
return h.userName
163+
}
164+
165+
// GetMailAddress gets user mail address
166+
func (h *GitHubHandler) GetMailAddress() *string {
167+
return h.mailAddress
168+
}
169+
170+
// GetMailAddress gets user mail address
171+
func (h *BitbucketServerHandler) GetMailAddress() *string {
172+
return h.mailAddress
173+
}
174+
140175
// GetUseSSH gets whether use useSSH or not
141176
func (h *GitHubHandler) GetUseSSH() bool {
142177
return h.useSSH
@@ -147,6 +182,16 @@ func (h *BitbucketServerHandler) GetUseSSH() bool {
147182
return h.useSSH
148183
}
149184

185+
// GetOverrideUser returns OverrideUser
186+
func (h *GitHubHandler) GetOverrideUser() bool {
187+
return h.overrideUser
188+
}
189+
190+
// GetOverrideUser returns OverrideUser
191+
func (h *BitbucketServerHandler) GetOverrideUser() bool {
192+
return h.overrideUser
193+
}
194+
150195
// SearchRepositories search repositories.
151196
func (h *GitHubHandler) SearchRepositories(word string) ([]Repository, error) {
152197
res, _, err := h.client.Search.Repositories(context.Background(), word, &github.SearchOptions{

0 commit comments

Comments
 (0)