fleet/server/service/client_setup.go
Zachary Wasserman 0f99b454a0
Add username support to fleetctl setup (#1971)
Username continues to default to email if not specified in the options.

Closes #1970
2019-01-02 15:27:37 -08:00

63 lines
1.5 KiB
Go

package service
import (
"encoding/json"
"net/http"
"github.com/kolide/fleet/server/kolide"
"github.com/pkg/errors"
)
// Setup attempts to setup the current Fleet instance. If setup is successful,
// an auth token is returned.
func (c *Client) Setup(email, username, password, org string) (string, error) {
t := true
params := setupRequest{
Admin: &kolide.UserPayload{
Admin: &t,
Username: &username,
Email: &email,
Password: &password,
},
OrgInfo: &kolide.OrgInfo{
OrgName: &org,
},
KolideServerURL: &c.addr,
}
response, err := c.Do("POST", "/api/v1/setup", params)
if err != nil {
return "", errors.Wrap(err, "POST /api/v1/setup")
}
defer response.Body.Close()
// If setup has already been completed, Kolide Fleet will not serve the
// setup route, which will cause the request to 404
if response.StatusCode == http.StatusNotFound {
return "", setupAlreadyErr{}
}
if response.StatusCode != http.StatusOK {
return "", errors.Errorf(
"setup received status %d %s",
response.StatusCode,
extractServerErrorText(response.Body),
)
}
if response.StatusCode != http.StatusOK {
return "", errors.Errorf("setup got HTTP %d, expected 200", response.StatusCode)
}
var responseBody setupResponse
err = json.NewDecoder(response.Body).Decode(&responseBody)
if err != nil {
return "", errors.Wrap(err, "decode setup response")
}
if responseBody.Err != nil {
return "", errors.Errorf("setup: %s", responseBody.Err)
}
return *responseBody.Token, nil
}