2016-10-19 12:22:02 -04:00
|
|
|
package secret
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
|
|
|
"github.com/docker/docker/cli/command"
|
|
|
|
"github.com/spf13/cobra"
|
2016-11-09 19:59:01 -05:00
|
|
|
"golang.org/x/net/context"
|
2016-10-19 12:22:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type removeOptions struct {
|
|
|
|
ids []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newSecretRemoveCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
|
|
return &cobra.Command{
|
|
|
|
Use: "rm [id]",
|
|
|
|
Short: "Remove a secret",
|
|
|
|
Args: cli.RequiresMinArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts := removeOptions{
|
|
|
|
ids: args,
|
|
|
|
}
|
|
|
|
return runSecretRemove(dockerCli, opts)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func runSecretRemove(dockerCli *command.DockerCli, opts removeOptions) error {
|
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2016-11-01 23:32:21 -04:00
|
|
|
// attempt to lookup secret by name
|
2016-11-12 01:14:34 -05:00
|
|
|
secrets, err := getSecretsByName(ctx, client, opts.ids)
|
2016-11-01 23:32:21 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ids := opts.ids
|
|
|
|
|
|
|
|
names := make(map[string]int)
|
|
|
|
for _, id := range ids {
|
|
|
|
names[id] = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(secrets) > 0 {
|
|
|
|
ids = []string{}
|
|
|
|
|
|
|
|
for _, s := range secrets {
|
|
|
|
if _, ok := names[s.Spec.Annotations.Name]; ok {
|
|
|
|
ids = append(ids, s.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, id := range ids {
|
2016-10-19 12:22:02 -04:00
|
|
|
if err := client.SecretRemove(ctx, id); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintln(dockerCli.Out(), id)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|