mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-01 21:40:30 +00:00
Rough wiring for basics of connecting to onboarding flow
This commit is contained in:
parent
3d3598a1a9
commit
4dc2410134
@ -2,6 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"html"
|
"html"
|
||||||
@ -24,6 +25,15 @@ import (
|
|||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type config struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
DNS string `json:"dns"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
}
|
||||||
|
type onboardingPayload struct {
|
||||||
|
Fingerprint string `json:"fingerprint"`
|
||||||
|
}
|
||||||
|
|
||||||
// commit and buildTime are filled in during build by the Makefile
|
// commit and buildTime are filled in during build by the Makefile
|
||||||
var (
|
var (
|
||||||
BuildTime = "N/A"
|
BuildTime = "N/A"
|
||||||
@ -179,6 +189,67 @@ intermediate private key.`,
|
|||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "start",
|
||||||
|
Usage: "Starts step-ca with the (optional) specified configuration",
|
||||||
|
// TODO this should accept an optional config parameter that defaults to ~/.step/config/ca.json
|
||||||
|
// as well as an optional token parameter for connecting to the onboarding flow
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
fmt.Printf("Connecting to onboarding guide...\n\n")
|
||||||
|
|
||||||
|
token := c.Args().Get(0)
|
||||||
|
|
||||||
|
res, err := http.Get("http://localhost:3002/onboarding/" + token)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
body, err := ioutil.ReadAll(res.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
configuration := config{}
|
||||||
|
err = json.Unmarshal(body, &configuration)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Connected! Initializing step-ca with the following configuration...\n\n")
|
||||||
|
fmt.Printf("Name: %s\n", configuration.Name)
|
||||||
|
fmt.Printf("DNS: %s\n", configuration.DNS)
|
||||||
|
fmt.Printf("Address: %s\n", configuration.Address)
|
||||||
|
// TODO generate this password
|
||||||
|
fmt.Printf("Provisioner Password: abcdef1234567890\n\n")
|
||||||
|
|
||||||
|
// TODO actually initialize the CA config and start listening
|
||||||
|
// TODO get the root cert fingerprint to post back to the onboarding guide
|
||||||
|
payload, err := json.Marshal(onboardingPayload{Fingerprint: "foobarbatbaz"})
|
||||||
|
req, err := http.NewRequest("POST", "http://localhost:3002/onboarding/" + token, bytes.NewBuffer(payload))
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
client := &http.Client{}
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
body, err = ioutil.ReadAll(resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
resp.Body.Close()
|
||||||
|
|
||||||
|
fmt.Printf("Initialized!\n")
|
||||||
|
fmt.Printf("Step CA has been started. Please return to the onboarding guide in your browser to continue.\n")
|
||||||
|
for {
|
||||||
|
time.Sleep(1 * time.Second);
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Name: "help",
|
Name: "help",
|
||||||
Aliases: []string{"h"},
|
Aliases: []string{"h"},
|
||||||
|
Loading…
Reference in New Issue
Block a user