forked from openshift/osin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
access.go
237 lines (201 loc) · 6.78 KB
/
access.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package osin
import (
"github.com/stretchr/objx"
"net/http"
"time"
)
// HandleAccessRequest takes a *http.Request and a map of input
// parameters, and returns a *AccessRequest representing the request
// for an access token and a *HttpError if any error is encountered.
func (s *Server) HandleAccessRequest(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
// Always allow POST. Only allow GET when the config says it's
// allowed.
if request.Method != "POST" && (request.Method != "GET" || !s.Config.AllowGetAccessRequest) {
return nil, deferror.Get(E_INVALID_REQUEST)
}
grantType := AccessRequestType(params.Get("grant_type").Str())
if s.Config.AllowedAccessTypes.Exists(grantType) {
switch grantType {
case AUTHORIZATION_CODE:
return s.handleAccessRequestAuthorizationCode(request, params)
case REFRESH_TOKEN:
return s.handleAccessRequestRefreshToken(request, params)
case PASSWORD:
return s.handleAccessRequestPassword(request, params)
case FB_TOKEN:
return s.handleAccessRequestFbToken(request, params)
case CLIENT_CREDENTIALS:
return s.handleAccessRequestClientCredentials(request, params)
}
}
return nil, deferror.Get(E_UNSUPPORTED_GRANT_TYPE)
}
func (s *Server) handleAccessRequestAuthorizationCode(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
auth, err := GetValidAuth(request, params, s.Config.AllowClientSecretInParams)
if err != nil {
return nil, err
}
ret := &AccessRequest{
Type: AUTHORIZATION_CODE,
Code: params.Get("code").Str(),
RedirectUri: params.Get("redirect_uri").Str(),
GenerateRefresh: true,
Expiration: s.Config.AccessExpiration,
}
if ret.Code == "" {
return nil, deferror.Get(E_INVALID_GRANT)
}
ret.Client, err = s.GetValidClientWithSecret(auth.Username, auth.Password)
if err != nil {
return nil, err
}
ret.AuthorizeData, err = s.GetValidAuthData(ret.Code)
if err != nil {
return nil, err
}
if ret.AuthorizeData.GetClient().GetId() != ret.Client.GetId() {
return nil, deferror.Get(E_INVALID_GRANT)
}
if ret.RedirectUri == "" {
ret.RedirectUri = ret.Client.GetRedirectUri()
}
if err = ValidateUri(ret.Client.GetRedirectUri(), ret.RedirectUri); err != nil {
return nil, err
}
if ret.AuthorizeData.GetRedirectUri() != ret.RedirectUri {
return nil, deferror.Get(E_INVALID_REQUEST)
}
ret.Scope = ret.AuthorizeData.GetScope()
return ret, nil
}
func (s *Server) handleAccessRequestRefreshToken(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
ret := &AccessRequest{
Type: REFRESH_TOKEN,
Code: params.Get("refresh_token").Str(),
Scope: params.Get("scope").Str(),
GenerateRefresh: true,
Expiration: s.Config.AccessExpiration,
}
if ret.Code == "" {
return nil, deferror.Get(E_INVALID_GRANT)
}
var err *HttpError
ret.Client, err = s.GetValidClient(params.Get("client_id").Str())
if err != nil {
return nil, err
}
ret.AccessData, err = s.GetValidRefresh(ret.Code)
if err != nil {
return nil, err
}
if ret.AccessData.GetClient().GetId() != ret.Client.GetId() {
return nil, deferror.Get(E_INVALID_CLIENT)
}
ret.RedirectUri = ret.AccessData.GetRedirectUri()
if ret.Scope == "" {
ret.Scope = ret.AccessData.GetScope()
}
return ret, nil
}
// handleAccessRequestPassword handles access requests that POST a
// username and password directly to the token end point. This is
// usually a call from a client-side application or script, so we
// don't require a client secret, because it probably can't be secured
// properly, anyway.
func (s *Server) handleAccessRequestPassword(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
ret := &AccessRequest{
Type: PASSWORD,
Username: params.Get("username").Str(),
Password: params.Get("password").Str(),
Scope: params.Get("scope").Str(),
GenerateRefresh: true,
Expiration: s.Config.AccessExpiration,
}
if ret.Username == "" || ret.Password == "" {
return nil, deferror.Get(E_INVALID_GRANT)
}
var err *HttpError
ret.Client, err = s.GetValidClient(params.Get("client_id").Str())
if err != nil {
return nil, err
}
ret.RedirectUri = ret.Client.GetRedirectUri()
return ret, nil
}
func (s *Server) handleAccessRequestFbToken(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
ret := &AccessRequest{
Type: FB_TOKEN,
Scope: params.Get("scope").Str(),
GenerateRefresh: true,
Expiration: s.Config.AccessExpiration,
}
var err *HttpError
if ret.Client, err = s.GetValidClient(params.Get("client_id").Str()); err != nil {
return nil, err
}
ret.RedirectUri = ret.Client.GetRedirectUri()
return ret, nil
}
func (s *Server) handleAccessRequestClientCredentials(request *http.Request, params objx.Map) (*AccessRequest, *HttpError) {
auth, err := GetValidAuth(request, params, s.Config.AllowClientSecretInParams)
if err != nil {
return nil, err
}
ret := &AccessRequest{
Type: CLIENT_CREDENTIALS,
Scope: params.Get("scope").Str(),
GenerateRefresh: true,
Expiration: s.Config.AccessExpiration,
}
ret.Client, err = s.GetValidClientWithSecret(auth.Username, auth.Password)
if err != nil {
return nil, err
}
ret.RedirectUri = ret.Client.GetRedirectUri()
return ret, nil
}
func (s *Server) FinishAccessRequest(params objx.Map, ar *AccessRequest, target AccessData) (response objx.Map, httpErr *HttpError) {
if ar.Authorized {
target.SetClient(ar.Client)
target.SetAuthorizeData(ar.AuthorizeData)
target.SetAccessData(ar.AccessData)
target.SetRedirectUri(params.Get("redirect_uri").Str())
target.SetCreatedAt(time.Now())
target.SetExpiresIn(ar.Expiration)
accessToken, refreshToken, tokenErr := s.AccessTokenGen.GenerateAccessToken(ar.GenerateRefresh)
if tokenErr != nil {
return nil, tokenErr
}
target.SetAccessToken(accessToken)
target.SetRefreshToken(refreshToken)
if err := s.Storage.SaveAccess(target); err != nil {
if httpErr, ok := err.(*HttpError); ok {
return nil, httpErr
} else {
return nil, deferror.Get(err.Error())
}
}
if target.GetAuthorizeData() != nil {
s.Storage.RemoveAuthorize(target.GetAuthorizeData().GetCode())
}
if target.GetAccessData() != nil {
if target.GetAccessData().GetRefreshToken() != "" {
s.Storage.RemoveRefresh(target.GetAccessData().GetRefreshToken())
}
s.Storage.RemoveAccess(target.GetAccessData().GetAccessToken())
}
response := objx.Map{
"access_token": target.GetAccessToken(),
"token_type": s.Config.TokenType,
"expires_in": target.GetExpiresIn(),
}
if target.GetRefreshToken() != "" {
response.Set("refresh_token", target.GetRefreshToken())
}
if ar.Scope != "" {
response.Set("scope", ar.Scope)
}
return response, nil
}
return nil, deferror.Get(E_ACCESS_DENIED)
}