-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegothic.go
277 lines (233 loc) · 7.8 KB
/
egothic.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// Package egothic is a modified version of original gothic package for the Echo server.
// The original gothic package is a wrapper for the Goth library.
// This package is based on https://github.com/markbates/goth/blob/edc3e96387cb58c3f3d58e70db2f115815ccdf1e/gothic/gothic.go
package egothic
import (
"errors"
"fmt"
"net/url"
"github.com/gorilla/sessions"
"github.com/labstack/echo/v4"
"github.com/markbates/goth"
"github.com/markbates/goth/gothic"
)
const (
stateQueryParam = "state"
providerURLParam = "provider"
postHTTPMethod = "POST"
)
// SetStore sets the store for the gothic session.
func SetStore(store sessions.Store) {
gothic.Store = store
}
// Store returns the store for the gothic session.
func Store() sessions.Store {
return gothic.Store
}
// BeginAuthHandler is a convenience handler for starting the authentication process.
// It expects to be able to get the name of the provider from the query parameters
// as either "provider" or ":provider".
// BeginAuthHandler will redirect the user to the appropriate authentication end-point
// for the requested provider.
func BeginAuthHandler(e echo.Context, opts ...Options) error {
url, err := GetAuthURL(e, opts...)
if err != nil {
return err
}
return Redirect(e, url, opts...)
}
// SetState sets the state string associated with the given request.
// If no state string is associated with the request, one will be generated.
// This state is sent to the provider and can be retrieved during the
// callback.
var SetState = func(e echo.Context) string {
return gothic.SetState(e.Request())
}
// GetState gets the state returned by the provider during the callback.
// This is used to prevent CSRF attacks, see
// http://tools.ietf.org/html/rfc6749#section-10.12
var GetState = func(e echo.Context) string {
return gothic.GetState(e.Request())
}
// GetAuthURL starts the authentication process with the requested provided.
// It will return a URL that should be used to send users to.
// It expects to be able to get the name of the provider from the query parameters
// as either "provider" or ":provider".
// I would recommend using the BeginAuthHandler instead of doing all of these steps
// yourself, but that's entirely up to you.
func GetAuthURL(e echo.Context, opts ...Options) (string, error) {
// apply options
config := newConfig(opts...)
// get the provider name
config.log("Getting provider name")
providerName, err := GetProviderName(e)
if err != nil {
return "", err
}
config.log("Provider name: " + providerName)
// get the provider
config.log("Getting provider")
provider, err := goth.GetProvider(providerName)
if err != nil {
return "", err
}
config.log("Provider found")
// begin the authentication process
config.log("Beginning authentication process by setting state")
sess, err := provider.BeginAuth(SetState(e))
if err != nil {
return "", err
}
config.log("Authentication state set")
// get the auth URL
config.log("Getting auth URL")
url, err := sess.GetAuthURL()
if err != nil {
return "", err
}
config.log("Auth URL: " + url)
// store the session data
config.log("Storing session data")
err = StoreInSession(e, providerName, sess.Marshal())
if err != nil {
return "", err
}
config.log("Session data stored")
return url, err
}
// CompleteUserAuth does what it says on the tin. It completes the authentication
// process and fetches all of the basic information about the user from the provider.
// It expects to be able to get the name of the provider from the query parameters
// as either "provider" or ":provider".
func CompleteUserAuth(e echo.Context, opts ...Options) (goth.User, error) {
// apply options
config := newConfig(opts...)
// ensure that the user is logged out after the request
defer func() {
// TODO: log?
_ = Logout(e)
}()
// get the provider name
config.log("Getting provider name")
providerName, err := GetProviderName(e)
if err != nil {
return goth.User{}, err
}
config.log("Provider name: " + providerName)
// get the provider
config.log("Getting provider")
provider, err := goth.GetProvider(providerName)
if err != nil {
return goth.User{}, err
}
config.log("Provider found")
// get the session data
config.log("Getting session data")
value, err := GetFromSession(e, providerName)
if err != nil {
return goth.User{}, err
}
config.log("Session data found")
// unmarshal the session data
config.log("Unmarshalling session data")
sess, err := provider.UnmarshalSession(value)
if err != nil {
return goth.User{}, err
}
config.log("Session data unmarshalled")
// validate the state token
config.log("Validating state token")
err = validateState(e, sess)
if err != nil {
return goth.User{}, err
}
config.log("State token validated")
// fetch the user
config.log("Fetching user")
user, err := provider.FetchUser(sess)
if err == nil {
// user can be found with existing session data
return user, err
}
config.log(fmt.Sprintf("User fetched: %+v", user))
// get the query parameters from the request
config.log("Getting query parameters from request")
params := e.Request().URL.Query()
config.log(fmt.Sprintf("Query parameters: %+v", params))
// if the request is a POST, parse the form data
if params.Encode() == "" && e.Request().Method == postHTTPMethod {
config.log("Parsing form data")
err = e.Request().ParseForm()
if err != nil {
return goth.User{}, err
}
params = e.Request().Form
config.log(fmt.Sprintf("Form data: %+v", params))
}
// get new token and retry fetch
config.log("Getting new token and retrying fetch")
_, err = sess.Authorize(provider, params)
if err != nil {
return goth.User{}, err
}
config.log("New token and retry fetch successful")
// store the new session data
config.log("Storing new session data")
if err = StoreInSession(e, providerName, sess.Marshal()); err != nil {
return goth.User{}, err
}
config.log("New session data stored")
// fetch the user
config.log("Fetching user")
gu, err := provider.FetchUser(sess)
config.log(fmt.Sprintf("User fetched: %+v", gu))
return gu, err
}
// validateState ensures that the state token param from the original
// AuthURL matches the one included in the current (callback) request.
func validateState(e echo.Context, sess goth.Session) error {
// get the original auth URL
rawAuthURL, err := sess.GetAuthURL()
if err != nil {
return err
}
// parse the original auth URL
authURL, err := url.Parse(rawAuthURL)
if err != nil {
return err
}
// get the state token from the current request
reqState := GetState(e)
// get the state token from the original auth URL
originalState := authURL.Query().Get(stateQueryParam)
// ensure that the state tokens match
if originalState != "" && (originalState != reqState) {
return errors.New("state token mismatch")
}
return nil
}
// Logout invalidates a user session.
func Logout(e echo.Context) error {
return gothic.Logout(e.Response(), e.Request())
}
// GetProviderName is a function used to get the name of a provider
// for a given request. By default, this provider is fetched from
// the URL query string. If you provide it in a different way,
// assign your own function to this variable that returns the provider
// name for your request.
var GetProviderName = getProviderName
func getProviderName(e echo.Context) (string, error) {
if p := e.Param(providerURLParam); p != "" {
return p, nil
}
return gothic.GetProviderName(e.Request())
}
// StoreInSession stores a specified key/value pair in the session.
func StoreInSession(e echo.Context, key string, value string) error {
return gothic.StoreInSession(key, value, e.Request(), e.Response())
}
// GetFromSession retrieves a previously-stored value from the session.
// If no value has previously been stored at the specified key, it will return an error.
func GetFromSession(e echo.Context, key string) (string, error) {
return gothic.GetFromSession(key, e.Request())
}