func runLocationCmd(api *cait.ArchivesSpaceAPI, cmd *command) (string, error) { if err := api.Login(); err != nil { return "", err } location := new(cait.Location) if cmd.Payload != "" { err := json.Unmarshal([]byte(cmd.Payload), &location) if err != nil { return "", fmt.Errorf("Could not decode %s, error: %s", cmd.Payload, err) } } locationID := cait.URIToID(location.URI) switch cmd.Action { case "create": response, err := api.CreateLocation(location) if err != nil { return "", err } if response.Status != "Created" { return "", fmt.Errorf("Create location status %s, %s", location.URI, response) } src, err := json.Marshal(response) if err != nil { return "", err } return string(src), nil case "list": if locationID == 0 { locations, err := api.ListLocations() if err != nil { return "", fmt.Errorf(`{"error": %q}`, err) } src, err := json.Marshal(locations) if err != nil { return "", fmt.Errorf(`{"error": "Cannot JSON encode %s %s"}`, cmd.Payload, err) } return string(src), nil } location, err := api.GetLocation(locationID) if err != nil { return "", fmt.Errorf(`{"error": %q}`, err) } src, err := json.Marshal(location) if err != nil { return "", fmt.Errorf(`{"error": "Cannot find %s %s"}`, cmd.Payload, err) } return string(src), nil case "update": responseMsg, err := api.UpdateLocation(location) if err != nil { return "", err } src, err := json.Marshal(responseMsg) return string(src), err case "delete": location, err := api.GetLocation(locationID) if err != nil { return "", err } responseMsg, err := api.DeleteLocation(location) if err != nil { return "", err } src, err := json.Marshal(responseMsg) return string(src), err case "export": err := api.ExportLocations() if err != nil { return "", fmt.Errorf("Exporting /locations, %s", err) } return `{"status": "ok"}`, nil } return "", fmt.Errorf("action %s not implemented for %s", cmd.Action, cmd.Subject) }