2016-07-26 01:30:28 +05:30
|
|
|
// Package github provides authentication strategies using GitHub.
|
|
|
|
package github
|
|
|
|
|
|
|
|
import (
|
2017-03-09 00:03:19 +05:30
|
|
|
"context"
|
2016-07-26 01:30:28 +05:30
|
|
|
"encoding/json"
|
2016-11-19 03:10:41 +05:30
|
|
|
"errors"
|
2016-07-26 01:30:28 +05:30
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2017-01-27 03:45:01 +05:30
|
|
|
"regexp"
|
2016-07-26 01:30:28 +05:30
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"golang.org/x/oauth2"
|
|
|
|
"golang.org/x/oauth2/github"
|
|
|
|
|
2016-11-23 05:05:46 +05:30
|
|
|
"github.com/Sirupsen/logrus"
|
2016-08-11 11:01:42 +05:30
|
|
|
"github.com/coreos/dex/connector"
|
2016-07-26 01:30:28 +05:30
|
|
|
)
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
const (
|
|
|
|
baseURL = "https://api.github.com"
|
|
|
|
scopeEmail = "user:email"
|
|
|
|
scopeOrgs = "read:org"
|
|
|
|
)
|
2016-07-26 01:30:28 +05:30
|
|
|
|
|
|
|
// Config holds configuration options for github logins.
|
|
|
|
type Config struct {
|
2016-11-04 03:02:23 +05:30
|
|
|
ClientID string `json:"clientID"`
|
|
|
|
ClientSecret string `json:"clientSecret"`
|
|
|
|
RedirectURI string `json:"redirectURI"`
|
|
|
|
Org string `json:"org"`
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Open returns a strategy for logging in through GitHub.
|
2016-11-23 05:05:46 +05:30
|
|
|
func (c *Config) Open(logger logrus.FieldLogger) (connector.Connector, error) {
|
2016-07-26 01:30:28 +05:30
|
|
|
return &githubConnector{
|
2016-11-19 03:10:41 +05:30
|
|
|
redirectURI: c.RedirectURI,
|
|
|
|
org: c.Org,
|
|
|
|
clientID: c.ClientID,
|
|
|
|
clientSecret: c.ClientSecret,
|
2016-11-23 05:05:46 +05:30
|
|
|
logger: logger,
|
2016-07-26 01:30:28 +05:30
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type connectorData struct {
|
|
|
|
// GitHub's OAuth2 tokens never expire. We don't need a refresh token.
|
|
|
|
AccessToken string `json:"accessToken"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ connector.CallbackConnector = (*githubConnector)(nil)
|
2016-11-19 03:10:41 +05:30
|
|
|
_ connector.RefreshConnector = (*githubConnector)(nil)
|
2016-07-26 01:30:28 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
type githubConnector struct {
|
|
|
|
redirectURI string
|
|
|
|
org string
|
2016-11-19 03:10:41 +05:30
|
|
|
clientID string
|
|
|
|
clientSecret string
|
2016-11-23 05:05:46 +05:30
|
|
|
logger logrus.FieldLogger
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
func (c *githubConnector) oauth2Config(scopes connector.Scopes) *oauth2.Config {
|
|
|
|
var githubScopes []string
|
|
|
|
if scopes.Groups {
|
|
|
|
githubScopes = []string{scopeEmail, scopeOrgs}
|
|
|
|
} else {
|
|
|
|
githubScopes = []string{scopeEmail}
|
|
|
|
}
|
|
|
|
return &oauth2.Config{
|
|
|
|
ClientID: c.clientID,
|
|
|
|
ClientSecret: c.clientSecret,
|
|
|
|
Endpoint: github.Endpoint,
|
|
|
|
Scopes: githubScopes,
|
|
|
|
}
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
func (c *githubConnector) LoginURL(scopes connector.Scopes, callbackURL, state string) (string, error) {
|
2016-07-26 01:30:28 +05:30
|
|
|
if c.redirectURI != callbackURL {
|
|
|
|
return "", fmt.Errorf("expected callback URL did not match the URL in the config")
|
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
return c.oauth2Config(scopes).AuthCodeURL(state), nil
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
type oauth2Error struct {
|
|
|
|
error string
|
|
|
|
errorDescription string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *oauth2Error) Error() string {
|
|
|
|
if e.errorDescription == "" {
|
|
|
|
return e.error
|
|
|
|
}
|
|
|
|
return e.error + ": " + e.errorDescription
|
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
func (c *githubConnector) HandleCallback(s connector.Scopes, r *http.Request) (identity connector.Identity, err error) {
|
2016-07-26 01:30:28 +05:30
|
|
|
q := r.URL.Query()
|
|
|
|
if errType := q.Get("error"); errType != "" {
|
2016-10-27 22:38:08 +05:30
|
|
|
return identity, &oauth2Error{errType, q.Get("error_description")}
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
|
|
|
|
oauth2Config := c.oauth2Config(s)
|
|
|
|
ctx := r.Context()
|
|
|
|
|
|
|
|
token, err := oauth2Config.Exchange(ctx, q.Get("code"))
|
2016-07-26 01:30:28 +05:30
|
|
|
if err != nil {
|
2016-10-27 22:38:08 +05:30
|
|
|
return identity, fmt.Errorf("github: failed to get token: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
client := oauth2Config.Client(ctx, token)
|
|
|
|
|
|
|
|
user, err := c.user(ctx, client)
|
2016-07-26 01:30:28 +05:30
|
|
|
if err != nil {
|
2016-11-19 03:10:41 +05:30
|
|
|
return identity, fmt.Errorf("github: get user: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
username := user.Name
|
|
|
|
if username == "" {
|
|
|
|
username = user.Login
|
|
|
|
}
|
|
|
|
identity = connector.Identity{
|
|
|
|
UserID: strconv.Itoa(user.ID),
|
|
|
|
Username: username,
|
|
|
|
Email: user.Email,
|
|
|
|
EmailVerified: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.Groups && c.org != "" {
|
|
|
|
groups, err := c.teams(ctx, client, c.org)
|
2016-07-26 01:30:28 +05:30
|
|
|
if err != nil {
|
2016-11-19 03:10:41 +05:30
|
|
|
return identity, fmt.Errorf("github: get teams: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
identity.Groups = groups
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
|
|
|
|
if s.OfflineAccess {
|
|
|
|
data := connectorData{AccessToken: token.AccessToken}
|
|
|
|
connData, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return identity, fmt.Errorf("marshal connector data: %v", err)
|
|
|
|
}
|
|
|
|
identity.ConnectorData = connData
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
|
|
|
|
return identity, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *githubConnector) Refresh(ctx context.Context, s connector.Scopes, ident connector.Identity) (connector.Identity, error) {
|
|
|
|
if len(ident.ConnectorData) == 0 {
|
|
|
|
return ident, errors.New("no upstream access token found")
|
|
|
|
}
|
|
|
|
|
|
|
|
var data connectorData
|
|
|
|
if err := json.Unmarshal(ident.ConnectorData, &data); err != nil {
|
|
|
|
return ident, fmt.Errorf("github: unmarshal access token: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
client := c.oauth2Config(s).Client(ctx, &oauth2.Token{AccessToken: data.AccessToken})
|
|
|
|
user, err := c.user(ctx, client)
|
2016-07-26 01:30:28 +05:30
|
|
|
if err != nil {
|
2016-11-19 03:10:41 +05:30
|
|
|
return ident, fmt.Errorf("github: get user: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
username := user.Name
|
|
|
|
if username == "" {
|
|
|
|
username = user.Login
|
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
ident.Username = username
|
|
|
|
ident.Email = user.Email
|
|
|
|
|
|
|
|
if s.Groups && c.org != "" {
|
|
|
|
groups, err := c.teams(ctx, client, c.org)
|
|
|
|
if err != nil {
|
|
|
|
return ident, fmt.Errorf("github: get teams: %v", err)
|
|
|
|
}
|
|
|
|
ident.Groups = groups
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
return ident, nil
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-19 03:10:41 +05:30
|
|
|
type user struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
ID int `json:"id"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// user queries the GitHub API for profile information using the provided client. The HTTP
|
|
|
|
// client is expected to be constructed by the golang.org/x/oauth2 package, which inserts
|
|
|
|
// a bearer token as part of the request.
|
|
|
|
func (c *githubConnector) user(ctx context.Context, client *http.Client) (user, error) {
|
|
|
|
var u user
|
|
|
|
req, err := http.NewRequest("GET", baseURL+"/user", nil)
|
|
|
|
if err != nil {
|
|
|
|
return u, fmt.Errorf("github: new req: %v", err)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
2016-11-19 03:10:41 +05:30
|
|
|
req = req.WithContext(ctx)
|
|
|
|
resp, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return u, fmt.Errorf("github: get URL %v", err)
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return u, fmt.Errorf("github: read body: %v", err)
|
|
|
|
}
|
|
|
|
return u, fmt.Errorf("%s: %s", resp.Status, body)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.NewDecoder(resp.Body).Decode(&u); err != nil {
|
|
|
|
return u, fmt.Errorf("failed to decode response: %v", err)
|
|
|
|
}
|
|
|
|
return u, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// teams queries the GitHub API for team membership within a specific organization.
|
|
|
|
//
|
|
|
|
// The HTTP passed client is expected to be constructed by the golang.org/x/oauth2 package,
|
|
|
|
// which inserts a bearer token as part of the request.
|
|
|
|
func (c *githubConnector) teams(ctx context.Context, client *http.Client, org string) ([]string, error) {
|
|
|
|
|
2017-01-27 03:45:01 +05:30
|
|
|
groups := []string{}
|
|
|
|
|
|
|
|
// https://developer.github.com/v3/#pagination
|
|
|
|
reNext := regexp.MustCompile("<(.*)>; rel=\"next\"")
|
|
|
|
reLast := regexp.MustCompile("<(.*)>; rel=\"last\"")
|
|
|
|
apiURL := baseURL + "/user/teams"
|
|
|
|
|
|
|
|
for {
|
|
|
|
req, err := http.NewRequest("GET", apiURL, nil)
|
|
|
|
|
2016-07-26 01:30:28 +05:30
|
|
|
if err != nil {
|
2017-01-27 03:45:01 +05:30
|
|
|
return nil, fmt.Errorf("github: new req: %v", err)
|
|
|
|
}
|
|
|
|
req = req.WithContext(ctx)
|
|
|
|
resp, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("github: get teams: %v", err)
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("github: read body: %v", err)
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("%s: %s", resp.Status, body)
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
|
2017-01-27 03:45:01 +05:30
|
|
|
// https://developer.github.com/v3/orgs/teams/#response-12
|
|
|
|
var teams []struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Org struct {
|
|
|
|
Login string `json:"login"`
|
|
|
|
} `json:"organization"`
|
|
|
|
}
|
|
|
|
if err := json.NewDecoder(resp.Body).Decode(&teams); err != nil {
|
|
|
|
return nil, fmt.Errorf("github: unmarshal groups: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, team := range teams {
|
|
|
|
if team.Org.Login == org {
|
|
|
|
groups = append(groups, team.Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
links := resp.Header.Get("Link")
|
|
|
|
if len(reLast.FindStringSubmatch(links)) > 1 {
|
|
|
|
lastPageURL := reLast.FindStringSubmatch(links)[1]
|
|
|
|
if apiURL == lastPageURL {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(reNext.FindStringSubmatch(links)) > 1 {
|
|
|
|
apiURL = reNext.FindStringSubmatch(links)[1]
|
|
|
|
} else {
|
|
|
|
break
|
2016-07-26 01:30:28 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return groups, nil
|
|
|
|
}
|