forked from docker-archive/classicswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetwork.go
96 lines (79 loc) · 2.01 KB
/
network.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package cluster
import (
"strings"
"github.com/docker/docker/pkg/stringid"
"github.com/samalba/dockerclient"
)
// Network is exported
type Network struct {
dockerclient.NetworkResource
Engine *Engine
}
// Networks represents a map of networks
type Networks []*Network
// Uniq returns all uniq networks
func (networks Networks) Uniq() Networks {
tmp := make(map[string]*Network)
for _, network := range networks {
tmp[network.ID] = network
}
uniq := Networks{}
for _, network := range tmp {
uniq = append(uniq, network)
}
return uniq
}
// Filter returns networks filtered by names or ids
func (networks Networks) Filter(names []string, ids []string) Networks {
if len(names) == 0 && len(ids) == 0 {
return networks.Uniq()
}
out := Networks{}
for _, idOrName := range append(names, ids...) {
if network := networks.Get(idOrName); network != nil {
out = append(out, network)
}
}
return out
}
// Get returns a network using it's ID or Name
func (networks Networks) Get(IDOrName string) *Network {
// Abort immediately if the name is empty.
if len(IDOrName) == 0 {
return nil
}
// Match exact or short Network ID.
for _, network := range networks {
if network.ID == IDOrName || stringid.TruncateID(network.ID) == IDOrName {
return network
}
}
candidates := []*Network{}
// Match name, /name or engine/name.
for _, network := range networks {
if network.Name == IDOrName || network.Engine.ID+"/"+network.Name == IDOrName || network.Engine.Name+"/"+network.Name == IDOrName {
candidates = append(candidates, network)
}
}
if size := len(candidates); size == 1 {
return candidates[0]
} else if size > 1 {
return nil
}
// Match name, /name or engine/name.
for _, network := range networks {
if network.Name == "/"+IDOrName {
return network
}
}
// Match Network ID prefix.
for _, network := range networks {
if strings.HasPrefix(network.ID, IDOrName) {
candidates = append(candidates, network)
}
}
if len(candidates) == 1 {
return candidates[0]
}
return nil
}