mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
package workerschema |
|
|
|
import ( |
|
"errors" |
|
"net/url" |
|
|
|
"github.com/coreos/go-oidc/oidc" |
|
) |
|
|
|
func MapSchemaClientToClientIdentity(sc Client) (oidc.ClientIdentity, error) { |
|
ci := oidc.ClientIdentity{ |
|
Credentials: oidc.ClientCredentials{ |
|
ID: sc.Id, |
|
}, |
|
Metadata: oidc.ClientMetadata{ |
|
RedirectURIs: make([]url.URL, len(sc.RedirectURIs)), |
|
}, |
|
} |
|
|
|
for i, ru := range sc.RedirectURIs { |
|
if ru == "" { |
|
return oidc.ClientIdentity{}, errors.New("redirect URL empty") |
|
} |
|
|
|
u, err := url.Parse(ru) |
|
if err != nil { |
|
return oidc.ClientIdentity{}, errors.New("redirect URL invalid") |
|
} |
|
|
|
ci.Metadata.RedirectURIs[i] = *u |
|
} |
|
|
|
return ci, nil |
|
} |
|
|
|
func MapClientIdentityToSchemaClient(c oidc.ClientIdentity) Client { |
|
cl := Client{ |
|
Id: c.Credentials.ID, |
|
RedirectURIs: make([]string, len(c.Metadata.RedirectURIs)), |
|
} |
|
for i, u := range c.Metadata.RedirectURIs { |
|
cl.RedirectURIs[i] = u.String() |
|
} |
|
return cl |
|
} |
|
|
|
func MapClientIdentityToSchemaClientWithSecret(c oidc.ClientIdentity) ClientWithSecret { |
|
cl := ClientWithSecret{ |
|
Id: c.Credentials.ID, |
|
Secret: c.Credentials.Secret, |
|
RedirectURIs: make([]string, len(c.Metadata.RedirectURIs)), |
|
} |
|
for i, u := range c.Metadata.RedirectURIs { |
|
cl.RedirectURIs[i] = u.String() |
|
} |
|
return cl |
|
}
|
|
|