2015-08-18 05:57:27 +05:30
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/coreos/dex/connector"
|
2015-12-29 05:25:11 +05:30
|
|
|
"github.com/spf13/cobra"
|
2015-08-18 05:57:27 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-12-29 05:25:11 +05:30
|
|
|
cmdGetConnectorConfigs = &cobra.Command{
|
|
|
|
Use: "get-connector-configs",
|
|
|
|
Short: "Enumerate current IdP connector configs.",
|
|
|
|
Long: "Enumerate current IdP connector configs.",
|
|
|
|
Example: ` dexctl get-connector-configs --db-url=${DB_URL}`,
|
|
|
|
Run: wrapRun(runGetConnectorConfigs),
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
2015-12-29 05:25:11 +05:30
|
|
|
cmdSetConnectorConfigs = &cobra.Command{
|
|
|
|
Use: "set-connector-configs",
|
|
|
|
Short: "Overwrite the current IdP connector configs with those from a local file.",
|
|
|
|
Long: "Overwrite the current IdP connector configs with those from a local file.",
|
|
|
|
Example: ` dexctl set-connector-configs --db-url=${DB_URL} ./static/conn_conf.json`,
|
|
|
|
Run: wrapRun(runSetConnectorConfigs),
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2015-12-29 05:25:11 +05:30
|
|
|
rootCmd.AddCommand(cmdGetConnectorConfigs)
|
|
|
|
rootCmd.AddCommand(cmdSetConnectorConfigs)
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
2015-12-29 05:25:11 +05:30
|
|
|
func runSetConnectorConfigs(cmd *cobra.Command, args []string) int {
|
2015-08-18 05:57:27 +05:30
|
|
|
if len(args) != 1 {
|
|
|
|
stderr("Provide a single argument.")
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
rf, err := connector.NewConnectorConfigRepoFromFile(args[0])
|
|
|
|
if err != nil {
|
|
|
|
stderr("Unable to retrieve connector configs from file: %v", err)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
cfgs, err := rf.All()
|
|
|
|
if err != nil {
|
|
|
|
stderr("Unable to retrieve connector configs from file: %v", err)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := getDriver().SetConnectorConfigs(cfgs); err != nil {
|
|
|
|
stderr(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Saved %d connector config(s)\n", len(cfgs))
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-12-29 05:25:11 +05:30
|
|
|
func runGetConnectorConfigs(cmd *cobra.Command, args []string) int {
|
2015-08-18 05:57:27 +05:30
|
|
|
if len(args) != 0 {
|
|
|
|
stderr("Provide zero arguments.")
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
cfgs, err := getDriver().ConnectorConfigs()
|
|
|
|
if err != nil {
|
|
|
|
stderr("Unable to retrieve connector configs: %v", err)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Found %d connector config(s)\n", len(cfgs))
|
|
|
|
|
|
|
|
for _, cfg := range cfgs {
|
|
|
|
fmt.Println()
|
|
|
|
fmt.Printf("ID: %v\n", cfg.ConnectorID())
|
|
|
|
fmt.Printf("Type: %v\n", cfg.ConnectorType())
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|