Class: Fhcap::Tasks::Chef::Cookbook::ListArtifacts

Inherits:
Fhcap::Tasks::Chef::ChefTaskBase show all
Defined in:
lib/fhcap/tasks/chef/cookbook/list_artifacts.rb

Instance Attribute Summary

Attributes inherited from TaskBase

#config, #options, #thor, #verbose

Instance Method Summary collapse

Methods inherited from Fhcap::Tasks::Chef::ChefTaskBase

#knife_config_dir, #knife_config_file_for, #run_chef_client_cmd, #run_knife_cmd, #run_knife_ssh_cmd

Methods inherited from TaskBase

#ask_config, #color_pad, #exit_with_error, #set_color, #suppress_stdout, #table_header, #table_row, #with_progress

Methods included from KnifeHelper

#chef_server_config_for, #chef_server_config_hash_for, #chef_server_names, #knife_config, #knife_config_dir, #knife_config_file_for

Methods included from ProvidersHelper

#provider_availability_zones, #provider_config, #provider_credentials, #provider_for, #provider_names, #provider_names_for, #provider_regions, #provider_type, #providers_config

Methods included from ReposHelper

#find_cluster, #find_cluster_pwds, #find_cluster_pwds_with_repo, #find_cluster_with_repo, #find_data_bag, #find_data_bag_item, #find_environment, #find_repo_item, #find_role, #get_cookbook_deps, #get_cookbook_meta, #get_cookbook_versions, #get_cookbooks, #get_entry_dependencies, #get_modified_cookbooks, #is_dirty?, #modified?, #repo_cfg, #repo_clusters_dir, #repo_cookbook_paths, #repo_dir, #repo_names, #repo_paths, #repos_config, #repos_dir, #run_inside_repo_dir

Methods included from FhcapHelper

#cluster_template_names

Constructor Details

#initialize(options) ⇒ ListArtifacts

Returns a new instance of ListArtifacts.



9
10
11
12
# File 'lib/fhcap/tasks/chef/cookbook/list_artifacts.rb', line 9

def initialize(options)
  super(options)
  @format = options[:format] || 'table'
end

Instance Method Details

#runObject



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
# File 'lib/fhcap/tasks/chef/cookbook/list_artifacts.rb', line 14

def run
  if print_table?
    thor.say "Chef::Cookbook::Component::List", :yellow 
  end
  cookbooks = get_cookbooks(options, nil, repo_cookbook_paths('site-cookbooks'))

  results = print_table? ? [table_header("Component", "Version", "Build")] : []

  cookbooks.each do |name|
    cookbook = cookbook_loader.cookbooks_by_name[name]
    artifact_attribute_filepath = cookbook.attribute_filenames.find { |e| /artifact.rb/ =~ e }
    if artifact_attribute_filepath
      node = ::Chef::Node.new
      node.from_file(artifact_attribute_filepath)
      artifact_version = node.default[name]['version']
      artifact_build = node.default[name]['build']
      if print_table?
        results << table_row(name, artifact_version, artifact_build)
      else
        results << {component: name, version: artifact_version, build: artifact_build}
      end
    end
  end
  thor.print_table results if print_table?
  thor.say JSON.pretty_generate(results) if print_json?
end