67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
helper "github.com/home-assistant/cli/client"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var addonsLogsCmd = &cobra.Command{
|
|
Use: "logs [slug]",
|
|
Aliases: []string{"log", "lg"},
|
|
Short: "View the log output of a running Home Assistant add-on",
|
|
Long: `
|
|
Allowing you to look at the log output generated by a Home Assistant add-on.
|
|
`,
|
|
Example: `
|
|
ha addons logs core_ssh
|
|
`,
|
|
Args: cobra.ExactArgs(1),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
log.WithField("args", args).Debug("addons logs")
|
|
|
|
section := "addons"
|
|
command := "{slug}/logs"
|
|
base := viper.GetString("endpoint")
|
|
|
|
url, err := helper.URLHelper(base, section, command)
|
|
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
ExitWithError = true
|
|
return
|
|
}
|
|
|
|
request := helper.GetRequest()
|
|
|
|
slug := args[0]
|
|
|
|
request.SetPathParams(map[string]string{
|
|
"slug": slug,
|
|
})
|
|
|
|
resp, err := request.SetHeader("Accept", "text/plain").Get(url)
|
|
|
|
// returns 200 OK or 400, everything else is wrong
|
|
if err == nil && resp.StatusCode() != 200 && resp.StatusCode() != 400 {
|
|
err = errors.New("Unexpected server response")
|
|
log.Error(err)
|
|
}
|
|
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
ExitWithError = true
|
|
} else {
|
|
fmt.Println(string(resp.Body()))
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
addonsCmd.AddCommand(addonsLogsCmd)
|
|
}
|