2023-03-22 17:45:56 +00:00
|
|
|
// Copyright 2023 Mikhail Klementev. All rights reserved.
|
|
|
|
// Use of this source code is governed by a AGPLv3 license
|
|
|
|
// (or later) that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
2023-04-06 19:05:21 +00:00
|
|
|
"strings"
|
2023-03-22 17:45:56 +00:00
|
|
|
|
|
|
|
"github.com/rs/zerolog/log"
|
2023-04-06 19:05:21 +00:00
|
|
|
|
2023-05-13 10:14:45 +00:00
|
|
|
"code.dumpstack.io/tools/out-of-tree/container"
|
2023-03-22 17:45:56 +00:00
|
|
|
)
|
|
|
|
|
2023-04-06 19:05:21 +00:00
|
|
|
type ContainerCmd struct {
|
|
|
|
Filter string `help:"filter by name"`
|
|
|
|
|
|
|
|
List ContainerListCmd `cmd:"" help:"list containers"`
|
|
|
|
Cleanup ContainerCleanupCmd `cmd:"" help:"cleanup containers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cmd ContainerCmd) Containers() (names []string) {
|
2023-05-13 10:14:45 +00:00
|
|
|
images, err := container.Images()
|
2023-04-06 19:05:21 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, img := range images {
|
|
|
|
if cmd.Filter != "" && !strings.Contains(img.Name, cmd.Filter) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
names = append(names, img.Name)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerListCmd struct{}
|
|
|
|
|
|
|
|
func (cmd ContainerListCmd) Run(containerCmd *ContainerCmd) (err error) {
|
|
|
|
for _, name := range containerCmd.Containers() {
|
|
|
|
fmt.Println(name)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerCleanupCmd struct{}
|
|
|
|
|
|
|
|
func (cmd ContainerCleanupCmd) Run(containerCmd *ContainerCmd) (err error) {
|
|
|
|
var output []byte
|
|
|
|
for _, name := range containerCmd.Containers() {
|
2023-05-13 10:14:45 +00:00
|
|
|
output, err = exec.Command(container.Runtime, "image", "rm", name).
|
2023-04-07 18:57:18 +00:00
|
|
|
CombinedOutput()
|
2023-04-06 19:05:21 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Str("output", string(output)).Msg("")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|