2017-11-19 16:18:14 +00:00
|
|
|
|
// Package microsoft provides authentication strategies using Microsoft.
|
|
|
|
|
package microsoft
|
|
|
|
|
|
|
|
|
|
import (
|
2017-11-21 15:58:22 +00:00
|
|
|
|
"bytes"
|
2017-11-19 16:18:14 +00:00
|
|
|
|
"context"
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"errors"
|
|
|
|
|
"fmt"
|
2017-11-21 15:58:22 +00:00
|
|
|
|
"io"
|
2017-11-19 16:18:14 +00:00
|
|
|
|
"net/http"
|
|
|
|
|
"sync"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"golang.org/x/oauth2"
|
|
|
|
|
|
2018-09-03 06:44:44 +00:00
|
|
|
|
"github.com/dexidp/dex/connector"
|
2019-07-03 08:40:31 +00:00
|
|
|
|
groups_pkg "github.com/dexidp/dex/pkg/groups"
|
2019-02-22 12:19:23 +00:00
|
|
|
|
"github.com/dexidp/dex/pkg/log"
|
2017-11-19 16:18:14 +00:00
|
|
|
|
)
|
|
|
|
|
|
2019-05-08 20:06:19 +00:00
|
|
|
|
// GroupNameFormat represents the format of the group identifier
|
|
|
|
|
// we use type of string instead of int because it's easier to
|
|
|
|
|
// marshall/unmarshall
|
|
|
|
|
type GroupNameFormat string
|
|
|
|
|
|
|
|
|
|
// Possible values for GroupNameFormat
|
|
|
|
|
const (
|
|
|
|
|
GroupID GroupNameFormat = "id"
|
|
|
|
|
GroupName GroupNameFormat = "name"
|
|
|
|
|
)
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
const (
|
|
|
|
|
// Microsoft requires this scope to access user's profile
|
|
|
|
|
scopeUser = "user.read"
|
2017-11-21 15:58:22 +00:00
|
|
|
|
// Microsoft requires this scope to list groups the user is a member of
|
2019-05-08 20:06:19 +00:00
|
|
|
|
// and resolve their ids to groups names.
|
2017-11-21 15:58:22 +00:00
|
|
|
|
scopeGroups = "directory.read.all"
|
2019-05-02 15:55:04 +00:00
|
|
|
|
// Microsoft requires this scope to return a refresh token
|
|
|
|
|
// see https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent#offline_access
|
|
|
|
|
scopeOfflineAccess = "offline_access"
|
2017-11-19 16:18:14 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Config holds configuration options for microsoft logins.
|
|
|
|
|
type Config struct {
|
2019-05-08 20:06:19 +00:00
|
|
|
|
ClientID string `json:"clientID"`
|
|
|
|
|
ClientSecret string `json:"clientSecret"`
|
|
|
|
|
RedirectURI string `json:"redirectURI"`
|
|
|
|
|
Tenant string `json:"tenant"`
|
|
|
|
|
OnlySecurityGroups bool `json:"onlySecurityGroups"`
|
|
|
|
|
Groups []string `json:"groups"`
|
|
|
|
|
GroupNameFormat GroupNameFormat `json:"groupNameFormat"`
|
|
|
|
|
UseGroupsAsWhitelist bool `json:"useGroupsAsWhitelist"`
|
2017-11-19 16:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Open returns a strategy for logging in through Microsoft.
|
2019-02-22 12:19:23 +00:00
|
|
|
|
func (c *Config) Open(id string, logger log.Logger) (connector.Connector, error) {
|
2017-11-19 16:18:14 +00:00
|
|
|
|
m := microsoftConnector{
|
2020-01-13 07:15:07 +00:00
|
|
|
|
apiURL: "https://login.microsoftonline.com",
|
|
|
|
|
graphURL: "https://graph.microsoft.com",
|
2019-05-08 20:06:19 +00:00
|
|
|
|
redirectURI: c.RedirectURI,
|
|
|
|
|
clientID: c.ClientID,
|
|
|
|
|
clientSecret: c.ClientSecret,
|
|
|
|
|
tenant: c.Tenant,
|
|
|
|
|
onlySecurityGroups: c.OnlySecurityGroups,
|
|
|
|
|
groups: c.Groups,
|
|
|
|
|
groupNameFormat: c.GroupNameFormat,
|
|
|
|
|
useGroupsAsWhitelist: c.UseGroupsAsWhitelist,
|
|
|
|
|
logger: logger,
|
2017-11-19 16:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
// By default allow logins from both personal and business/school
|
|
|
|
|
// accounts.
|
|
|
|
|
if m.tenant == "" {
|
|
|
|
|
m.tenant = "common"
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 20:06:19 +00:00
|
|
|
|
// By default, use group names
|
|
|
|
|
switch m.groupNameFormat {
|
|
|
|
|
case "":
|
|
|
|
|
m.groupNameFormat = GroupName
|
|
|
|
|
case GroupID, GroupName:
|
|
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("invalid groupNameFormat: %s", m.groupNameFormat)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
return &m, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type connectorData struct {
|
|
|
|
|
AccessToken string `json:"accessToken"`
|
|
|
|
|
RefreshToken string `json:"refreshToken"`
|
|
|
|
|
Expiry time.Time `json:"expiry"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
_ connector.CallbackConnector = (*microsoftConnector)(nil)
|
|
|
|
|
_ connector.RefreshConnector = (*microsoftConnector)(nil)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type microsoftConnector struct {
|
2020-01-13 07:15:07 +00:00
|
|
|
|
apiURL string
|
|
|
|
|
graphURL string
|
2019-05-08 20:06:19 +00:00
|
|
|
|
redirectURI string
|
|
|
|
|
clientID string
|
|
|
|
|
clientSecret string
|
|
|
|
|
tenant string
|
|
|
|
|
onlySecurityGroups bool
|
|
|
|
|
groupNameFormat GroupNameFormat
|
|
|
|
|
groups []string
|
|
|
|
|
useGroupsAsWhitelist bool
|
|
|
|
|
logger log.Logger
|
2017-11-21 15:58:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) isOrgTenant() bool {
|
|
|
|
|
return c.tenant != "common" && c.tenant != "consumers" && c.tenant != "organizations"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) groupsRequired(groupScope bool) bool {
|
|
|
|
|
return (len(c.groups) > 0 || groupScope) && c.isOrgTenant()
|
2017-11-19 16:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) oauth2Config(scopes connector.Scopes) *oauth2.Config {
|
|
|
|
|
microsoftScopes := []string{scopeUser}
|
2017-11-21 15:58:22 +00:00
|
|
|
|
if c.groupsRequired(scopes.Groups) {
|
|
|
|
|
microsoftScopes = append(microsoftScopes, scopeGroups)
|
|
|
|
|
}
|
2017-11-19 16:18:14 +00:00
|
|
|
|
|
2019-05-02 15:55:04 +00:00
|
|
|
|
if scopes.OfflineAccess {
|
|
|
|
|
microsoftScopes = append(microsoftScopes, scopeOfflineAccess)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
return &oauth2.Config{
|
|
|
|
|
ClientID: c.clientID,
|
|
|
|
|
ClientSecret: c.clientSecret,
|
|
|
|
|
Endpoint: oauth2.Endpoint{
|
2020-01-13 07:15:07 +00:00
|
|
|
|
AuthURL: c.apiURL + "/" + c.tenant + "/oauth2/v2.0/authorize",
|
|
|
|
|
TokenURL: c.apiURL + "/" + c.tenant + "/oauth2/v2.0/token",
|
2017-11-19 16:18:14 +00:00
|
|
|
|
},
|
|
|
|
|
Scopes: microsoftScopes,
|
|
|
|
|
RedirectURL: c.redirectURI,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) LoginURL(scopes connector.Scopes, callbackURL, state string) (string, error) {
|
|
|
|
|
if c.redirectURI != callbackURL {
|
|
|
|
|
return "", fmt.Errorf("expected callback URL %q did not match the URL in the config %q", callbackURL, c.redirectURI)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c.oauth2Config(scopes).AuthCodeURL(state), nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) HandleCallback(s connector.Scopes, r *http.Request) (identity connector.Identity, err error) {
|
|
|
|
|
q := r.URL.Query()
|
|
|
|
|
if errType := q.Get("error"); errType != "" {
|
|
|
|
|
return identity, &oauth2Error{errType, q.Get("error_description")}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
oauth2Config := c.oauth2Config(s)
|
|
|
|
|
|
|
|
|
|
ctx := r.Context()
|
|
|
|
|
|
|
|
|
|
token, err := oauth2Config.Exchange(ctx, q.Get("code"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: failed to get token: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
client := oauth2Config.Client(ctx, token)
|
|
|
|
|
|
|
|
|
|
user, err := c.user(ctx, client)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: get user: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
identity = connector.Identity{
|
|
|
|
|
UserID: user.ID,
|
|
|
|
|
Username: user.Name,
|
|
|
|
|
Email: user.Email,
|
|
|
|
|
EmailVerified: true,
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 15:58:22 +00:00
|
|
|
|
if c.groupsRequired(s.Groups) {
|
|
|
|
|
groups, err := c.getGroups(ctx, client, user.ID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: get groups: %v", err)
|
|
|
|
|
}
|
|
|
|
|
identity.Groups = groups
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
if s.OfflineAccess {
|
|
|
|
|
data := connectorData{
|
|
|
|
|
AccessToken: token.AccessToken,
|
|
|
|
|
RefreshToken: token.RefreshToken,
|
|
|
|
|
Expiry: token.Expiry,
|
|
|
|
|
}
|
|
|
|
|
connData, err := json.Marshal(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: marshal connector data: %v", err)
|
|
|
|
|
}
|
|
|
|
|
identity.ConnectorData = connData
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return identity, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type tokenNotifyFunc func(*oauth2.Token) error
|
|
|
|
|
|
2020-12-20 03:01:55 +00:00
|
|
|
|
// notifyRefreshTokenSource is essentially `oauth2.ReuseTokenSource` with `TokenNotifyFunc` added.
|
2017-11-19 16:18:14 +00:00
|
|
|
|
type notifyRefreshTokenSource struct {
|
|
|
|
|
new oauth2.TokenSource
|
|
|
|
|
mu sync.Mutex // guards t
|
|
|
|
|
t *oauth2.Token
|
|
|
|
|
f tokenNotifyFunc // called when token refreshed so new refresh token can be persisted
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Token returns the current token if it's still valid, else will
|
|
|
|
|
// refresh the current token (using r.Context for HTTP client
|
|
|
|
|
// information) and return the new one.
|
|
|
|
|
func (s *notifyRefreshTokenSource) Token() (*oauth2.Token, error) {
|
|
|
|
|
s.mu.Lock()
|
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
|
if s.t.Valid() {
|
|
|
|
|
return s.t, nil
|
|
|
|
|
}
|
|
|
|
|
t, err := s.new.Token()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
s.t = t
|
|
|
|
|
return t, s.f(t)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) Refresh(ctx context.Context, s connector.Scopes, identity connector.Identity) (connector.Identity, error) {
|
|
|
|
|
if len(identity.ConnectorData) == 0 {
|
|
|
|
|
return identity, errors.New("microsoft: no upstream access token found")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var data connectorData
|
|
|
|
|
if err := json.Unmarshal(identity.ConnectorData, &data); err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: unmarshal access token: %v", err)
|
|
|
|
|
}
|
|
|
|
|
tok := &oauth2.Token{
|
|
|
|
|
AccessToken: data.AccessToken,
|
|
|
|
|
RefreshToken: data.RefreshToken,
|
|
|
|
|
Expiry: data.Expiry,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
client := oauth2.NewClient(ctx, ¬ifyRefreshTokenSource{
|
|
|
|
|
new: c.oauth2Config(s).TokenSource(ctx, tok),
|
|
|
|
|
t: tok,
|
|
|
|
|
f: func(tok *oauth2.Token) error {
|
|
|
|
|
data := connectorData{
|
|
|
|
|
AccessToken: tok.AccessToken,
|
|
|
|
|
RefreshToken: tok.RefreshToken,
|
|
|
|
|
Expiry: tok.Expiry,
|
|
|
|
|
}
|
|
|
|
|
connData, err := json.Marshal(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return fmt.Errorf("microsoft: marshal connector data: %v", err)
|
|
|
|
|
}
|
|
|
|
|
identity.ConnectorData = connData
|
|
|
|
|
return nil
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
user, err := c.user(ctx, client)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: get user: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
identity.Username = user.Name
|
|
|
|
|
identity.Email = user.Email
|
|
|
|
|
|
2017-11-21 15:58:22 +00:00
|
|
|
|
if c.groupsRequired(s.Groups) {
|
|
|
|
|
groups, err := c.getGroups(ctx, client, user.ID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return identity, fmt.Errorf("microsoft: get groups: %v", err)
|
|
|
|
|
}
|
|
|
|
|
identity.Groups = groups
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
return identity, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/user
|
|
|
|
|
// id - The unique identifier for the user. Inherited from
|
|
|
|
|
// directoryObject. Key. Not nullable. Read-only.
|
|
|
|
|
// displayName - The name displayed in the address book for the user.
|
|
|
|
|
// This is usually the combination of the user's first name,
|
|
|
|
|
// middle initial and last name. This property is required
|
|
|
|
|
// when a user is created and it cannot be cleared during
|
|
|
|
|
// updates. Supports $filter and $orderby.
|
|
|
|
|
// userPrincipalName - The user principal name (UPN) of the user.
|
|
|
|
|
// The UPN is an Internet-style login name for the user
|
|
|
|
|
// based on the Internet standard RFC 822. By convention,
|
|
|
|
|
// this should map to the user's email name. The general
|
|
|
|
|
// format is alias@domain, where domain must be present in
|
|
|
|
|
// the tenant’s collection of verified domains. This
|
|
|
|
|
// property is required when a user is created. The
|
|
|
|
|
// verified domains for the tenant can be accessed from the
|
|
|
|
|
// verifiedDomains property of organization. Supports
|
|
|
|
|
// $filter and $orderby.
|
|
|
|
|
type user struct {
|
|
|
|
|
ID string `json:"id"`
|
|
|
|
|
Name string `json:"displayName"`
|
|
|
|
|
Email string `json:"userPrincipalName"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) user(ctx context.Context, client *http.Client) (u user, err error) {
|
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_get
|
2020-01-13 07:15:07 +00:00
|
|
|
|
req, err := http.NewRequest("GET", c.graphURL+"/v1.0/me?$select=id,displayName,userPrincipalName", nil)
|
2017-11-19 16:18:14 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return u, fmt.Errorf("new req: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
resp, err := client.Do(req.WithContext(ctx))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return u, fmt.Errorf("get URL %v", err)
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
2017-11-21 15:58:22 +00:00
|
|
|
|
return u, newGraphError(resp.Body)
|
2017-11-19 16:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := json.NewDecoder(resp.Body).Decode(&u); err != nil {
|
|
|
|
|
return u, fmt.Errorf("JSON decode: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return u, err
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 15:58:22 +00:00
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/group
|
|
|
|
|
// displayName - The display name for the group. This property is required when
|
|
|
|
|
// a group is created and it cannot be cleared during updates.
|
|
|
|
|
// Supports $filter and $orderby.
|
|
|
|
|
type group struct {
|
|
|
|
|
Name string `json:"displayName"`
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 20:06:19 +00:00
|
|
|
|
func (c *microsoftConnector) getGroups(ctx context.Context, client *http.Client, userID string) ([]string, error) {
|
|
|
|
|
userGroups, err := c.getGroupIDs(ctx, client)
|
2017-11-21 15:58:22 +00:00
|
|
|
|
if err != nil {
|
2019-05-08 20:06:19 +00:00
|
|
|
|
return nil, err
|
2017-11-21 15:58:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 20:06:19 +00:00
|
|
|
|
if c.groupNameFormat == GroupName {
|
|
|
|
|
userGroups, err = c.getGroupNames(ctx, client, userGroups)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2017-11-21 15:58:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ensure that the user is in at least one required group
|
2019-05-08 20:06:19 +00:00
|
|
|
|
filteredGroups := groups_pkg.Filter(userGroups, c.groups)
|
2019-07-03 08:40:31 +00:00
|
|
|
|
if len(c.groups) > 0 && len(filteredGroups) == 0 {
|
|
|
|
|
return nil, fmt.Errorf("microsoft: user %v not in any of the required groups", userID)
|
2019-05-08 20:06:19 +00:00
|
|
|
|
} else if c.useGroupsAsWhitelist {
|
|
|
|
|
return filteredGroups, nil
|
2017-11-21 15:58:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 20:06:19 +00:00
|
|
|
|
return userGroups, nil
|
2017-11-21 15:58:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) getGroupIDs(ctx context.Context, client *http.Client) (ids []string, err error) {
|
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_getmembergroups
|
|
|
|
|
in := &struct {
|
|
|
|
|
SecurityEnabledOnly bool `json:"securityEnabledOnly"`
|
|
|
|
|
}{c.onlySecurityGroups}
|
2020-01-13 07:15:07 +00:00
|
|
|
|
reqURL := c.graphURL + "/v1.0/me/getMemberGroups"
|
2017-11-21 15:58:22 +00:00
|
|
|
|
for {
|
|
|
|
|
var out []string
|
|
|
|
|
var next string
|
|
|
|
|
|
|
|
|
|
next, err = c.post(ctx, client, reqURL, in, &out)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ids, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ids = append(ids, out...)
|
|
|
|
|
if next == "" {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
reqURL = next
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) getGroupNames(ctx context.Context, client *http.Client, ids []string) (groups []string, err error) {
|
|
|
|
|
if len(ids) == 0 {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/directoryobject_getbyids
|
|
|
|
|
in := &struct {
|
|
|
|
|
IDs []string `json:"ids"`
|
|
|
|
|
Types []string `json:"types"`
|
|
|
|
|
}{ids, []string{"group"}}
|
2020-01-13 07:15:07 +00:00
|
|
|
|
reqURL := c.graphURL + "/v1.0/directoryObjects/getByIds"
|
2017-11-21 15:58:22 +00:00
|
|
|
|
for {
|
|
|
|
|
var out []group
|
|
|
|
|
var next string
|
|
|
|
|
|
|
|
|
|
next, err = c.post(ctx, client, reqURL, in, &out)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return groups, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, g := range out {
|
|
|
|
|
groups = append(groups, g.Name)
|
|
|
|
|
}
|
|
|
|
|
if next == "" {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
reqURL = next
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *microsoftConnector) post(ctx context.Context, client *http.Client, reqURL string, in interface{}, out interface{}) (string, error) {
|
|
|
|
|
var payload bytes.Buffer
|
|
|
|
|
|
|
|
|
|
err := json.NewEncoder(&payload).Encode(in)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", fmt.Errorf("microsoft: JSON encode: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req, err := http.NewRequest("POST", reqURL, &payload)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", fmt.Errorf("new req: %v", err)
|
|
|
|
|
}
|
|
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
|
|
resp, err := client.Do(req.WithContext(ctx))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", fmt.Errorf("post URL %v", err)
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
|
return "", newGraphError(resp.Body)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var next string
|
|
|
|
|
if err = json.NewDecoder(resp.Body).Decode(&struct {
|
|
|
|
|
NextLink *string `json:"@odata.nextLink"`
|
|
|
|
|
Value interface{} `json:"value"`
|
|
|
|
|
}{&next, out}); err != nil {
|
|
|
|
|
return "", fmt.Errorf("JSON decode: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return next, nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
type graphError struct {
|
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"message"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *graphError) Error() string {
|
|
|
|
|
return e.Code + ": " + e.Message
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 15:58:22 +00:00
|
|
|
|
func newGraphError(r io.Reader) error {
|
|
|
|
|
// https://developer.microsoft.com/en-us/graph/docs/concepts/errors
|
|
|
|
|
var ge graphError
|
|
|
|
|
if err := json.NewDecoder(r).Decode(&struct {
|
|
|
|
|
Error *graphError `json:"error"`
|
|
|
|
|
}{&ge}); err != nil {
|
|
|
|
|
return fmt.Errorf("JSON error decode: %v", err)
|
|
|
|
|
}
|
|
|
|
|
return &ge
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 16:18:14 +00:00
|
|
|
|
type oauth2Error struct {
|
|
|
|
|
error string
|
|
|
|
|
errorDescription string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *oauth2Error) Error() string {
|
|
|
|
|
if e.errorDescription == "" {
|
|
|
|
|
return e.error
|
|
|
|
|
}
|
|
|
|
|
return e.error + ": " + e.errorDescription
|
|
|
|
|
}
|