This repository was archived by the owner on Jan 4, 2025. It is now read-only.
File tree 3 files changed +18
-7
lines changed
3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 5
5
"github.com/pkg/errors"
6
6
)
7
7
8
- const version = "0.2 .0"
8
+ const version = "0.3 .0"
9
9
const usage = `Gowl.
10
10
11
11
Usage:
14
14
gowl web
15
15
gowl list
16
16
gowl -h | --help
17
- gowl --version
17
+ gowl -V | - -version
18
18
19
19
Options:
20
20
-e --editor=<editor> Use editor [default: default]
@@ -23,7 +23,7 @@ Options:
23
23
-s --shallow Use shallow clone
24
24
-B --bitbucket-server Use Bitbucket Server
25
25
-h --help Show this screen.
26
- -- version Show version.
26
+ -V -- version Show version.
27
27
`
28
28
29
29
// Args created by CLI args
Original file line number Diff line number Diff line change 4
4
"encoding/json"
5
5
"fmt"
6
6
"net/http"
7
+ "strings"
7
8
)
8
9
9
10
// BitbucketClient includes fields used by gowl
@@ -36,8 +37,10 @@ type BitbucketRepository struct {
36
37
Links valueLinks `json:"links"`
37
38
}
38
39
39
- func (r * BitbucketRepository ) getFullName () string {
40
- return fmt .Sprintf ("%v/%v" , r .Project .Key , r .Slug )
40
+ // GetFullName returns project/repository
41
+ func (r * BitbucketRepository ) GetFullName () string {
42
+ // Slug is always lowercase
43
+ return fmt .Sprintf ("%v/%v" , strings .ToLower (r .Project .Key ), r .Slug )
41
44
}
42
45
43
46
type valueLinks struct {
Original file line number Diff line number Diff line change @@ -30,9 +30,17 @@ func (r *Repository) fromGithub(gr *github.Repository) *Repository {
30
30
}
31
31
32
32
func (r * Repository ) fromBitbucketServer (bsr * BitbucketRepository ) * Repository {
33
+ // TODO: ssh option
34
+ var httpURL string
35
+ for _ , x := range bsr .Links .Clone {
36
+ if x .Name == "ssh" {
37
+ httpURL = x .Href
38
+ }
39
+ }
33
40
return & Repository {
34
- FullName : bsr .getFullName (),
35
- CloneURL : bsr .Links .Clone [0 ].Href ,
41
+ // Lower case for Bitbucket Server
42
+ FullName : bsr .GetFullName (),
43
+ CloneURL : httpURL ,
36
44
Language : "UNKNOWN" ,
37
45
License : "No License" ,
38
46
Star : 0 ,
You can’t perform that action at this time.
0 commit comments