Class: Aptible::CLI::Helpers::Vhost::OptionSetBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/aptible/cli/helpers/vhost/option_set_builder.rb

Constant Summary collapse

FLAGS =
%i(
  environment
  app
  database
  create
  tls
  ports
  port
).freeze

Instance Method Summary collapse

Constructor Details

#initialize(&block) ⇒ OptionSetBuilder

Returns a new instance of OptionSetBuilder.



16
17
18
19
# File 'lib/aptible/cli/helpers/vhost/option_set_builder.rb', line 16

def initialize(&block)
  FLAGS.each { |f| instance_variable_set("@#{f}", false) }
  instance_exec(&block) if block
end

Instance Method Details

#declare_options(thor) ⇒ Object



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
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/aptible/cli/helpers/vhost/option_set_builder.rb', line 21

def declare_options(thor)
  thor.instance_exec(self) do |builder|
    option :environment

    if builder.app?
      app_options

      if builder.create?
        option(
          :default_domain,
          type: :boolean,
          desc: 'Enable Default Domain on this Endpoint'
        )

        option(
          :internal,
          type: :boolean,
          desc: 'Restrict this Endpoint to internal traffic'
        )
      end

      if builder.ports?
        option(
          :ports,
          type: :array,
          desc: 'A list of ports to expose on this Endpoint'
        )
      end

      if builder.port?
        option(
          :port,
          type: :numeric,
          desc: 'A port to expose on this Endpoint'
        )
      end
    end

    option(
      :ip_whitelist,
      type: :array,
      desc: 'A list of IPv4 sources (addresses or CIDRs) to ' \
            'which to restrict traffic to this Endpoint'
    )

    unless builder.create?
      # Yes, it has to be a dash...
      # See: https://github.com/erikhuda/thor/pull/551
      option(
        :'no-ip_whitelist',
        type: :boolean,
        desc: 'Disable IP Whitelist'
      )
    end

    if builder.tls?
      option(
        :certificate_file,
        type: :string,
        desc: 'A file containing a certificate to use on this ' \
              'Endpoint'
      )
      option(
        :private_key_file,
        type: :string,
        desc: 'A file containing a private key to use on this ' \
              'Endpoint'
      )

      option(
        :managed_tls,
        type: :boolean,
        desc: 'Enable Managed TLS on this Endpoint'
      )

      option(
        :managed_tls_domain,
        desc: 'A domain to use for Managed TLS'
      )

      option(
        :certificate_fingerprint,
        type: :string,
        desc: 'The fingerprint of an existing Certificate to use ' \
              'on this Endpoint'
      )
    end
  end
end

#prepare(account, options) ⇒ Object



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/aptible/cli/helpers/vhost/option_set_builder.rb', line 111

def prepare(, options)
  options = options.dup # We're going to delete keys here
  verify_option_conflicts(options)

  params = {}

  params[:ip_whitelist] = options.delete(:ip_whitelist) do
    create? ? [] : nil
  end

  if options.delete(:'no-ip_whitelist') { false }
    params[:ip_whitelist] = []
  end

  params[:container_port] = options.delete(:port) if port?

  if ports?
    raw_ports = options.delete(:ports) do
      create? ? [] : nil
    end

    if raw_ports
      params[:container_ports] = raw_ports.map do |p|
        begin
          Integer(p)
        rescue ArgumentError
          m = "Invalid port: #{p}"
          raise Thor::Error, m
        end
      end
    end
  end

  if app?
    params[:internal] = options.delete(:internal) do
      create? ? false : nil
    end

    params[:default] = options.delete(:default_domain) do
      create? ? false : nil
    end

    options.delete(:app)
  else
    params[:internal] = false
  end

  process_tls(, options, params) if tls?

  options.delete(:environment)

  # NOTE: This is here to ensure that specs don't test for options
  # that are not declared. This is not expected to happen when using
  # this.
  raise "Unexpected options: #{options}" if options.any?

  params.delete_if { |_, v| v.nil? }
end