Skip to content

Commit a4ef1ea

Browse files
authored
Merge pull request #37 from janekolszak/devel
Added context, updated to Hydra 0.9.x
2 parents efef485 + 139f121 commit a4ef1ea

File tree

3 files changed

+48
-42
lines changed

3 files changed

+48
-42
lines changed

glide.lock

+42-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import:
55
- package: github.com/gorilla/sessions
66
version: ~1.1.0
77
- package: github.com/ory/hydra
8-
version: ~0.8.5
8+
version: ~0.9.0
99
subpackages:
1010
- client
1111
- jwk

idp.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package idp
22

33
import (
4+
"context"
45
"crypto/rsa"
56
"net/http"
67
"time"
@@ -260,7 +261,7 @@ func (idp *IDP) getVerificationKey() (*rsa.PublicKey, error) {
260261
return key, nil
261262
}
262263

263-
func (idp *IDP) getClient(clientID string) (*hclient.Client, error) {
264+
func (idp *IDP) getClient(ctx context.Context, clientID string) (*hclient.Client, error) {
264265
clientKey := ClientInfoKey(clientID)
265266
data, ok := idp.cache.Get(clientKey)
266267
if ok {
@@ -271,7 +272,7 @@ func (idp *IDP) getClient(clientID string) (*hclient.Client, error) {
271272
return nil, ErrorNoSuchClient
272273
}
273274

274-
client, err := idp.hc.Clients.GetClient(clientID)
275+
client, err := idp.hc.Clients.GetClient(ctx, clientID)
275276
if err != nil {
276277
// Either the client isn't registered in hydra, or maybe hydra is
277278
// having some problem. Either way, ensure we don't hit hydra again
@@ -286,7 +287,7 @@ func (idp *IDP) getClient(clientID string) (*hclient.Client, error) {
286287
}
287288

288289
// Create a new Challenge. The request will contain all the necessary information from Hydra, passed in the URL.
289-
func (idp *IDP) NewChallenge(r *http.Request, user string) (challenge *Challenge, err error) {
290+
func (idp *IDP) NewChallenge(ctx context.Context, r *http.Request, user string) (challenge *Challenge, err error) {
290291
tokenStr := r.FormValue("challenge")
291292
if tokenStr == "" {
292293
// No challenge token
@@ -310,7 +311,7 @@ func (idp *IDP) NewChallenge(r *http.Request, user string) (challenge *Challenge
310311
}
311312

312313
// Get data from the challenge jwt
313-
challenge.Client, err = idp.getClient(claims["aud"].(string))
314+
challenge.Client, err = idp.getClient(ctx, claims["aud"].(string))
314315
if err != nil {
315316
return nil, err
316317
}

0 commit comments

Comments
 (0)