Skip to content

Commit

Permalink
change github auth to use oauth token instead of basic.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greyeye committed Oct 26, 2021
1 parent 9f8bb1b commit a2b0bda
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
3 changes: 2 additions & 1 deletion go.mod
Expand Up @@ -22,7 +22,7 @@ require (
github.com/gobuffalo/here v0.6.0
github.com/gocql/gocql v0.0.0-20210515062232-b7ef815b4556
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/google/go-github/v35 v35.2.0
github.com/google/go-github/v39 v39.2.0
github.com/gorilla/mux v1.7.4 // indirect
github.com/hashicorp/go-multierror v1.1.0
github.com/jackc/pgconn v1.8.0
Expand All @@ -48,6 +48,7 @@ require (
go.uber.org/atomic v1.6.0
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20211013171255-e13a2654a71e // indirect
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect
golang.org/x/tools v0.1.5
google.golang.org/api v0.51.0
Expand Down
7 changes: 4 additions & 3 deletions go.sum
Expand Up @@ -515,10 +515,11 @@ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-github/v35 v35.2.0 h1:s/soW8jauhjUC3rh8JI0FePuocj0DEI9DNBg/bVplE8=
github.com/google/go-github/v35 v35.2.0/go.mod h1:s0515YVTI+IMrDoy9Y4pHt9ShGpzHvHO8rZ7L7acgvs=
github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=
github.com/google/go-github/v39 v39.2.0 h1:rNNM311XtPOz5rDdsJXAp2o8F67X9FnROXTvto3aSnQ=
github.com/google/go-github/v39 v39.2.0/go.mod h1:C1s8C5aCC9L+JXIYpJM5GYytdX52vC1bLvHEF1IhBrE=
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=
Expand Down
12 changes: 6 additions & 6 deletions source/github/github.go
Expand Up @@ -3,6 +3,7 @@ package github
import (
"context"
"fmt"
"golang.org/x/oauth2"
"io"
"io/ioutil"
"net/http"
Expand All @@ -12,7 +13,7 @@ import (
"strings"

"github.com/golang-migrate/migrate/v4/source"
"github.com/google/go-github/v35/github"
"github.com/google/go-github/v39/github"
)

func init() {
Expand Down Expand Up @@ -54,12 +55,11 @@ func (g *Github) Open(url string) (source.Driver, error) {
if !ok {
return nil, ErrNoUserInfo
}
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: password},
)
client = oauth2.NewClient(context.Background(), ts)

tr := &github.BasicAuthTransport{
Username: u.User.Username(),
Password: password,
}
client = tr.Client()
}

gn := &Github{
Expand Down
2 changes: 1 addition & 1 deletion source/github_ee/github_ee.go
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/golang-migrate/migrate/v4/source"
gh "github.com/golang-migrate/migrate/v4/source/github"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v39/github"
)

func init() {
Expand Down

0 comments on commit a2b0bda

Please sign in to comment.