fleet/cmd/fleetctl/setup.go

115 lines
3.0 KiB
Go

package main
import (
"errors"
"fmt"
"os"
"github.com/fleetdm/fleet/v4/server/contexts/ctxerr"
"github.com/fleetdm/fleet/v4/server/service"
"github.com/urfave/cli/v2"
"golang.org/x/crypto/ssh/terminal"
)
func setupCommand() *cli.Command {
var (
flEmail string
flName string
flPassword string
flOrgName string
)
return &cli.Command{
Name: "setup",
Usage: "Set up a Fleet instance",
UsageText: `fleetctl setup [options]`,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "email",
EnvVars: []string{"EMAIL"},
Value: "",
Destination: &flEmail,
Usage: "Email of the admin user to create (required)",
Required: true,
},
&cli.StringFlag{
Name: "name",
EnvVars: []string{"NAME"},
Value: "",
Destination: &flName,
Usage: "Name or nickname of the admin user to create (required)",
Required: true,
},
&cli.StringFlag{
Name: "password",
EnvVars: []string{"PASSWORD"},
Value: "",
Destination: &flPassword,
Usage: "Password for the admin user (recommended to use interactive entry)",
},
&cli.StringFlag{
Name: "org-name",
EnvVars: []string{"ORG_NAME"},
Value: "",
Destination: &flOrgName,
Usage: "Name of the organization (required)",
Required: true,
},
configFlag(),
contextFlag(),
debugFlag(),
},
Action: func(c *cli.Context) error {
fleet, err := unauthenticatedClientFromCLI(c)
if err != nil {
return err
}
if flPassword == "" {
fmt.Print("Password: ")
passBytes, err := terminal.ReadPassword(int(os.Stdin.Fd()))
if err != nil {
return fmt.Errorf("error reading password: %w", err)
}
fmt.Println()
flPassword = string(passBytes)
fmt.Print("Confirm Password: ")
passBytes, err = terminal.ReadPassword(int(os.Stdin.Fd()))
if err != nil {
return fmt.Errorf("error reading password confirmation: %w", err)
}
fmt.Println()
if flPassword != string(passBytes) {
return errors.New("passwords do not match")
}
}
token, err := fleet.Setup(flEmail, flName, flPassword, flOrgName)
if err != nil {
root := ctxerr.Cause(err)
switch root.(type) {
case service.SetupAlreadyErr:
return err
}
return fmt.Errorf("error setting up Fleet: %w", err)
}
configPath, context := c.String("config"), c.String("context")
if err := setConfigValue(configPath, context, "email", flEmail); err != nil {
return fmt.Errorf("error setting email for the current context: %w", err)
}
if err := setConfigValue(configPath, context, "token", token); err != nil {
return fmt.Errorf("error setting token for the current context: %w", err)
}
fmt.Println("Fleet Device Management Inc. periodically collects anonymous information about your instance.\nSending usage statistics from your Fleet instance is optional and can be disabled in settings.")
fmt.Println("[+] Fleet setup successful and context configured!")
return nil
},
}
}