-
Notifications
You must be signed in to change notification settings - Fork 0
/
groups.go
218 lines (183 loc) · 5.47 KB
/
groups.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package authenticate
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"time"
)
type (
accessTokenPostJSON struct {
ClientID string `json:"client_id"`
Scope string `json:"scope"`
Tenant string `json:"tenant"`
RedirectURI string `json:"redirect_uri"`
GrantType string `json:"grant_type"`
Code string `json:"code"`
ClientSecret string `json:"client_secret"`
}
refreshTokenPostJSON struct {
ClientID string `json:"client_id"`
Scope string `json:"scope"`
Tenant string `json:"tenant"`
RedirectURI string `json:"redirect_uri"`
GrantType string `json:"grant_type"`
RefreshToken string `json:"refresh_token"`
ClientSecret string `json:"client_secret"`
}
accessTokenResponse struct {
TokenType string `json:"token_type"`
ExpiresIn int64 `json:"expires_in"`
IDToken string `json:"id_token"`
Scope string `json:"scope"`
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
}
memberGroupsPostJSON struct {
SecurityEnabledOnly bool `json:"securityEnabledOnly"`
}
groupFromIDPostJSON struct {
IDs []string `json:"ids"`
Types []string `json:"types"`
}
// MemberGroups is used for unmarshalling a Graph API response
MemberGroups struct {
Values []MemberGroup `json:"value"`
}
// MemberGroup captures data from a Group Directory Object.
// Other properties exist, but don't necessarily pertain to authorization
MemberGroup struct {
DataType string `json:"@odata.type"`
Description string `json:"description"`
DisplayName string `json:"displayName"`
SecurityEnabled bool `json:"securityEnabled"`
}
)
var accessTokenURI = "https://login.microsoftonline.com/%s/oauth2/v2.0/token"
var memberGroupsURI = "https://graph.microsoft.com/v1.0/me/getMemberGroups"
var objectByIDURI = "https://graph.microsoft.com/v1.0/directoryObjects/getByIds"
func (a *activeDirectory) getGroups(code string) ([]MemberGroup, string, string, int64, error) {
var permissions string
if a.ExtraPermissions == "" {
permissions = "User.Read Group.Read.All offline_access"
} else {
permissions = "User.Read Group.Read.All" + fmt.Sprintf(" %s", a.ExtraPermissions)
}
httpClient := &http.Client{Timeout: 10 * time.Second}
refreshEndpoint := fmt.Sprintf(accessTokenURI, a.TenantID)
requestJSON, err := json.Marshal(&accessTokenPostJSON{
ClientID: a.ClientID,
Scope: permissions,
Tenant: a.TenantID,
RedirectURI: a.RedirectURI,
GrantType: "authorization_code",
Code: code,
ClientSecret: a.ClientSecret,
})
if err != nil {
return nil, "", "", 0, err
}
values := url.Values{}
var data map[string]interface{}
if err = json.Unmarshal([]byte(requestJSON), &data); err != nil {
return nil, "", "", 0, err
}
for key, value := range data {
values.Add(key, value.(string))
}
req, err := http.NewRequest("POST", refreshEndpoint, strings.NewReader(values.Encode()))
if err != nil {
return nil, "", "", 0, err
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.Header.Add("Content-Length", strconv.Itoa(len(values.Encode())))
res, err := httpClient.Do(req)
if err != nil {
return nil, "", "", 0, err
}
byt, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return nil, "", "", 0, err
}
responseData := &accessTokenResponse{}
err = json.Unmarshal(byt, &responseData)
if err != nil {
return nil, "", "", 0, err
}
memberGroupIDs, err := a.getMemberGroupIDs(responseData.AccessToken)
if err != nil {
return nil, "", "", 0, err
}
groups, err := getGroupsByID(responseData.AccessToken, memberGroupIDs)
return groups, responseData.AccessToken, responseData.RefreshToken, responseData.ExpiresIn, nil
}
func (a *activeDirectory) getMemberGroupIDs(accessToken string) ([]string, error) {
requestJSON, err := json.Marshal(&memberGroupsPostJSON{
SecurityEnabledOnly: false,
})
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", memberGroupsURI, bytes.NewBuffer(requestJSON))
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", accessToken))
httpClient := &http.Client{Timeout: 10 * time.Second}
res, err := httpClient.Do(req)
if err != nil {
return nil, err
}
byt, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return nil, err
}
var structuredData struct {
Values []string `json:"value"`
}
err = json.Unmarshal(byt, &structuredData)
if err != nil {
return nil, err
}
return structuredData.Values, nil
}
func getGroupsByID(accessToken string, groupIDs []string) ([]MemberGroup, error) {
httpClient := &http.Client{Timeout: 10 * time.Second}
requestJSON := &groupFromIDPostJSON{
IDs: groupIDs,
Types: []string{"group"},
}
jsonData, err := json.Marshal(requestJSON)
if err != nil {
return nil, err
}
var jsonStr = []byte(jsonData)
req, err := http.NewRequest("POST", objectByIDURI, bytes.NewBuffer(jsonStr))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", accessToken))
res, err := httpClient.Do(req)
if err != nil {
return nil, err
}
byt, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return nil, err
}
var memberGroups MemberGroups
err = json.Unmarshal(byt, &memberGroups)
if err != nil {
return nil, err
}
return memberGroups.Values, nil
}