Module: Capistrano::ChefSolo

Defined in:
lib/capistrano-chef-solo.rb,
lib/capistrano-chef-solo/version.rb

Constant Summary collapse

VERSION =
"0.1.3"

Class Method Summary collapse

Class Method Details

.extended(configuration) ⇒ Object



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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
# File 'lib/capistrano-chef-solo.rb', line 10

def self.extended(configuration)
  configuration.load {
    namespace(:"chef-solo") {
      desc("Setup chef-solo. (an alias of chef_solo:setup)")
      task(:setup, :except => { :no_release => true }) {
        find_and_execute_task("chef_solo:setup")
      }

      desc("Run chef-solo. (an alias of chef_solo)")
      task(:default, :except => { :no_release => true }) {
        find_and_execute_task("chef_solo:default")
      }

      desc("Show chef-solo version. (an alias of chef_solo:version)")
      task(:version, :except => { :no_release => true }) {
        find_and_execute_task("chef_solo:version")
      }

      desc("Show chef-solo attributes. (an alias of chef_solo:attributes)")
      task(:attributes, :except => { :no_release => true }) {
        find_and_execute_task("chef_solo:attributes")
      }
    }

    namespace(:chef_solo) {
      _cset(:chef_solo_version, "11.4.0")
      _cset(:chef_solo_path) { capture("echo $HOME/chef").strip }
      _cset(:chef_solo_cache_path) { File.join(chef_solo_path, "cache") }
      _cset(:chef_solo_config_path) { File.join(chef_solo_path, "config") }
      _cset(:chef_solo_cookbooks_path) { File.join(chef_solo_path, "cookbooks") }
      _cset(:chef_solo_config_file) { File.join(chef_solo_config_path, "solo.rb") }
      _cset(:chef_solo_attributes_file) { File.join(chef_solo_config_path, "solo.json") }

      _cset(:chef_solo_bootstrap_user) {
        if variables.key?(:chef_solo_user)
          logger.info(":chef_solo_user has been deprecated. use :chef_solo_bootstrap_user instead.")
          fetch(:chef_solo_user, user)
        else
          user
        end
      }
      _cset(:chef_solo_bootstrap_password) { password }
      _cset(:chef_solo_bootstrap_ssh_options) {
        if variables.key?(:chef_solo_ssh_options)
          logger.info(":chef_solo_ssh_options has been deprecated. use :chef_solo_bootstrap_ssh_options instead.")
          fetch(:chef_solo_ssh_options, ssh_options)
        else
          ssh_options
        end
      }
      _cset(:chef_solo_use_password) {
        auth_methods = ssh_options.fetch(:auth_methods, []).map { |m| m.to_sym }
        auth_methods.include?(:password) or auth_methods.empty?
      }

      _cset(:_chef_solo_bootstrapped, false)
      def _activate_settings(servers=[])
        if _chef_solo_bootstrapped
          false
        else
          # preserve original :user and :ssh_options
          set(:_chef_solo_bootstrap_user, fetch(:user))
          set(:_chef_solo_bootstrap_password, fetch(:password)) if chef_solo_use_password
          set(:_chef_solo_bootstrap_ssh_options, fetch(:ssh_options))
          # we have to establish connections before teardown.
          # https://github.com/capistrano/capistrano/pull/416
          establish_connections_to(servers)
          logger.info("entering chef-solo bootstrap mode. reconnect to servers as `#{chef_solo_bootstrap_user}'.")
          # drop connection which is connected as standard :user.
          teardown_connections_to(servers)
          set(:user, chef_solo_bootstrap_user)
          set(:password, chef_solo_bootstrap_password) if chef_solo_use_password
          set(:ssh_options, chef_solo_bootstrap_ssh_options)
          set(:_chef_solo_bootstrapped, true)
          true
        end
      end

      def _deactivate_settings(servers=[])
        if _chef_solo_bootstrapped
          set(:user, _chef_solo_bootstrap_user)
          set(:password, _chef_solo_bootstrap_password) if chef_solo_use_password
          set(:ssh_options, _chef_solo_bootstrap_ssh_options)
          set(:_chef_solo_bootstrapped, false)
          # we have to establish connections before teardown.
          # https://github.com/capistrano/capistrano/pull/416
          establish_connections_to(servers)
          logger.info("leaving chef-solo bootstrap mode. reconnect to servers as `#{user}'.")
          # drop connection which is connected as bootstrap :user.
          teardown_connections_to(servers)
          true
        else
          false
        end
      end

      _cset(:chef_solo_bootstrap, false)
      def connect_with_settings(&block)
        if chef_solo_bootstrap
          servers = find_servers
          if block_given?
            begin
              activated = _activate_settings(servers)
              yield
            rescue => error
              logger.info("could not connect with bootstrap settings: #{error}")
              raise
            ensure
              _deactivate_settings(servers) if activated
            end
          else
            _activate_settings(servers)
          end
        else
          yield if block_given?
        end
      end

      # FIXME:
      # Some variables (such like :default_environment set by capistrano-rbenv) may be
      # initialized without bootstrap settings during `on :load`.
      # Is there any way to avoid this without setting `:rbenv_setup_default_environment`
      # as false?
      set(:rbenv_setup_default_environment, false)

      desc("Setup chef-solo.")
      task(:setup, :except => { :no_release => true }) {
        connect_with_settings do
          transaction do
            install
          end
        end
      }

      desc("Run chef-solo.")
      task(:default, :except => { :no_release => true }) {
        connect_with_settings do
          setup
          transaction do
            update
            invoke
          end
        end
      }

      # Acts like `default`, but will apply specified recipes only.
      def run_list(*recipes)
        connect_with_settings do
          setup
          transaction do
            update(:run_list => recipes)
            invoke
          end
        end
      end

      _cset(:chef_solo_cmd, "chef-solo")

      desc("Show chef-solo version.")
      task(:version, :except => { :no_release => true }) {
        connect_with_settings do
          run("cd #{chef_solo_path.dump} && #{bundle_cmd} exec #{chef_solo_cmd} --version")
        end
      }

      desc("Show chef-solo attributes.")
      task(:attributes, :except => { :no_release => true }) {
        hosts = ENV.fetch("HOST", "").split(/\s*,\s*/)
        roles = ENV.fetch("ROLE", "").split(/\s*,\s*/).map { |role| role.to_sym }
        roles += hosts.map { |host| role_names_for_host(ServerDefinition.new(host)) }
        attributes = _generate_attributes(:hosts => hosts, :roles => roles)
        STDOUT.puts(_json_attributes(attributes))
      }

      task(:install, :except => { :no_release => true }) {
        install_ruby
        install_chef
      }

      task(:install_ruby, :except => { :no_release => true }) {
        set(:rbenv_install_bundler, true)
        find_and_execute_task("rbenv:setup")
      }

      _cset(:chef_solo_gemfile) {
        (<<-EOS).gsub(/^\s*/, "")
          source "https://rubygems.org"
          gem "chef", #{chef_solo_version.to_s.dump}
        EOS
      }
      task(:install_chef, :except => { :no_release => true }) {
        begin
          version = capture("cd #{chef_solo_path.dump} && #{bundle_cmd} exec #{chef_solo_cmd} --version")
          installed = Regexp.new(Regexp.escape(chef_solo_version)) =~ version
        rescue
          installed = false
        end
        unless installed
          dirs = [ chef_solo_path, chef_solo_cache_path, chef_solo_config_path, chef_solo_cookbooks_path ].uniq
          run("mkdir -p #{dirs.map { |x| x.dump }.join(" ")}")
          top.put(chef_solo_gemfile, File.join(chef_solo_path, "Gemfile"))
          args = fetch(:chef_solo_bundle_options, [])
          args << "--path=#{File.join(chef_solo_path, "bundle").dump}"
          args << "--quiet"
          run("cd #{chef_solo_path.dump} && #{bundle_cmd} install #{args.join(" ")}")
        end
      }
 
      def update(options={})
        update_cookbooks(options)
        update_attributes(options)
        update_config(options)
      end

      def update_cookbooks(options={})
        _normalize_cookbooks(chef_solo_cookbooks).each do |name, variables|
          begin
            tmpdir = capture("mktemp -d /tmp/cookbooks.XXXXXXXXXX", options).strip
            run("rm -rf #{tmpdir.dump} && mkdir -p #{tmpdir.dump}", options)
            deploy_cookbooks(name, tmpdir, variables, options)
            install_cookbooks(name, tmpdir, chef_solo_cookbooks_path, options)
          ensure
            run("rm -rf #{tmpdir.dump}", options)
          end
        end
      end

      #
      # The definition of cookbooks.
      # By default, load cookbooks from local path of "config/cookbooks".
      #
      _cset(:chef_solo_cookbooks_exclude, %w(.hg .git .svn))
      _cset(:chef_solo_cookbooks_default_variables) {{
        :scm => :none,
        :deploy_via => :copy_subdir,
        :deploy_subdir => nil,
        :repository => ".",
        :cookbooks_exclude => chef_solo_cookbooks_exclude,
        :copy_cache => nil,
      }}
      _cset(:chef_solo_cookbooks) {
        variables = chef_solo_cookbooks_default_variables.dup
        variables[:scm] = fetch(:chef_solo_cookbooks_scm) if exists?(:chef_solo_cookbooks_scm)
        variables[:deploy_subdir] = fetch(:chef_solo_cookbooks_subdir, "config/cookbooks")
        variables[:repository] = fetch(:chef_solo_cookbooks_repository) if exists?("chef_solo_cookbooks_repository")
        variables[:revision] = fetch(:chef_solo_cookbooks_revision) if exists?(:chef_solo_cookbooks_revision)
        if exists?(:chef_solo_cookbook_name)
          # deploy as single cookbook
          name = fetch(:chef_solo_cookbook_name)
          { name => variables.merge(:cookbook_name => name) }
        else
          # deploy as multiple cookbooks
          name = fetch(:chef_solo_cookbooks_name, application)
          { name => variables }
        end
      }

      _cset(:chef_solo_repository_cache) { File.expand_path("tmp/cookbooks-cache") }
      def _normalize_cookbooks(cookbooks)
        xs = cookbooks.map { |name, variables|
          variables = chef_solo_cookbooks_default_variables.merge(variables)
          variables[:application] ||= name
          # use :cookbooks as :deploy_subdir for backward compatibility with prior than 0.1.2
          variables[:deploy_subdir] ||= variables[:cookbooks]
          if variables[:scm] != :none
            variables[:copy_cache] ||= File.expand_path(name, chef_solo_repository_cache)
          end
          [name, variables]
        }
        Hash[xs]
      end

      def deploy_cookbooks(name, destination, variables={}, options={})
        logger.debug("retrieving cookbooks `#{name}' from #{variables[:repository]} via #{variables[:deploy_via]}.")
        begin
          releases_path = capture("mktemp -d /tmp/releases.XXXXXXXXXX", options).strip
          release_path = File.join(releases_path, release_name)
          run("rm -rf #{releases_path.dump} && mkdir -p #{releases_path.dump}", options)
          c = _middle_copy(top) # create new configuration with separated @variables
          c.instance_eval do
            set(:deploy_to, File.dirname(releases_path))
            set(:releases_path, releases_path)
            set(:release_path, release_path)
            set(:revision) { source.head }
            set(:source) { ::Capistrano::Deploy::SCM.new(scm, self) }
            set(:real_revision) { source.local.query_revision(revision) { |cmd| with_env("LC_ALL", "C") { run_locally(cmd) } } }
            set(:strategy) { ::Capistrano::Deploy::Strategy.new(deploy_via, self) }
            variables.each do |key, val|
              set(key, val)
            end
            strategy.deploy!
          end
          if variables.key?(:cookbook_name)
            # deploy as single cookbook
            final_destination = File.join(destination, variables[:cookbook_name])
          else
            # deploy as multiple cookbooks
            final_destination = destination
          end
          run("rsync -lrpt #{(release_path + "/").dump} #{final_destination.dump}", options)
        ensure
          run("rm -rf #{releases_path.dump}", options)
        end
      end

      def _middle_copy(object)
        o = object.clone
        object.instance_variables.each do |k|
          v = object.instance_variable_get(k)
          o.instance_variable_set(k, v ? v.clone : v)
        end
        o
      end

      def install_cookbooks(name, source, destination, options={})
        logger.debug("installing cookbooks `#{name}' to #{destination}.")
        run("mkdir -p #{source.dump} #{destination.dump}", options)
        run("rsync -lrpt #{(source + "/").dump} #{destination.dump}", options)
      end

      _cset(:chef_solo_config) {
        (<<-EOS).gsub(/^\s*/, "")
          file_cache_path #{chef_solo_cache_path.dump}
          cookbook_path #{chef_solo_cookbooks_path.dump}
        EOS
      }
      def update_config(options={})
        top.put(chef_solo_config, chef_solo_config_file, options)
      end

      # merge nested hashes
      def _merge_attributes!(a, b)
        f = lambda { |key, val1, val2|
          case val1
          when Array
            val1 + val2
          when Hash
            val1.merge(val2, &f)
          else
            val2
          end
        }
        a.merge!(b, &f)
      end

      def _json_attributes(x)
        JSON.send(fetch(:chef_solo_pretty_json, true) ? :pretty_generate : :generate, x)
      end

      _cset(:chef_solo_capistrano_attributes) {
        #
        # The rule of generating chef attributes from Capistrano variables
        #
        # 1. Reject variables if it is in exclude list.
        # 2. Reject variables if it is lazy and not in include list.
        #    (lazy variables might have any side-effects)
        #
        attributes = variables.reject { |key, value|
          excluded = chef_solo_capistrano_attributes_exclude.include?(key)
          included = chef_solo_capistrano_attributes_include.include?(key)
          excluded or (not included and value.respond_to?(:call))
        }
        Hash[attributes.map { |key, value| [key, fetch(key, nil)] }]
      }
      _cset(:chef_solo_capistrano_attributes_include, [
        :application, :deploy_to, :rails_env, :latest_release,
        :releases_path, :shared_path, :current_path, :release_path,
      ])
      _cset(:chef_solo_capistrano_attributes_exclude, [:logger, :password])
      _cset(:chef_solo_attributes, {})
      _cset(:chef_solo_host_attributes, {})
      _cset(:chef_solo_role_attributes, {})
      _cset(:chef_solo_run_list, [])
      _cset(:chef_solo_host_run_list, {})
      _cset(:chef_solo_role_run_list, {})

      def _generate_attributes(options={})
        hosts = [ options.delete(:hosts) ].flatten.compact.uniq
        roles = [ options.delete(:roles) ].flatten.compact.uniq
        run_list = [ options.delete(:run_list) ].flatten.compact.uniq
        #
        # By default, the Chef attributes will be generated by following order.
        # 
        # 1. Use _non-lazy_ variables of Capistrano.
        # 2. Use attributes defined in `:chef_solo_attributes`.
        # 3. Use attributes defined in `:chef_solo_role_attributes` for target role.
        # 4. Use attributes defined in `:chef_solo_host_attributes` for target host.
        #
        attributes = chef_solo_capistrano_attributes.dup
        _merge_attributes!(attributes, chef_solo_attributes)
        roles.each do |role|
          _merge_attributes!(attributes, chef_solo_role_attributes.fetch(role, {}))
        end
        hosts.each do |host|
          _merge_attributes!(attributes, chef_solo_host_attributes.fetch(host, {}))
        end
        #
        # The Chef `run_list` will be generated by following rules.
        #
        # * If `:run_list` was given as argument, just use it.
        # * Otherwise, generate it from `:chef_solo_role_run_list`, `:chef_solo_role_run_list`
        #   and `:chef_solo_host_run_list`.
        #
        if run_list.empty?
          _merge_attributes!(attributes, {"run_list" => chef_solo_run_list})
          roles.each do |role|
            _merge_attributes!(attributes, {"run_list" => chef_solo_role_run_list.fetch(role, [])})
          end
          hosts.each do |host|
            _merge_attributes!(attributes, {"run_list" => chef_solo_host_run_list.fetch(host, [])})
          end
        else
          attributes["run_list"] = [] # ignore run_list not from argument
          _merge_attributes!(attributes, {"run_list" => run_list})
        end
        attributes
      end

      def update_attributes(options={})
        run_list = options.delete(:run_list)
        servers = find_servers_for_task(current_task)
        servers.each do |server|
          logger.debug("updating chef-solo attributes for #{server.host}.")
          attributes = _generate_attributes(:hosts => server.host, :roles => role_names_for_host(server), :run_list => run_list)
          top.put(_json_attributes(attributes), chef_solo_attributes_file, options.merge(:hosts => server.host))
        end
      end

      def invoke(options={})
        logger.debug("invoking chef-solo.")
        args = fetch(:chef_solo_options, [])
        args << "-c #{chef_solo_config_file.dump}"
        args << "-j #{chef_solo_attributes_file.dump}"
        run("cd #{chef_solo_path.dump} && #{sudo} #{bundle_cmd} exec #{chef_solo_cmd} #{args.join(" ")}", options)
      end
    }
  }
end