aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-05-24 21:04:25 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-05-29 22:58:01 +0200
commit6deb6ec469d4f10e668597a79d71afd11204a8b2 (patch)
tree88af44e9a968f7ad7c1d995a419a4cae19c7ad4d
parentf124df7e73f8613bf9cd2f83177eeb4110c7a639 (diff)
downloadgit-bug-6deb6ec469d4f10e668597a79d71afd11204a8b2.tar.gz
Github bridge updates
Use bridge params to configure the bridge
-rw-r--r--bridge/github/config.go256
1 files changed, 189 insertions, 67 deletions
diff --git a/bridge/github/config.go b/bridge/github/config.go
index 2a3119a6..29e50b87 100644
--- a/bridge/github/config.go
+++ b/bridge/github/config.go
@@ -11,91 +11,160 @@ import (
"net/http"
"os"
"regexp"
+ "strconv"
"strings"
"syscall"
"time"
+ "golang.org/x/crypto/ssh/terminal"
+
"github.com/MichaelMure/git-bug/bridge/core"
"github.com/MichaelMure/git-bug/repository"
- "golang.org/x/crypto/ssh/terminal"
)
const (
githubV3Url = "https://api.github.com"
- keyUser = "user"
+ keyOwner = "owner"
keyProject = "project"
keyToken = "token"
+
+ defaultTimeout = 5 * time.Second
)
-func (*Github) Configure(repo repository.RepoCommon) (core.Configuration, error) {
- conf := make(core.Configuration)
+var (
+ rxGithubSplit = regexp.MustCompile(`github\.com\/([^\/]*)\/([^\/]*)`)
+)
- fmt.Println()
- fmt.Println("git-bug will now generate an access token in your Github profile. Your credential are not stored and are only used to generate the token. The token is stored in the repository git config.")
- fmt.Println()
- fmt.Println("The token will have the following scopes:")
- fmt.Println(" - user:email: to be able to read public-only users email")
- // fmt.Println("The token will have the \"repo\" permission, giving it read/write access to your repositories and issues. There is no narrower scope available, sorry :-|")
- fmt.Println()
+func (*Github) Configure(repo repository.RepoCommon, params core.BridgeParams) (core.Configuration, error) {
+ conf := make(core.Configuration)
+ var err error
+ var token string
+ var owner string
+ var project string
+
+ // getting owner and project name:
+ // first use directly params if they are both provided, else try to parse
+ // them from params URL, and finaly try getting them from terminal prompt
+ if params.Owner != "" && params.Project != "" {
+ owner = params.Owner
+ project = params.Project
+
+ } else if params.URL != "" {
+ owner, project, err = splitURL(params.URL)
+ if err != nil {
+ return nil, err
+ }
- projectUser, projectName, err := promptURL()
- if err != nil {
- return nil, err
+ } else {
+ owner, project, err = promptURL()
+ if err != nil {
+ return nil, err
+ }
}
- conf[keyUser] = projectUser
- conf[keyProject] = projectName
-
- username, err := promptUsername()
+ // validate project owner
+ ok, err := validateUsername(owner)
if err != nil {
return nil, err
}
-
- password, err := promptPassword()
- if err != nil {
- return nil, err
+ if !ok {
+ return nil, fmt.Errorf("invalid parameter owner: %v", owner)
}
- // Attempt to authenticate and create a token
+ // try to get token from params if provided, else use terminal prompt
+ // to login and generate a token
+ if params.Token != "" {
+ token = params.Token
- note := fmt.Sprintf("git-bug - %s/%s", projectUser, projectName)
-
- resp, err := requestToken(note, username, password)
- if err != nil {
- return nil, err
- }
+ } else {
+ fmt.Println()
+ fmt.Println("git-bug will now generate an access token in your Github profile. Your credential are not stored and are only used to generate the token. The token is stored in the repository git config.")
+ fmt.Println()
+ fmt.Println("Depending on your configuration the token will have one of the following scopes:")
+ fmt.Println(" - 'user:email': to be able to read public-only users email")
+ fmt.Println(" - 'repo' : to be able to read private repositories")
+ // fmt.Println("The token will have the \"repo\" permission, giving it read/write access to your repositories and issues. There is no narrower scope available, sorry :-|")
+ fmt.Println()
- defer resp.Body.Close()
+ isPublic, err := promptProjectVisibility()
+ if err != nil {
+ return nil, err
+ }
- // Handle 2FA is needed
- OTPHeader := resp.Header.Get("X-GitHub-OTP")
- if resp.StatusCode == http.StatusUnauthorized && OTPHeader != "" {
- otpCode, err := prompt2FA()
+ username, err := promptUsername()
if err != nil {
return nil, err
}
- resp, err = requestTokenWith2FA(note, username, password, otpCode)
+ password, err := promptPassword()
if err != nil {
return nil, err
}
- defer resp.Body.Close()
- }
+ var scope string
+ if isPublic {
+ // user:email is requested to be able to read public emails
+ // - a private email will stay private, even with this token
+ scope = "user:email"
+ } else {
+ // 'repo' is request to be able to read private repositories
+ // /!\ token will have read/write rights on every private repository you have access to
+ scope = "repo"
+ }
+
+ // Attempt to authenticate and create a token
+
+ note := fmt.Sprintf("git-bug - %s/%s", owner, project)
- if resp.StatusCode == http.StatusCreated {
- token, err := decodeBody(resp.Body)
+ resp, err := requestToken(note, username, password, scope)
if err != nil {
return nil, err
}
- conf[keyToken] = token
- return conf, nil
+
+ defer resp.Body.Close()
+
+ // Handle 2FA is needed
+ OTPHeader := resp.Header.Get("X-GitHub-OTP")
+ if resp.StatusCode == http.StatusUnauthorized && OTPHeader != "" {
+ otpCode, err := prompt2FA()
+ if err != nil {
+ return nil, err
+ }
+
+ resp, err = requestTokenWith2FA(note, username, password, otpCode, scope)
+ if err != nil {
+ return nil, err
+ }
+
+ defer resp.Body.Close()
+ }
+
+ if resp.StatusCode == http.StatusCreated {
+ token, err = decodeBody(resp.Body)
+ if err != nil {
+ return nil, err
+ }
+
+ } else {
+ b, _ := ioutil.ReadAll(resp.Body)
+ return nil, fmt.Errorf("error creating token %v: %v", resp.StatusCode, string(b))
+ }
}
- b, _ := ioutil.ReadAll(resp.Body)
- fmt.Printf("Error %v: %v\n", resp.StatusCode, string(b))
+ // verifying access to project with token
+ ok, err = validateProject(owner, project, token)
+ if err != nil {
+ return nil, err
+ }
+ if !ok {
+ return nil, fmt.Errorf("project doesn't exist or authentication token has a wrong scope")
+ }
+
+ conf[keyToken] = token
+ conf[keyOwner] = owner
+ conf[keyProject] = project
- return nil, nil
+ return conf, nil
}
func (*Github) ValidateConfig(conf core.Configuration) error {
@@ -103,8 +172,8 @@ func (*Github) ValidateConfig(conf core.Configuration) error {
return fmt.Errorf("missing %s key", keyToken)
}
- if _, ok := conf[keyUser]; !ok {
- return fmt.Errorf("missing %s key", keyUser)
+ if _, ok := conf[keyOwner]; !ok {
+ return fmt.Errorf("missing %s key", keyOwner)
}
if _, ok := conf[keyProject]; !ok {
@@ -114,20 +183,18 @@ func (*Github) ValidateConfig(conf core.Configuration) error {
return nil
}
-func requestToken(note, username, password string) (*http.Response, error) {
- return requestTokenWith2FA(note, username, password, "")
+func requestToken(note, username, password string, scope string) (*http.Response, error) {
+ return requestTokenWith2FA(note, username, password, "", scope)
}
-func requestTokenWith2FA(note, username, password, otpCode string) (*http.Response, error) {
+func requestTokenWith2FA(note, username, password, otpCode string, scope string) (*http.Response, error) {
url := fmt.Sprintf("%s/authorizations", githubV3Url)
params := struct {
Scopes []string `json:"scopes"`
Note string `json:"note"`
Fingerprint string `json:"fingerprint"`
}{
- // user:email is requested to be able to read public emails
- // - a private email will stay private, even with this token
- Scopes: []string{"user:email"},
+ Scopes: []string{scope},
Note: note,
Fingerprint: randomFingerprint(),
}
@@ -149,7 +216,9 @@ func requestTokenWith2FA(note, username, password, otpCode string) (*http.Respon
req.Header.Set("X-GitHub-OTP", otpCode)
}
- client := http.Client{}
+ client := &http.Client{
+ Timeout: defaultTimeout,
+ }
return client.Do(req)
}
@@ -217,31 +286,23 @@ func promptURL() (string, string, error) {
}
line = strings.TrimRight(line, "\n")
-
if line == "" {
fmt.Println("URL is empty")
continue
}
- projectUser, projectName, err := splitURL(line)
-
+ projectOwner, projectName, err := splitURL(line)
if err != nil {
fmt.Println(err)
continue
}
- return projectUser, projectName, nil
+ return projectOwner, projectName, nil
}
}
func splitURL(url string) (string, string, error) {
- re, err := regexp.Compile(`github\.com\/([^\/]*)\/([^\/]*)`)
- if err != nil {
- panic(err)
- }
-
- res := re.FindStringSubmatch(url)
-
+ res := rxGithubSplit.FindStringSubmatch(url)
if res == nil {
return "", "", fmt.Errorf("bad github project url")
}
@@ -265,6 +326,33 @@ func validateUsername(username string) (bool, error) {
return resp.StatusCode == http.StatusOK, nil
}
+func validateProject(owner, project, token string) (bool, error) {
+ url := fmt.Sprintf("%s/repos/%s/%s", githubV3Url, owner, project)
+
+ req, err := http.NewRequest("GET", url, nil)
+ if err != nil {
+ return false, err
+ }
+
+ req.Header.Set("Authorization", fmt.Sprintf("token %s", token))
+
+ client := &http.Client{
+ Timeout: defaultTimeout,
+ }
+
+ resp, err := client.Do(req)
+ if err != nil {
+ return false, err
+ }
+
+ err = resp.Body.Close()
+ if err != nil {
+ return false, err
+ }
+
+ return resp.StatusCode == http.StatusOK, nil
+}
+
func promptPassword() (string, error) {
for {
fmt.Print("password: ")
@@ -291,14 +379,48 @@ func prompt2FA() (string, error) {
fmt.Print("two-factor authentication code: ")
byte2fa, err := terminal.ReadPassword(int(syscall.Stdin))
+ fmt.Println()
if err != nil {
return "", err
}
- if len(byte2fa) > 0 {
- return string(byte2fa), nil
+ if len(byte2fa) != 6 {
+ fmt.Println("invalid 2FA code size")
+ continue
+ }
+
+ str2fa := string(byte2fa)
+ _, err = strconv.Atoi(str2fa)
+ if err != nil {
+ fmt.Println("2fa code must be digits only")
+ continue
+ }
+
+ return str2fa, nil
+ }
+}
+
+func promptProjectVisibility() (bool, error) {
+ fmt.Println("[0]: public")
+ fmt.Println("[1]: private")
+
+ for {
+ fmt.Print("repository visibility type: ")
+
+ line, err := bufio.NewReader(os.Stdin).ReadString('\n')
+ fmt.Println()
+ if err != nil {
+ return false, err
+ }
+
+ line = strings.TrimRight(line, "\n")
+
+ index, err := strconv.Atoi(line)
+ if err != nil || (index != 0 && index != 1) {
+ fmt.Println("invalid input")
+ continue
}
- fmt.Println("code is empty")
+ return index == 0, nil
}
}