2016-09-08 13:11:39 -04:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-09-08 13:11:39 -04:00
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
2022-03-30 09:27:25 -04:00
|
|
|
"github.com/docker/cli/cli/command/completion"
|
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type disconnectOptions struct {
|
|
|
|
network string
|
|
|
|
container string
|
|
|
|
force bool
|
|
|
|
}
|
|
|
|
|
2017-06-21 05:25:25 -04:00
|
|
|
func newDisconnectCommand(dockerCli command.Cli) *cobra.Command {
|
2016-09-08 13:11:39 -04:00
|
|
|
opts := disconnectOptions{}
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "disconnect [OPTIONS] NETWORK CONTAINER",
|
|
|
|
Short: "Disconnect a container from a network",
|
|
|
|
Args: cli.ExactArgs(2),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.network = args[0]
|
|
|
|
opts.container = args[1]
|
|
|
|
return runDisconnect(dockerCli, opts)
|
|
|
|
},
|
2022-03-30 09:27:25 -04:00
|
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
|
|
if len(args) == 0 {
|
|
|
|
return completion.NetworkNames(dockerCli)(cmd, args, toComplete)
|
|
|
|
}
|
|
|
|
network := args[0]
|
|
|
|
return completion.ContainerNames(dockerCli, true, isConnected(network))(cmd, args, toComplete)
|
|
|
|
},
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
|
|
|
flags.BoolVarP(&opts.force, "force", "f", false, "Force the container to disconnect from a network")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2017-06-21 05:25:25 -04:00
|
|
|
func runDisconnect(dockerCli command.Cli, opts disconnectOptions) error {
|
2016-09-08 13:11:39 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
|
|
|
|
return client.NetworkDisconnect(context.Background(), opts.network, opts.container, opts.force)
|
|
|
|
}
|
2022-03-30 09:27:25 -04:00
|
|
|
|
|
|
|
func isConnected(network string) func(types.Container) bool {
|
|
|
|
return func(container types.Container) bool {
|
|
|
|
if container.NetworkSettings == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
_, ok := container.NetworkSettings.Networks[network]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func not(fn func(types.Container) bool) func(types.Container) bool {
|
|
|
|
return func(container types.Container) bool {
|
|
|
|
ok := fn(container)
|
|
|
|
return !ok
|
|
|
|
}
|
|
|
|
}
|