All checks were successful
continuous-integration/drone/push Build is passing
WE DID IT! The first actual command to be ported. Code is still a mess in terms of UX but its a milestone!
111 lines
2.8 KiB
Go
111 lines
2.8 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"coopcloud.tech/abra/client"
|
|
"coopcloud.tech/abra/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var serverListCommand = &cli.Command{
|
|
Name: "list",
|
|
Aliases: []string{"ls"},
|
|
Usage: "List locally-defined servers.",
|
|
ArgsUsage: emptyArgsUsage,
|
|
HideHelp: true,
|
|
Action: func(c *cli.Context) error {
|
|
dockerContextStore := client.NewDefaultDockerContextStore()
|
|
contexts, err := dockerContextStore.Store.List()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
tableColumns := []string{"Name", "Connection"}
|
|
table := createTable(tableColumns)
|
|
defer table.Render()
|
|
|
|
serverNames := config.ReadServerNames()
|
|
for _, serverName := range serverNames {
|
|
var row []string
|
|
for _, ctx := range contexts {
|
|
if ctx.Name == serverName {
|
|
row = []string{serverName, client.GetContextEndpoint(ctx)}
|
|
}
|
|
}
|
|
if len(row) == 0 {
|
|
row = []string{serverName, "UNKNOWN"}
|
|
}
|
|
table.Append(row)
|
|
|
|
}
|
|
return nil
|
|
|
|
},
|
|
}
|
|
|
|
var serverAddCommand = &cli.Command{
|
|
Name: "add",
|
|
Usage: "Add a server, reachable on <host>.",
|
|
ArgsUsage: "<host> [<user>] [<port>]",
|
|
Description: "[<user>], [<port>] SSH connection details",
|
|
}
|
|
|
|
var serverNewCommand = &cli.Command{
|
|
Name: "new",
|
|
Usage: "Creates a VPS from a provider in your terminal!",
|
|
Description: "Use a provider plugin to create an actual new server resource (VPS or otherwise) which can then be used to house a new Co-op Cloud installation.",
|
|
ArgsUsage: "<provider>",
|
|
HideHelp: true,
|
|
}
|
|
|
|
var serverRemoveCommand = &cli.Command{
|
|
Name: "remove",
|
|
Aliases: []string{"rm"},
|
|
Usage: "Remove server <host>",
|
|
HideHelp: true,
|
|
}
|
|
|
|
var serverInitCommand = &cli.Command{
|
|
Name: "init",
|
|
Usage: "Set up a server for Docker swarm",
|
|
HideHelp: true,
|
|
ArgsUsage: "<host>",
|
|
Description: `This initialisation explicitly chooses the "single host swarm" mode
|
|
which uses the default IPv4 address as the advertising address. This
|
|
can be re-configured later for more advanced use cases.
|
|
|
|
POWERED BY
|
|
docker swarm init
|
|
docker network create ...`,
|
|
}
|
|
|
|
var serverAppsCommand = &cli.Command{
|
|
Name: "apps",
|
|
Usage: `Alias for "abra app ls --server <host>"`,
|
|
HideHelp: true,
|
|
ArgsUsage: " ", // Removes "[arguments]" from help. Empty str's are ignored
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "status",
|
|
Value: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
// Reminder: The list commands are in is the order they appear in the help menu
|
|
var ServerCommand = &cli.Command{
|
|
Name: "server",
|
|
ArgsUsage: "<host>",
|
|
Usage: "Interact with the servers hosting your Coop-Cloud apps",
|
|
HideHelp: true,
|
|
Subcommands: []*cli.Command{
|
|
serverNewCommand,
|
|
serverInitCommand,
|
|
serverAddCommand,
|
|
serverListCommand,
|
|
serverRemoveCommand,
|
|
serverAppsCommand,
|
|
},
|
|
Action: func(c *cli.Context) error { fmt.Println("server"); return nil },
|
|
}
|