This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/cmd/dexctl/command_client.go
Eric Chiang 5e44b6bc27 *: update all to accommodate changes to go-oidc
Update dex to comply with the changes to fieldnames and types of
the client and provider metadata structs in coreos/go-oidc.
2016-01-12 17:16:28 -08:00

55 lines
1.2 KiB
Go

package main
import (
"net/url"
"github.com/coreos/go-oidc/oidc"
"github.com/spf13/cobra"
)
var (
cmdNewClient = &cobra.Command{
Use: "new-client",
Short: "Create a new client with one or more redirect URLs.",
Long: "Create a new client with one or more redirect URLs,",
Example: ` dexctl new-client --db-url=${DB_URL} 'https://example.com/callback'`,
Run: wrapRun(runNewClient),
}
)
func init() {
rootCmd.AddCommand(cmdNewClient)
}
func runNewClient(cmd *cobra.Command, args []string) int {
if len(args) < 1 {
stderr("Provide at least one redirect URL.")
return 2
}
redirectURLs := make([]url.URL, len(args))
for i, ua := range args {
u, err := url.Parse(ua)
if err != nil {
stderr("Malformed URL %q: %v", ua, err)
return 1
}
redirectURLs[i] = *u
}
cc, err := getDriver().NewClient(oidc.ClientMetadata{RedirectURIs: redirectURLs})
if err != nil {
stderr("Failed creating new client: %v", err)
return 1
}
stdout("# Added new client:")
stdout("DEX_APP_CLIENT_ID=%s", cc.ID)
stdout("DEX_APP_CLIENT_SECRET=%s", cc.Secret)
for i, u := range redirectURLs {
stdout("DEX_APP_REDIRECTURL_%d=%s", i, u.String())
}
return 0
}