123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package swarm
- import (
- "fmt"
- "net"
- "strconv"
- "strings"
- "github.com/docker/engine-api/types/swarm"
- )
- const (
- defaultListenAddr = "0.0.0.0"
- defaultListenPort uint16 = 2377
- // WORKER constant for worker name
- WORKER = "WORKER"
- // MANAGER constant for manager name
- MANAGER = "MANAGER"
- flagAutoAccept = "auto-accept"
- flagCertExpiry = "cert-expiry"
- flagDispatcherHeartbeat = "dispatcher-heartbeat"
- flagListenAddr = "listen-addr"
- flagSecret = "secret"
- flagTaskHistoryLimit = "task-history-limit"
- )
- var (
- defaultPolicies = []swarm.Policy{
- {Role: WORKER, Autoaccept: true},
- {Role: MANAGER, Autoaccept: false},
- }
- )
- // NodeAddrOption is a pflag.Value for listen and remote addresses
- type NodeAddrOption struct {
- addr string
- port uint16
- }
- // String prints the representation of this flag
- func (a *NodeAddrOption) String() string {
- return a.Value()
- }
- // Set the value for this flag
- func (a *NodeAddrOption) Set(value string) error {
- if !strings.Contains(value, ":") {
- a.addr = value
- return nil
- }
- host, port, err := net.SplitHostPort(value)
- if err != nil {
- return fmt.Errorf("Invalid url, %v", err)
- }
- portInt, err := strconv.ParseUint(port, 10, 16)
- if err != nil {
- return fmt.Errorf("invalid url, %v", err)
- }
- a.port = uint16(portInt)
- if host != "" {
- a.addr = host
- }
- return nil
- }
- // Type returns the type of this flag
- func (a *NodeAddrOption) Type() string {
- return "node-addr"
- }
- // Value returns the value of this option as addr:port
- func (a *NodeAddrOption) Value() string {
- return net.JoinHostPort(a.addr, strconv.Itoa(int(a.port)))
- }
- // NewNodeAddrOption returns a new node address option
- func NewNodeAddrOption(host string, port uint16) NodeAddrOption {
- return NodeAddrOption{addr: host, port: port}
- }
- // NewListenAddrOption returns a NodeAddrOption with default values
- func NewListenAddrOption() NodeAddrOption {
- return NewNodeAddrOption(defaultListenAddr, defaultListenPort)
- }
- // AutoAcceptOption is a value type for auto-accept policy
- type AutoAcceptOption struct {
- values map[string]bool
- }
- // String prints a string representation of this option
- func (o *AutoAcceptOption) String() string {
- keys := []string{}
- for key := range o.values {
- keys = append(keys, key)
- }
- return strings.Join(keys, " ")
- }
- // Set sets a new value on this option
- func (o *AutoAcceptOption) Set(value string) error {
- value = strings.ToUpper(value)
- switch value {
- case "", "NONE":
- if accept, ok := o.values[WORKER]; ok && accept {
- return fmt.Errorf("value NONE is incompatible with %s", WORKER)
- }
- if accept, ok := o.values[MANAGER]; ok && accept {
- return fmt.Errorf("value NONE is incompatible with %s", MANAGER)
- }
- o.values[WORKER] = false
- o.values[MANAGER] = false
- case WORKER, MANAGER:
- if accept, ok := o.values[value]; ok && !accept {
- return fmt.Errorf("value NONE is incompatible with %s", value)
- }
- o.values[value] = true
- default:
- return fmt.Errorf("must be one of %s, %s, NONE", WORKER, MANAGER)
- }
- return nil
- }
- // Type returns the type of this option
- func (o *AutoAcceptOption) Type() string {
- return "auto-accept"
- }
- // Policies returns a representation of this option for the api
- func (o *AutoAcceptOption) Policies(secret *string) []swarm.Policy {
- policies := []swarm.Policy{}
- for _, p := range defaultPolicies {
- if len(o.values) != 0 {
- p.Autoaccept = o.values[string(p.Role)]
- }
- p.Secret = secret
- policies = append(policies, p)
- }
- return policies
- }
- // NewAutoAcceptOption returns a new auto-accept option
- func NewAutoAcceptOption() AutoAcceptOption {
- return AutoAcceptOption{values: make(map[string]bool)}
- }
|