mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 04:35:40 +00:00
105 lines
1.9 KiB
Go
105 lines
1.9 KiB
Go
package cmd
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type healthzResponse struct {
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type healthCmd struct {
|
|
root *cobra.Command
|
|
cmd *cobra.Command
|
|
|
|
viper *viper.Viper
|
|
}
|
|
|
|
func newHealthCmd(root *cobra.Command) *healthCmd {
|
|
return &healthCmd{
|
|
root: root,
|
|
viper: viper.New(),
|
|
}
|
|
}
|
|
|
|
func (c *healthCmd) Register() {
|
|
c.cmd = &cobra.Command{
|
|
Use: "health",
|
|
Short: "Health check",
|
|
Long: `Use the health check endpoint to verify that Tinyauth is running and it's healthy.`,
|
|
Run: c.run,
|
|
}
|
|
|
|
c.viper.AutomaticEnv()
|
|
|
|
if c.root != nil {
|
|
c.root.AddCommand(c.cmd)
|
|
}
|
|
}
|
|
|
|
func (c *healthCmd) GetCmd() *cobra.Command {
|
|
return c.cmd
|
|
}
|
|
|
|
func (c *healthCmd) run(cmd *cobra.Command, args []string) {
|
|
log.Logger = log.Level(zerolog.InfoLevel)
|
|
|
|
appUrl := "http://127.0.0.1:3000"
|
|
|
|
port := c.viper.GetString("PORT")
|
|
address := c.viper.GetString("ADDRESS")
|
|
|
|
if address != "" && port != "" {
|
|
appUrl = "http://" + address + ":" + port
|
|
}
|
|
|
|
if len(args) > 0 {
|
|
appUrl = args[0]
|
|
}
|
|
|
|
client := http.Client{}
|
|
|
|
req, err := http.NewRequest("GET", appUrl+"/api/healthz", nil)
|
|
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Failed to create request")
|
|
}
|
|
|
|
resp, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Failed to perform request")
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
log.Fatal().Err(errors.New("service is not healthy")).Msgf("Service is not healthy. Status code: %d", resp.StatusCode)
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
var healthResp healthzResponse
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Failed to read response")
|
|
}
|
|
|
|
err = json.Unmarshal(body, &healthResp)
|
|
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Failed to decode response")
|
|
}
|
|
|
|
log.Info().Interface("response", healthResp).Msg("Tinyauth is healthy")
|
|
}
|