isle/go/cmd/entrypoint/network.go

105 lines
2.3 KiB
Go
Raw Normal View History

package main
import (
"errors"
"fmt"
"isle/daemon"
"isle/jsonutil"
)
var subCmdNetworkCreate = subCmd{
name: "create",
descr: "Create's a new network, with this host being the first host in that network.",
2024-09-04 20:35:29 +00:00
do: func(ctx subCmdCtx) error {
var (
2024-09-04 20:35:29 +00:00
flags = ctx.flagSet(false)
2024-07-22 08:42:25 +00:00
ipNet ipNetFlag
hostName hostNameFlag
)
2024-07-22 08:42:25 +00:00
name := flags.StringP(
"name", "N", "",
"Human-readable name to identify the network as.",
)
2024-07-22 08:42:25 +00:00
domain := flags.StringP(
"domain", "d", "",
"Domain name that should be used as the root domain in the network.",
)
ipNetF := flags.VarPF(
2024-07-22 08:42:25 +00:00
&ipNet, "ip-net", "i",
`An IP subnet, in CIDR form, which will be the overall range of`+
` possible IPs in the network. The first IP in this network`+
` range will become this first host's IP.`,
)
hostNameF := flags.VarPF(
2024-07-22 08:42:25 +00:00
&hostName,
"hostname", "n",
"Name of this host, which will be the first host in the network",
)
2024-09-04 20:35:29 +00:00
if err := flags.Parse(ctx.args); err != nil {
return fmt.Errorf("parsing flags: %w", err)
}
2024-07-22 08:42:25 +00:00
if *name == "" ||
*domain == "" ||
!ipNetF.Changed ||
!hostNameF.Changed {
return errors.New("--name, --domain, --ip-net, and --hostname are required")
}
err := ctx.daemonRPC.CreateNetwork(
2024-09-04 20:35:29 +00:00
ctx, *name, *domain, ipNet.V, hostName.V,
2024-09-04 19:24:45 +00:00
)
if err != nil {
return fmt.Errorf("creating network: %w", err)
}
return nil
},
}
var subCmdNetworkJoin = subCmd{
name: "join",
descr: "Joins this host to an existing network",
2024-09-04 20:35:29 +00:00
do: func(ctx subCmdCtx) error {
var (
2024-09-04 20:35:29 +00:00
flags = ctx.flagSet(false)
2024-09-04 19:24:45 +00:00
bootstrapPath = flags.StringP(
"bootstrap-path", "b", "", "Path to a bootstrap.json file.",
)
)
2024-09-04 20:35:29 +00:00
if err := flags.Parse(ctx.args); err != nil {
return fmt.Errorf("parsing flags: %w", err)
}
if *bootstrapPath == "" {
return errors.New("--bootstrap-path is required")
}
var newBootstrap daemon.JoiningBootstrap
if err := jsonutil.LoadFile(&newBootstrap, *bootstrapPath); err != nil {
return fmt.Errorf(
"loading bootstrap from %q: %w", *bootstrapPath, err,
)
}
return ctx.daemonRPC.JoinNetwork(ctx, newBootstrap)
},
}
var subCmdNetwork = subCmd{
name: "network",
descr: "Sub-commands related to network membership",
2024-09-04 20:35:29 +00:00
do: func(ctx subCmdCtx) error {
return ctx.doSubCmd(
subCmdNetworkCreate,
subCmdNetworkJoin,
)
},
}