/*
Copyright © 2025 cavaliba.com
*/
package cmd

import (
	"os"

	"github.com/spf13/cobra"
	"github.com/spf13/viper"
)

// infoCmd represents the info command
var infoCmd = &cobra.Command{
	Use:   "info",
	Short: "display information about a Cavaliba instance",
	Long:  `Call cavaliba and display general information about the instance`,
	Run: func(cmd *cobra.Command, args []string) {

		target := APITarget{
			url:            viper.GetString("url") + "info/",
			ssl_skipverify: viper.GetBool("ssl_skipverify"),
		}

		PrintVerboseTarget(target)

		result, err := CallAPI(target)
		if err != nil {
			PrintError(result, err)
			os.Exit(0)
		}

		PrintVerboseResult(result)
		PrintOutput(result.body)

	},
}

func init() {
	rootCmd.AddCommand(infoCmd)
}
