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

Commit 4989b60

Browse files
Merge pull request #2 from tadashi-aikawa/0.3.0
0.3.0
2 parents cd4b13e + f92282e commit 4989b60

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

args.go

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

8-
const version = "0.2.0"
8+
const version = "0.3.0"
99
const usage = `Gowl.
1010
1111
Usage:
@@ -14,7 +14,7 @@ Usage:
1414
gowl web
1515
gowl list
1616
gowl -h | --help
17-
gowl --version
17+
gowl -V | --version
1818
1919
Options:
2020
-e --editor=<editor> Use editor [default: default]
@@ -23,7 +23,7 @@ Options:
2323
-s --shallow Use shallow clone
2424
-B --bitbucket-server Use Bitbucket Server
2525
-h --help Show this screen.
26-
--version Show version.
26+
-V --version Show version.
2727
`
2828

2929
// Args created by CLI args

bitbucket.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66
"net/http"
7+
"strings"
78
)
89

910
// BitbucketClient includes fields used by gowl
@@ -36,8 +37,10 @@ type BitbucketRepository struct {
3637
Links valueLinks `json:"links"`
3738
}
3839

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)
4144
}
4245

4346
type valueLinks struct {

handler.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,17 @@ func (r *Repository) fromGithub(gr *github.Repository) *Repository {
3030
}
3131

3232
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+
}
3340
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,
3644
Language: "UNKNOWN",
3745
License: "No License",
3846
Star: 0,

0 commit comments

Comments
 (0)