mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-15 06:43:35 +01:00
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
package dockerapi
|
|
|
|
import (
|
|
"context"
|
|
"sort"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/moby/moby/api/types/container"
|
|
"github.com/moby/moby/client"
|
|
gperr "github.com/yusing/goutils/errs"
|
|
|
|
_ "github.com/yusing/goutils/apitypes"
|
|
)
|
|
|
|
type ContainerState = container.ContainerState // @name ContainerState
|
|
|
|
type Container struct {
|
|
Server string `json:"server"`
|
|
Name string `json:"name"`
|
|
ID string `json:"id"`
|
|
Image string `json:"image"`
|
|
State ContainerState `json:"state,omitempty" extensions:"x-nullable"`
|
|
} // @name ContainerResponse
|
|
|
|
// @x-id "containers"
|
|
// @BasePath /api/v1
|
|
// @Summary Get containers
|
|
// @Description Get containers
|
|
// @Tags docker
|
|
// @Produce json
|
|
// @Success 200 {array} Container
|
|
// @Failure 403 {object} apitypes.ErrorResponse
|
|
// @Failure 500 {object} apitypes.ErrorResponse
|
|
// @Router /docker/containers [get]
|
|
func Containers(c *gin.Context) {
|
|
serveHTTP[Container](c, GetContainers)
|
|
}
|
|
|
|
func GetContainers(ctx context.Context, dockerClients DockerClients) ([]Container, gperr.Error) {
|
|
errs := gperr.NewBuilder("failed to get containers")
|
|
containers := make([]Container, 0)
|
|
for server, dockerClient := range dockerClients {
|
|
conts, err := dockerClient.ContainerList(ctx, client.ContainerListOptions{All: true})
|
|
if err != nil {
|
|
errs.Add(err)
|
|
continue
|
|
}
|
|
for _, cont := range conts.Items {
|
|
containers = append(containers, Container{
|
|
Server: server,
|
|
Name: cont.Names[0],
|
|
ID: cont.ID,
|
|
Image: cont.Image,
|
|
State: cont.State,
|
|
})
|
|
}
|
|
}
|
|
sort.Slice(containers, func(i, j int) bool {
|
|
return containers[i].Name < containers[j].Name
|
|
})
|
|
if err := errs.Error(); err != nil {
|
|
gperr.LogError("failed to get containers", err)
|
|
if len(containers) == 0 {
|
|
return nil, err
|
|
}
|
|
return containers, nil
|
|
}
|
|
return containers, nil
|
|
}
|