2024-02-27 14:14:30 +01:00
|
|
|
package tenant
|
2024-02-26 18:20:40 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2024-02-27 14:14:30 +01:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/client/apierr"
|
|
|
|
clientFlag "forge.cadoles.com/Cadoles/emissary/internal/command/client/flag"
|
2024-02-26 18:20:40 +01:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/pkg/client"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"gitlab.com/wpetit/goweb/cli/format"
|
|
|
|
)
|
|
|
|
|
2024-02-27 14:14:30 +01:00
|
|
|
func CreateCommand() *cli.Command {
|
2024-02-26 18:20:40 +01:00
|
|
|
return &cli.Command{
|
2024-02-27 14:14:30 +01:00
|
|
|
Name: "create",
|
|
|
|
Usage: "Create tenant",
|
2024-02-26 18:20:40 +01:00
|
|
|
Flags: clientFlag.ComposeFlags(
|
|
|
|
&cli.StringFlag{
|
2024-02-27 14:14:30 +01:00
|
|
|
Name: "tenant-label",
|
|
|
|
Usage: "Set `TENANT_LABEL` to targeted tenant",
|
|
|
|
Value: "",
|
2024-02-26 18:20:40 +01:00
|
|
|
},
|
|
|
|
),
|
|
|
|
Action: func(ctx *cli.Context) error {
|
|
|
|
baseFlags := clientFlag.GetBaseFlags(ctx)
|
|
|
|
|
|
|
|
token, err := clientFlag.GetToken(baseFlags)
|
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(apierr.Wrap(err))
|
|
|
|
}
|
|
|
|
|
2024-02-27 14:14:30 +01:00
|
|
|
tenantLabel := ctx.String("tenant-label")
|
2024-02-26 18:20:40 +01:00
|
|
|
|
|
|
|
client := client.New(baseFlags.ServerURL, client.WithToken(token))
|
|
|
|
|
2024-02-27 14:14:30 +01:00
|
|
|
agent, err := client.CreateTenant(ctx.Context, tenantLabel)
|
2024-02-26 18:20:40 +01:00
|
|
|
if err != nil {
|
|
|
|
return errors.WithStack(apierr.Wrap(err))
|
|
|
|
}
|
|
|
|
|
2024-02-27 14:14:30 +01:00
|
|
|
hints := tenantHints(baseFlags.OutputMode)
|
2024-02-26 18:20:40 +01:00
|
|
|
|
|
|
|
if err := format.Write(baseFlags.Format, os.Stdout, hints, agent); err != nil {
|
|
|
|
return errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|