This change adds a --format command line option to the GARM cli. This option accepts either json or table as a value. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
// Copyright 2022 Cloudbase Solutions SRL
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
// not use this file except in compliance with the License. You may obtain
|
|
// a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/jedib0t/go-pretty/v6/table"
|
|
"github.com/spf13/cobra"
|
|
|
|
apiClientProviders "github.com/cloudbase/garm/client/providers"
|
|
"github.com/cloudbase/garm/cmd/garm-cli/common"
|
|
"github.com/cloudbase/garm/params"
|
|
)
|
|
|
|
// providerCmd represents the provider command
|
|
var providerCmd = &cobra.Command{
|
|
Use: "provider",
|
|
SilenceUsage: true,
|
|
Short: "Interacts with the providers API resource.",
|
|
Long: `Run operations on the provider resource.
|
|
|
|
Currently this command only lists all available configured
|
|
providers. Providers are added to the configuration file of
|
|
the service and are referenced by name when adding repositories
|
|
and organizations. Runners will be created in these environments.`,
|
|
Run: nil,
|
|
}
|
|
|
|
func init() {
|
|
providerCmd.AddCommand(
|
|
&cobra.Command{
|
|
Use: "list",
|
|
Short: "List all configured providers",
|
|
Long: `List all cloud providers configured with the service.`,
|
|
SilenceUsage: true,
|
|
RunE: func(_ *cobra.Command, _ []string) error {
|
|
if needsInit {
|
|
return errNeedsInitError
|
|
}
|
|
|
|
listProvidersReq := apiClientProviders.NewListProvidersParams()
|
|
response, err := apiCli.Providers.ListProviders(listProvidersReq, authToken)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
formatProviders(response.Payload)
|
|
return nil
|
|
},
|
|
})
|
|
|
|
rootCmd.AddCommand(providerCmd)
|
|
}
|
|
|
|
func formatProviders(providers []params.Provider) {
|
|
if outputFormat == common.OutputFormatJSON {
|
|
printAsJSON(providers)
|
|
return
|
|
}
|
|
t := table.NewWriter()
|
|
header := table.Row{"Name", "Description", "Type"}
|
|
t.AppendHeader(header)
|
|
for _, val := range providers {
|
|
t.AppendRow(table.Row{val.Name, val.Description, val.ProviderType})
|
|
t.AppendSeparator()
|
|
}
|
|
fmt.Println(t.Render())
|
|
}
|