Add compliange page base URL in context and use it to validate redirect URLs
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -551,7 +551,16 @@ func (impl *Implm) Run(
|
|||||||
defer stopTrustCenterServer()
|
defer stopTrustCenterServer()
|
||||||
wg.Go(
|
wg.Go(
|
||||||
func() {
|
func() {
|
||||||
if err := impl.runTrustCenterServer(trustCenterServerCtx, l, r, tp, pgClient, serverHandler.TrustCenterHandler(), acmeService, proboService); err != nil {
|
if err := impl.runTrustCenterServer(
|
||||||
|
trustCenterServerCtx,
|
||||||
|
l,
|
||||||
|
r,
|
||||||
|
tp,
|
||||||
|
pgClient,
|
||||||
|
serverHandler.TrustCenterHandler(),
|
||||||
|
acmeService,
|
||||||
|
proboService,
|
||||||
|
); err != nil {
|
||||||
cancel(fmt.Errorf("trust center server crashed: %w", err))
|
cancel(fmt.Errorf("trust center server crashed: %w", err))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -23,8 +23,9 @@ import (
|
|||||||
type ctxKey struct{ name string }
|
type ctxKey struct{ name string }
|
||||||
|
|
||||||
var (
|
var (
|
||||||
compliancePageKey = &ctxKey{name: "compliance_page"}
|
compliancePageKey = &ctxKey{name: "compliance_page"}
|
||||||
complianceMembershipKey = &ctxKey{name: "compliance_membership"}
|
complianceMembershipKey = &ctxKey{name: "compliance_membership"}
|
||||||
|
compliancePageBaseURLKey = &ctxKey{name: "compliance_page_base_url"}
|
||||||
)
|
)
|
||||||
|
|
||||||
func CompliancePageFromContext(ctx context.Context) *coredata.TrustCenter {
|
func CompliancePageFromContext(ctx context.Context) *coredata.TrustCenter {
|
||||||
@@ -36,3 +37,8 @@ func ComplianceMembershipFromContext(ctx context.Context) *coredata.TrustCenterA
|
|||||||
membership, _ := ctx.Value(complianceMembershipKey).(*coredata.TrustCenterAccess)
|
membership, _ := ctx.Value(complianceMembershipKey).(*coredata.TrustCenterAccess)
|
||||||
return membership
|
return membership
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func CompliancePageBaseURLFromContext(ctx context.Context) *string {
|
||||||
|
page, _ := ctx.Value(compliancePageBaseURLKey).(*string)
|
||||||
|
return page
|
||||||
|
}
|
||||||
|
|||||||
@@ -23,12 +23,13 @@ import (
|
|||||||
"github.com/go-chi/chi/v5"
|
"github.com/go-chi/chi/v5"
|
||||||
"github.com/vektah/gqlparser/v2/gqlerror"
|
"github.com/vektah/gqlparser/v2/gqlerror"
|
||||||
"go.gearno.de/kit/httpserver"
|
"go.gearno.de/kit/httpserver"
|
||||||
|
"go.probo.inc/probo/pkg/baseurl"
|
||||||
"go.probo.inc/probo/pkg/gid"
|
"go.probo.inc/probo/pkg/gid"
|
||||||
"go.probo.inc/probo/pkg/server/gqlutils"
|
"go.probo.inc/probo/pkg/server/gqlutils"
|
||||||
"go.probo.inc/probo/pkg/trust"
|
"go.probo.inc/probo/pkg/trust"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewIDMiddleware(trustSvc *trust.Service) func(next http.Handler) http.Handler {
|
func NewIDMiddleware(trustSvc *trust.Service, baseURL string) func(next http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(
|
return http.HandlerFunc(
|
||||||
func(w http.ResponseWriter, r *http.Request) {
|
func(w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -56,6 +57,10 @@ func NewIDMiddleware(trustSvc *trust.Service) func(next http.Handler) http.Handl
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
baseURL := baseurl.MustParse(baseURL).AppendPath("/trust/" + id.String()).MustString()
|
||||||
|
ctx = context.WithValue(ctx, compliancePageBaseURLKey, &baseURL)
|
||||||
|
r = r.WithContext(ctx)
|
||||||
|
|
||||||
if !compliancePage.Active {
|
if !compliancePage.Active {
|
||||||
next.ServeHTTP(w, r)
|
next.ServeHTTP(w, r)
|
||||||
return
|
return
|
||||||
@@ -85,6 +90,10 @@ func NewIDMiddleware(trustSvc *trust.Service) func(next http.Handler) http.Handl
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
baseURL := baseurl.MustParse(baseURL).AppendPath("/trust/" + value).MustString()
|
||||||
|
ctx = context.WithValue(ctx, compliancePageBaseURLKey, &baseURL)
|
||||||
|
r = r.WithContext(ctx)
|
||||||
|
|
||||||
if compliancePage.Active {
|
if compliancePage.Active {
|
||||||
ctx = context.WithValue(ctx, compliancePageKey, compliancePage)
|
ctx = context.WithValue(ctx, compliancePageKey, compliancePage)
|
||||||
next.ServeHTTP(w, r.WithContext(ctx))
|
next.ServeHTTP(w, r.WithContext(ctx))
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
|
||||||
"github.com/99designs/gqlgen/graphql"
|
"github.com/99designs/gqlgen/graphql"
|
||||||
"github.com/vektah/gqlparser/v2/gqlerror"
|
"github.com/vektah/gqlparser/v2/gqlerror"
|
||||||
@@ -55,6 +56,19 @@ func NewSNIMiddleware(trustSvc *trust.Service) func(next http.Handler) http.Hand
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
baseURL := &url.URL{
|
||||||
|
Host: r.Host,
|
||||||
|
Path: r.URL.Path,
|
||||||
|
Scheme: "https",
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx = context.WithValue(
|
||||||
|
ctx,
|
||||||
|
compliancePageBaseURLKey,
|
||||||
|
new(baseURL.String()),
|
||||||
|
)
|
||||||
|
r = r.WithContext(ctx)
|
||||||
|
|
||||||
if compliancePage.Active {
|
if compliancePage.Active {
|
||||||
ctx = context.WithValue(ctx, compliancePageKey, compliancePage)
|
ctx = context.WithValue(ctx, compliancePageKey, compliancePage)
|
||||||
next.ServeHTTP(w, r.WithContext(ctx))
|
next.ServeHTTP(w, r.WithContext(ctx))
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ import (
|
|||||||
"go.probo.inc/probo/pkg/baseurl"
|
"go.probo.inc/probo/pkg/baseurl"
|
||||||
"go.probo.inc/probo/pkg/esign"
|
"go.probo.inc/probo/pkg/esign"
|
||||||
"go.probo.inc/probo/pkg/iam"
|
"go.probo.inc/probo/pkg/iam"
|
||||||
"go.probo.inc/probo/pkg/saferedirect"
|
|
||||||
"go.probo.inc/probo/pkg/securecookie"
|
"go.probo.inc/probo/pkg/securecookie"
|
||||||
"go.probo.inc/probo/pkg/server/api/authn"
|
"go.probo.inc/probo/pkg/server/api/authn"
|
||||||
"go.probo.inc/probo/pkg/server/api/trust/v1/schema"
|
"go.probo.inc/probo/pkg/server/api/trust/v1/schema"
|
||||||
@@ -39,7 +38,6 @@ func NewGraphQLHandler(iamSvc *iam.Service, trustSvc *trust.Service, esignSvc *e
|
|||||||
logger: logger,
|
logger: logger,
|
||||||
baseURL: baseURL,
|
baseURL: baseURL,
|
||||||
sessionCookie: authn.NewCookie(&cookieConfig),
|
sessionCookie: authn.NewCookie(&cookieConfig),
|
||||||
safeRedirect: &saferedirect.SafeRedirect{AllowedHost: baseURL.Host()},
|
|
||||||
},
|
},
|
||||||
Directives: schema.DirectiveRoot{
|
Directives: schema.DirectiveRoot{
|
||||||
Nda: newNDADirectiveFunc(logger, trustSvc, esignSvc),
|
Nda: newNDADirectiveFunc(logger, trustSvc, esignSvc),
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ import (
|
|||||||
"go.probo.inc/probo/pkg/esign"
|
"go.probo.inc/probo/pkg/esign"
|
||||||
"go.probo.inc/probo/pkg/gid"
|
"go.probo.inc/probo/pkg/gid"
|
||||||
"go.probo.inc/probo/pkg/iam"
|
"go.probo.inc/probo/pkg/iam"
|
||||||
"go.probo.inc/probo/pkg/saferedirect"
|
|
||||||
"go.probo.inc/probo/pkg/securecookie"
|
"go.probo.inc/probo/pkg/securecookie"
|
||||||
"go.probo.inc/probo/pkg/server/api/authn"
|
"go.probo.inc/probo/pkg/server/api/authn"
|
||||||
"go.probo.inc/probo/pkg/server/api/compliancepage"
|
"go.probo.inc/probo/pkg/server/api/compliancepage"
|
||||||
@@ -53,7 +52,6 @@ type (
|
|||||||
iam *iam.Service
|
iam *iam.Service
|
||||||
sessionCookie *authn.Cookie
|
sessionCookie *authn.Cookie
|
||||||
baseURL *baseurl.BaseURL
|
baseURL *baseurl.BaseURL
|
||||||
safeRedirect *saferedirect.SafeRedirect
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -14,11 +14,13 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"go.gearno.de/kit/log"
|
"go.gearno.de/kit/log"
|
||||||
|
"go.probo.inc/probo/pkg/baseurl"
|
||||||
"go.probo.inc/probo/pkg/coredata"
|
"go.probo.inc/probo/pkg/coredata"
|
||||||
"go.probo.inc/probo/pkg/esign"
|
"go.probo.inc/probo/pkg/esign"
|
||||||
"go.probo.inc/probo/pkg/gid"
|
"go.probo.inc/probo/pkg/gid"
|
||||||
"go.probo.inc/probo/pkg/iam"
|
"go.probo.inc/probo/pkg/iam"
|
||||||
"go.probo.inc/probo/pkg/page"
|
"go.probo.inc/probo/pkg/page"
|
||||||
|
"go.probo.inc/probo/pkg/saferedirect"
|
||||||
"go.probo.inc/probo/pkg/server/api/authn"
|
"go.probo.inc/probo/pkg/server/api/authn"
|
||||||
"go.probo.inc/probo/pkg/server/api/compliancepage"
|
"go.probo.inc/probo/pkg/server/api/compliancepage"
|
||||||
"go.probo.inc/probo/pkg/server/api/trust/v1/schema"
|
"go.probo.inc/probo/pkg/server/api/trust/v1/schema"
|
||||||
@@ -157,6 +159,17 @@ func (r *frameworkResolver) DarkLogoURL(ctx context.Context, obj *types.Framewor
|
|||||||
func (r *mutationResolver) SendMagicLink(ctx context.Context, input types.SendMagicLinkInput) (*types.SendMagicLinkPayload, error) {
|
func (r *mutationResolver) SendMagicLink(ctx context.Context, input types.SendMagicLinkInput) (*types.SendMagicLinkPayload, error) {
|
||||||
trustCenter := compliancepage.CompliancePageFromContext(ctx)
|
trustCenter := compliancepage.CompliancePageFromContext(ctx)
|
||||||
|
|
||||||
|
baseURL := compliancepage.CompliancePageBaseURLFromContext(ctx)
|
||||||
|
|
||||||
|
safeRedirect := &saferedirect.SafeRedirect{AllowedHost: baseurl.MustParse(*baseURL).Host()}
|
||||||
|
|
||||||
|
if input.Continue != nil {
|
||||||
|
_, ok := safeRedirect.Validate(*input.Continue)
|
||||||
|
if !ok {
|
||||||
|
return nil, gqlutils.Invalidf(ctx, "invalid continue URL")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
req := &iam.SendMagicLinkRequest{
|
req := &iam.SendMagicLinkRequest{
|
||||||
Email: input.Email,
|
Email: input.Email,
|
||||||
CompliancePageID: &trustCenter.ID,
|
CompliancePageID: &trustCenter.ID,
|
||||||
|
|||||||
@@ -109,16 +109,16 @@ func NewServer(cfg Config) (*Server, error) {
|
|||||||
logger: cfg.Logger,
|
logger: cfg.Logger,
|
||||||
}
|
}
|
||||||
|
|
||||||
server.setupRoutes()
|
server.setupRoutes(cfg.BaseURL.String())
|
||||||
|
|
||||||
return server, nil
|
return server, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) setupRoutes() {
|
func (s *Server) setupRoutes(baseURL string) {
|
||||||
s.router.Mount("/api", http.StripPrefix("/api", s.apiServer))
|
s.router.Mount("/api", http.StripPrefix("/api", s.apiServer))
|
||||||
|
|
||||||
s.router.Route("/trust/{slugOrId}", func(r chi.Router) {
|
s.router.Route("/trust/{slugOrId}", func(r chi.Router) {
|
||||||
r.Use(compliancepage.NewIDMiddleware(s.trustService))
|
r.Use(compliancepage.NewIDMiddleware(s.trustService, baseURL))
|
||||||
r.Use(s.stripTrustPrefix)
|
r.Use(s.stripTrustPrefix)
|
||||||
r.Mount("/", s.trustCenterRouter())
|
r.Mount("/", s.trustCenterRouter())
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user