Skip to content

Commit

Permalink
Merge 1c7c92a into 318ea2c
Browse files Browse the repository at this point in the history
  • Loading branch information
hperl authored Aug 24, 2023
2 parents 318ea2c + 1c7c92a commit 5503d5e
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 25 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE selfservice_verification_flows DROP COLUMN identity_id;
ALTER TABLE selfservice_verification_flows DROP COLUMN authentication_methods;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE selfservice_verification_flows ADD COLUMN identity_id VARCHAR(36);
ALTER TABLE selfservice_verification_flows ADD COLUMN authentication_methods JSON;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE selfservice_verification_flows ADD COLUMN identity_id VARCHAR(36);
ALTER TABLE selfservice_verification_flows ADD COLUMN authentication_methods TEXT;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE selfservice_verification_flows ADD COLUMN identity_id UUID;
ALTER TABLE selfservice_verification_flows ADD COLUMN authentication_methods JSON;
17 changes: 14 additions & 3 deletions selfservice/flow/verification/flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import (

"github.com/ory/kratos/driver/config"
"github.com/ory/kratos/selfservice/flow"
"github.com/ory/kratos/session"
"github.com/ory/kratos/ui/container"
"github.com/ory/kratos/x"
"github.com/ory/x/sqlxx"
Expand Down Expand Up @@ -81,9 +82,7 @@ type Flow struct {

// OAuth2LoginChallenge holds the login challenge originally set during the registration flow.
OAuth2LoginChallenge sqlxx.NullString `json:"-" db:"oauth2_login_challenge"`

// SessionID holds the session id if set from a registraton hook.
SessionID uuid.NullUUID `json:"-" faker:"-" db:"session_id"`
OAuth2LoginChallengeParams

// CSRFToken contains the anti-csrf token associated with this request.
CSRFToken string `json:"-" db:"csrf_token"`
Expand All @@ -95,6 +94,18 @@ type Flow struct {
NID uuid.UUID `json:"-" faker:"-" db:"nid"`
}

type OAuth2LoginChallengeParams struct {
// SessionID holds the session id if set from a registraton hook.
SessionID uuid.NullUUID `json:"-" faker:"-" db:"session_id"`

// IdentityID holds the identity id if set from a registraton hook.
IdentityID uuid.NullUUID `json:"-" faker:"-" db:"identity_id"`

// AMR contains a list of authentication methods that were used to verify the
// session if set from a registration hook.
AMR session.AuthenticationMethods `db:"authentication_methods" json:"-"`
}

func (f *Flow) GetType() flow.Type {
return f.Type
}
Expand Down
24 changes: 5 additions & 19 deletions selfservice/flow/verification/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
package verification

import (
"context"
"net/http"
"time"

Expand Down Expand Up @@ -54,6 +53,7 @@ type (
x.CSRFTokenGeneratorProvider
x.WriterProvider
x.CSRFProvider
x.LoggingProvider

FlowPersistenceProvider
ErrorHandlerProvider
Expand Down Expand Up @@ -445,8 +445,7 @@ func (h *Handler) updateVerificationFlow(w http.ResponseWriter, r *http.Request,
// Special case: If we ended up here through a OAuth2 login challenge, we need to accept the login request
// and redirect back to the OAuth2 provider.
if f.OAuth2LoginChallenge.String() != "" {
sess := h.maybeGetSession(ctx, f)
if sess == nil {
if !f.IdentityID.Valid || !f.SessionID.Valid {
h.d.VerificationFlowErrorHandler().WriteFlowError(w, r, f, node.DefaultGroup,
herodot.ErrBadRequest.WithReasonf("No session was found for this flow. Please retry the authentication."))
return
Expand All @@ -455,9 +454,9 @@ func (h *Handler) updateVerificationFlow(w http.ResponseWriter, r *http.Request,
callbackURL, err := h.d.Hydra().AcceptLoginRequest(ctx,
hydra.AcceptLoginRequestParams{
LoginChallenge: string(f.OAuth2LoginChallenge),
IdentityID: sess.IdentityID.String(),
SessionID: sess.ID.String(),
AuthenticationMethods: sess.AMR,
IdentityID: f.IdentityID.UUID.String(),
SessionID: f.SessionID.UUID.String(),
AuthenticationMethods: f.AMR,
})
if err != nil {
h.d.VerificationFlowErrorHandler().WriteFlowError(w, r, f, node.DefaultGroup, err)
Expand All @@ -480,16 +479,3 @@ func (h *Handler) updateVerificationFlow(w http.ResponseWriter, r *http.Request,

h.d.Writer().Write(w, r, updatedFlow)
}

// maybeGetSession returns the session if it was found in the flow or nil otherwise.
func (h *Handler) maybeGetSession(ctx context.Context, f *Flow) *session.Session {
if !f.SessionID.Valid {
return nil
}
s, err := h.d.SessionPersister().GetSession(ctx, f.SessionID.UUID, session.ExpandNothing)
if err != nil {
return nil
}

return s
}
10 changes: 7 additions & 3 deletions selfservice/flow/verification/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ import (

"github.com/ory/kratos/driver/config"
"github.com/ory/kratos/hydra"
"github.com/ory/kratos/identity"
"github.com/ory/kratos/internal"
"github.com/ory/kratos/internal/testhelpers"
"github.com/ory/kratos/selfservice/flow/verification"
"github.com/ory/kratos/session"
"github.com/ory/kratos/x"
)

Expand Down Expand Up @@ -214,15 +216,17 @@ func TestPostFlow(t *testing.T) {

t.Run("suite=with OIDC login challenge", func(t *testing.T) {
t.Run("case=succeeds with a session", func(t *testing.T) {
s := testhelpers.CreateSession(t, reg)

f := &verification.Flow{
ID: uuid.Must(uuid.NewV4()),
Type: "browser",
ExpiresAt: time.Now().Add(1 * time.Hour),
IssuedAt: time.Now(),
OAuth2LoginChallenge: hydra.FakeValidLoginChallenge,
SessionID: uuid.NullUUID{UUID: s.ID, Valid: true},
OAuth2LoginChallengeParams: verification.OAuth2LoginChallengeParams{
SessionID: uuid.NullUUID{UUID: uuid.Must(uuid.NewV4()), Valid: true},
IdentityID: uuid.NullUUID{UUID: uuid.Must(uuid.NewV4()), Valid: true},
AMR: session.AuthenticationMethods{{Method: identity.CredentialsTypePassword}},
},
}
require.NoError(t, reg.VerificationFlowPersister().CreateVerificationFlow(ctx, f))

Expand Down
2 changes: 2 additions & 0 deletions selfservice/hook/verification.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ func (e *Verifier) ExecutePostRegistrationPostPersistHook(w http.ResponseWriter,
return e.do(w, r.WithContext(ctx), s.Identity, f, func(v *verification.Flow) {
v.OAuth2LoginChallenge = f.OAuth2LoginChallenge
v.SessionID = uuid.NullUUID{UUID: s.ID, Valid: true}
v.IdentityID = uuid.NullUUID{UUID: s.Identity.ID, Valid: true}
v.AMR = s.AMR
})
})
}
Expand Down
6 changes: 6 additions & 0 deletions session/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@ type AuthenticationMethod struct {

// Scan implements the Scanner interface.
func (n *AuthenticationMethod) Scan(value interface{}) error {
if value == nil {
return nil

Check warning on line 333 in session/session.go

View check run for this annotation

Codecov / codecov/patch

session/session.go#L332-L333

Added lines #L332 - L333 were not covered by tests
}
v := fmt.Sprintf("%s", value)
if len(v) == 0 {
return nil
Expand All @@ -347,6 +350,9 @@ func (n AuthenticationMethod) Value() (driver.Value, error) {

// Scan implements the Scanner interface.
func (n *AuthenticationMethods) Scan(value interface{}) error {
if value == nil {
return nil
}
v := fmt.Sprintf("%s", value)
if len(v) == 0 {
return nil
Expand Down

0 comments on commit 5503d5e

Please sign in to comment.