fleet/server/service/validation_setup.go
Victor Vrantchan ac14215e21 create first time setup endpoint (#436)
The endpoint is only active if there are no users in the datastore.
While the endpoint is active, it also disables all the other API endpoints, and /config returns `{"require_setup":true}`
for #378
2016-11-09 12:19:07 -05:00

38 lines
936 B
Go

package service
import (
"fmt"
"net/url"
"github.com/kolide/kolide-ose/server/kolide"
"golang.org/x/net/context"
)
func (mw validationMiddleware) NewAppConfig(ctx context.Context, payload kolide.AppConfigPayload) (*kolide.AppConfig, error) {
invalid := &invalidArgumentError{}
var serverURLString string
if payload.ServerSettings == nil {
invalid.Append("kolide_server_url", "missing required argument")
} else {
serverURLString = *payload.ServerSettings.KolideServerURL
}
if err := validateKolideServerURL(serverURLString); err != nil {
invalid.Append("kolide_server_url", err.Error())
}
if invalid.HasErrors() {
return nil, invalid
}
return mw.Service.NewAppConfig(ctx, payload)
}
func validateKolideServerURL(urlString string) error {
serverURL, err := url.Parse(urlString)
if err != nil {
return err
}
if serverURL.Scheme != "https" {
return fmt.Errorf("url scheme must be https")
}
return nil
}