// Copyright 2020 the Pinniped contributors. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 package provider import ( "fmt" "net/url" "strings" "go.pinniped.dev/internal/constable" ) // FederationDomainIssuer represents all of the settings and state for a downstream OIDC provider // as defined by a FederationDomain. type FederationDomainIssuer struct { issuer string issuerHost string issuerPath string } func NewFederationDomainIssuer(issuer string) (*FederationDomainIssuer, error) { p := FederationDomainIssuer{issuer: issuer} err := p.validate() if err != nil { return nil, err } return &p, nil } func (p *FederationDomainIssuer) validate() error { if p.issuer == "" { return constable.Error("federation domain must have an issuer") } issuerURL, err := url.Parse(p.issuer) if err != nil { return fmt.Errorf("could not parse issuer as URL: %w", err) } if issuerURL.Scheme != "https" { return constable.Error(`issuer must have "https" scheme`) } if issuerURL.User != nil { return constable.Error(`issuer must not have username or password`) } if strings.HasSuffix(issuerURL.Path, "/") { return constable.Error(`issuer must not have trailing slash in path`) } if issuerURL.RawQuery != "" { return constable.Error(`issuer must not have query`) } if issuerURL.Fragment != "" { return constable.Error(`issuer must not have fragment`) } p.issuerHost = issuerURL.Host p.issuerPath = issuerURL.Path return nil } func (p *FederationDomainIssuer) Issuer() string { return p.issuer } func (p *FederationDomainIssuer) IssuerHost() string { return p.issuerHost } func (p *FederationDomainIssuer) IssuerPath() string { return p.issuerPath }