92 lines
3.5 KiB
Go
92 lines
3.5 KiB
Go
package tunnel
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/podman/v2/pkg/bindings/network"
|
|
"github.com/containers/podman/v2/pkg/domain/entities"
|
|
"github.com/containers/podman/v2/pkg/errorhandling"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (ic *ContainerEngine) NetworkList(ctx context.Context, opts entities.NetworkListOptions) ([]*entities.NetworkListReport, error) {
|
|
options := new(network.ListOptions).WithFilters(opts.Filters)
|
|
return network.List(ic.ClientCtx, options)
|
|
}
|
|
|
|
func (ic *ContainerEngine) NetworkInspect(ctx context.Context, namesOrIds []string, opts entities.InspectOptions) ([]entities.NetworkInspectReport, []error, error) {
|
|
var (
|
|
reports = make([]entities.NetworkInspectReport, 0, len(namesOrIds))
|
|
errs = []error{}
|
|
)
|
|
options := new(network.InspectOptions)
|
|
for _, name := range namesOrIds {
|
|
report, err := network.Inspect(ic.ClientCtx, name, options)
|
|
if err != nil {
|
|
errModel, ok := err.(errorhandling.ErrorModel)
|
|
if !ok {
|
|
return nil, nil, err
|
|
}
|
|
if errModel.ResponseCode == 404 {
|
|
errs = append(errs, errors.Errorf("no such network %q", name))
|
|
continue
|
|
}
|
|
return nil, nil, err
|
|
}
|
|
reports = append(reports, report...)
|
|
}
|
|
return reports, errs, nil
|
|
}
|
|
|
|
func (ic *ContainerEngine) NetworkReload(ctx context.Context, names []string, opts entities.NetworkReloadOptions) ([]*entities.NetworkReloadReport, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
func (ic *ContainerEngine) NetworkRm(ctx context.Context, namesOrIds []string, opts entities.NetworkRmOptions) ([]*entities.NetworkRmReport, error) {
|
|
reports := make([]*entities.NetworkRmReport, 0, len(namesOrIds))
|
|
options := new(network.RemoveOptions).WithForce(opts.Force)
|
|
for _, name := range namesOrIds {
|
|
response, err := network.Remove(ic.ClientCtx, name, options)
|
|
if err != nil {
|
|
report := &entities.NetworkRmReport{
|
|
Name: name,
|
|
Err: err,
|
|
}
|
|
reports = append(reports, report)
|
|
} else {
|
|
reports = append(reports, response...)
|
|
}
|
|
}
|
|
return reports, nil
|
|
}
|
|
|
|
func (ic *ContainerEngine) NetworkCreate(ctx context.Context, name string, opts entities.NetworkCreateOptions) (*entities.NetworkCreateReport, error) {
|
|
options := new(network.CreateOptions).WithName(name).WithDisableDNS(opts.DisableDNS).WithDriver(opts.Driver).WithGateway(opts.Gateway)
|
|
options.WithInternal(opts.Internal).WithIPRange(opts.Range).WithIPv6(opts.IPv6).WithLabels(opts.Labels).WithIPv6(opts.IPv6)
|
|
options.WithMacVLAN(opts.MacVLAN).WithOptions(opts.Options).WithSubnet(opts.Subnet)
|
|
return network.Create(ic.ClientCtx, options)
|
|
}
|
|
|
|
// NetworkDisconnect removes a container from a given network
|
|
func (ic *ContainerEngine) NetworkDisconnect(ctx context.Context, networkname string, opts entities.NetworkDisconnectOptions) error {
|
|
options := new(network.DisconnectOptions).WithForce(opts.Force)
|
|
return network.Disconnect(ic.ClientCtx, networkname, opts.Container, options)
|
|
}
|
|
|
|
// NetworkConnect removes a container from a given network
|
|
func (ic *ContainerEngine) NetworkConnect(ctx context.Context, networkname string, opts entities.NetworkConnectOptions) error {
|
|
options := new(network.ConnectOptions).WithAliases(opts.Aliases)
|
|
return network.Connect(ic.ClientCtx, networkname, opts.Container, options)
|
|
}
|
|
|
|
// NetworkExists checks if the given network exists
|
|
func (ic *ContainerEngine) NetworkExists(ctx context.Context, networkname string) (*entities.BoolReport, error) {
|
|
exists, err := network.Exists(ic.ClientCtx, networkname, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &entities.BoolReport{
|
|
Value: exists,
|
|
}, nil
|
|
}
|