2023-02-28 15:50:35 +01:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2023-03-10 11:28:37 +01:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/api/apierr"
|
|
|
|
clientFlag "forge.cadoles.com/Cadoles/emissary/internal/command/api/flag"
|
2023-02-28 15:50:35 +01:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/format"
|
2023-06-25 19:45:43 +02:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/pkg/client"
|
2023-02-28 15:50:35 +01:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func CountCommand() *cli.Command {
|
|
|
|
return &cli.Command{
|
|
|
|
Name: "count",
|
|
|
|
Usage: "Count agents",
|
|
|
|
Flags: clientFlag.ComposeFlags(),
|
|
|
|
Action: func(ctx *cli.Context) error {
|
|
|
|
baseFlags := clientFlag.GetBaseFlags(ctx)
|
2023-03-08 19:42:40 +01:00
|
|
|
|
|
|
|
token, err := clientFlag.GetToken(baseFlags)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(apierr.Wrap(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
client := client.New(baseFlags.ServerURL, client.WithToken(token))
|
2023-02-28 15:50:35 +01:00
|
|
|
|
|
|
|
_, total, err := client.QueryAgents(ctx.Context)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(apierr.Wrap(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
hints := format.Hints{
|
|
|
|
OutputMode: baseFlags.OutputMode,
|
|
|
|
}
|
|
|
|
|
|
|
|
results := []struct {
|
|
|
|
Total int `json:"total"`
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Total: total,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := format.Write(baseFlags.Format, os.Stdout, hints, clientFlag.AsAnySlice(results)...); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|