-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathauthorize.go
169 lines (146 loc) · 4.75 KB
/
authorize.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
package web
import (
"errors"
"fmt"
"net/http"
"net/url"
"strconv"
"github.com/RichardKnop/go-oauth2-server/models"
"github.com/RichardKnop/go-oauth2-server/session"
)
// ErrIncorrectResponseType a form value for response_type was not set to token or code
var ErrIncorrectResponseType = errors.New("Response type not one of token or code")
func (s *Service) authorizeForm(w http.ResponseWriter, r *http.Request) {
sessionService, client, _, responseType, _, err := s.authorizeCommon(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Render the template
errMsg, _ := sessionService.GetFlashMessage()
query := r.URL.Query()
query.Set("login_redirect_uri", r.URL.Path)
renderTemplate(w, "authorize.html", map[string]interface{}{
"error": errMsg,
"clientID": client.Key,
"queryString": getQueryString(query),
"token": responseType == "token",
})
}
func (s *Service) authorize(w http.ResponseWriter, r *http.Request) {
_, client, user, responseType, redirectURI, err := s.authorizeCommon(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Get the state parameter
state := r.Form.Get("state")
// Has the resource owner or authorization server denied the request?
authorized := len(r.Form.Get("allow")) > 0
if !authorized {
errorRedirect(w, r, redirectURI, "access_denied", state, responseType)
return
}
// Check the requested scope
scope, err := s.oauthService.GetScope(r.Form.Get("scope"))
if err != nil {
errorRedirect(w, r, redirectURI, "invalid_scope", state, responseType)
return
}
query := redirectURI.Query()
// When response_type == "code", we will grant an authorization code
if responseType == "code" {
// Create a new authorization code
authorizationCode, err := s.oauthService.GrantAuthorizationCode(
client, // client
user, // user
s.cnf.Oauth.AuthCodeLifetime, // expires in
redirectURI.String(), // redirect URI
scope, // scope
)
if err != nil {
errorRedirect(w, r, redirectURI, "server_error", state, responseType)
return
}
// Set query string params for the redirection URL
query.Set("code", authorizationCode.Code)
// Add state param if present (recommended)
if state != "" {
query.Set("state", state)
}
// And we're done here, redirect
redirectWithQueryString(redirectURI.String(), query, w, r)
return
}
// When response_type == "token", we will directly grant an access token
if responseType == "token" {
// Get access token lifetime from user input
lifetime, err := strconv.Atoi(r.Form.Get("lifetime"))
if err != nil {
errorRedirect(w, r, redirectURI, "server_error", state, responseType)
return
}
// Grant an access token
accessToken, err := s.oauthService.GrantAccessToken(
client, // client
user, // user
lifetime, // expires in
scope, // scope
)
if err != nil {
errorRedirect(w, r, redirectURI, "server_error", state, responseType)
return
}
// Set query string params for the redirection URL
query.Set("access_token", accessToken.Token)
query.Set("expires_in", fmt.Sprintf("%d", s.cnf.Oauth.AccessTokenLifetime))
query.Set("token_type", "Bearer")
query.Set("scope", scope)
// Add state param if present (recommended)
if state != "" {
query.Set("state", state)
}
// And we're done here, redirect
redirectWithFragment(redirectURI.String(), query, w, r)
}
}
func (s *Service) authorizeCommon(r *http.Request) (session.ServiceInterface, *models.OauthClient, *models.OauthUser, string, *url.URL, error) {
// Get the session service from the request context
sessionService, err := getSessionService(r)
if err != nil {
return nil, nil, nil, "", nil, err
}
// Get the client from the request context
client, err := getClient(r)
if err != nil {
return nil, nil, nil, "", nil, err
}
// Get the user session
userSession, err := sessionService.GetUserSession()
if err != nil {
return nil, nil, nil, "", nil, err
}
// Fetch the user
user, err := s.oauthService.FindUserByUsername(
userSession.Username,
)
if err != nil {
return nil, nil, nil, "", nil, err
}
// Check the response_type is either "code" or "token"
responseType := r.Form.Get("response_type")
if responseType != "code" && responseType != "token" {
return nil, nil, nil, "", nil, ErrIncorrectResponseType
}
// Fallback to the client redirect URI if not in query string
redirectURI := r.Form.Get("redirect_uri")
if redirectURI == "" {
redirectURI = client.RedirectURI.String
}
// // Parse the redirect URL
parsedRedirectURI, err := url.ParseRequestURI(redirectURI)
if err != nil {
return nil, nil, nil, "", nil, err
}
return sessionService, client, user, responseType, parsedRedirectURI, nil
}