Class: ChefCLI::Command::GeneratorCommands::Cookbook

Inherits:
Base
  • Object
show all
Defined in:
lib/chef-cli/command/generator_commands/cookbook.rb

Overview

## CookbookFile chef generate cookbook path/to/basename –generator-cookbook=path/to/generator

Generates a basic cookbook directory structure. Most file types are omitted, the user is expected to add additional files as needed using the relevant generators.

Instance Attribute Summary collapse

Attributes inherited from Base

#params

Instance Method Summary collapse

Methods inherited from Base

#chef_runner, #generator_cookbook_name, #generator_cookbook_path, #have_git?

Methods included from ChefCLI::Configurable

#chef_config, #chefcli_config, #config_loader, #default_chef_server_http_client, #generator_config, #knife_config, #reset_config!

Methods inherited from Base

#check_license_acceptance, #needs_help?, #needs_version?, #run_with_default_options

Methods included from Helpers

#err, #git_bin_dir, #git_windows_bin_dir, #msg, #omnibus_bin_dir, #omnibus_embedded_bin_dir, #omnibus_env, #omnibus_expand_path, #omnibus_install?, #omnibus_root, #package_home, #stderr, #stdout, #system_command, #usr_bin_path, #usr_bin_prefix

Constructor Details

#initialize(params) ⇒ Cookbook

Returns a new instance of Cookbook.



86
87
88
89
90
91
92
93
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 86

def initialize(params)
  @params_valid = true
  @cookbook_name = nil
  @policy_mode = true
  @verbose = false
  @specs = false
  super
end

Instance Attribute Details

#cookbook_name_or_pathObject (readonly)

Returns the value of attribute cookbook_name_or_path.



37
38
39
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 37

def cookbook_name_or_path
  @cookbook_name_or_path
end

#errorsObject (readonly)

Returns the value of attribute errors.



35
36
37
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 35

def errors
  @errors
end

Instance Method Details

#cookbook_full_pathObject



184
185
186
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 184

def cookbook_full_path
  File.expand_path(cookbook_name_or_path, Dir.pwd)
end

#cookbook_nameObject



176
177
178
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 176

def cookbook_name
  File.basename(cookbook_full_path)
end

#cookbook_path_in_git_repo?Boolean

Returns:

  • (Boolean)


250
251
252
253
254
255
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 250

def cookbook_path_in_git_repo?
  Pathname.new(cookbook_full_path).ascend do |dir|
    return true if File.directory?(File.join(dir.to_s, ".git"))
  end
  false
end

#cookbook_rootObject



180
181
182
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 180

def cookbook_root
  File.dirname(cookbook_full_path)
end

#create_vscode_dir?Boolean

Returns:

  • (Boolean)


257
258
259
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 257

def create_vscode_dir?
  ::File.exist?("/Applications/Visual Studio Code.app") || ::File.exist?("#{ENV["APPDATA"]}\\Code")
end

#emit_post_create_messageObject



113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 113

def emit_post_create_message
  if have_delivery_config?
    msg("Your cookbook is ready. To setup the pipeline, type `cd #{cookbook_name_or_path}`, then run `delivery init`")
  else
    msg("Your cookbook is ready. Type `cd #{cookbook_name_or_path}` to enter it.")
    msg("\nThere are several commands you can run to get started locally developing and testing your cookbook.")
    msg("Type `delivery local --help` to see a full list of local testing commands.")
    msg("\nWhy not start by writing an InSpec test? Tests for the default recipe are stored at:\n")
    msg("test/integration/default/default_test.rb")
    msg("\nIf you'd prefer to dive right in, the default recipe can be found at:")
    msg("\nrecipes/default.rb\n")
  end
end

#enable_workflow?Boolean

Returns:

  • (Boolean)


192
193
194
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 192

def enable_workflow?
  config[:workflow]
end

#have_delivery_config?Boolean

Is there a .delivery/cli.toml in the current dir or any of the parent dirs

Returns:

  • (Boolean)


209
210
211
212
213
214
215
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 209

def have_delivery_config?
  # delivery-cli's logic is to look recursively upward for
  # .delivery/cli.toml starting from pwd:
  # https://github.com/chef/delivery-cli/blob/22cbef3987ebd0aee98405b7e161a100edc87e49/src/delivery/config/mod.rs#L225-L247

  Pathname.pwd.ascend.any? { |path| path.join(".delivery/cli.toml").exist? }
end

#kitchenObject



152
153
154
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 152

def kitchen
  config[:kitchen]
end

#params_valid?Boolean

Returns:

  • (Boolean)


246
247
248
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 246

def params_valid?
  @params_valid
end

#pipelineObject



156
157
158
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 156

def pipeline
  config[:pipeline]
end

#policy_mode?Boolean

Returns:

  • (Boolean)


188
189
190
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 188

def policy_mode?
  @policy_mode
end

#policy_nameObject



160
161
162
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 160

def policy_name
  cookbook_name
end

#policy_run_listObject



164
165
166
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 164

def policy_run_list
  "#{cookbook_name}::#{recipe_name}"
end

#read_and_validate_paramsObject



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
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 217

def read_and_validate_params
  arguments = parse_options(params)
  @cookbook_name_or_path = arguments[0]
  if !@cookbook_name_or_path
    @params_valid = false
  elsif File.basename(@cookbook_name_or_path).include?("-")
    msg("Hyphens are discouraged in cookbook names as they may cause problems with custom resources. See https://docs.chef.io/workstation/ctl_chef/#chef-generate-cookbook for more information.")
  end

  if config[:berks] && config[:policy]
    err("Berkshelf and Policyfiles are mutually exclusive. Please specify only one.")
    @params_valid = false
  end

  if config[:berks]
    @policy_mode = false
  end

  if config[:verbose]
    @verbose = true
  end

  if config[:specs]
    @specs = true
  end

  true
end

#recipeObject



168
169
170
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 168

def recipe
  "cookbook"
end

#recipe_nameObject



172
173
174
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 172

def recipe_name
  "default"
end

#runObject



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 95

def run
  read_and_validate_params
  if params_valid?
    setup_context
    msg("Generating cookbook #{cookbook_name}")
    chef_runner.converge
    msg("")
    emit_post_create_message
    0
  else
    err(opt_parser)
    1
  end
rescue ChefCLI::ChefRunnerError => e
  err("ERROR: #{e}")
  1
end

#setup_contextObject



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 127

def setup_context
  super
  Generator.add_attr_to_context(:skip_git_init, cookbook_path_in_git_repo?)
  Generator.add_attr_to_context(:cookbook_root, cookbook_root)
  Generator.add_attr_to_context(:cookbook_name, cookbook_name)
  Generator.add_attr_to_context(:recipe_name, recipe_name)
  Generator.add_attr_to_context(:include_chef_repo_source, false)
  Generator.add_attr_to_context(:policy_name, policy_name)
  Generator.add_attr_to_context(:policy_run_list, policy_run_list)
  Generator.add_attr_to_context(:policy_local_cookbook, ".")

  Generator.add_attr_to_context(:enable_workflow, enable_workflow?)
  Generator.add_attr_to_context(:workflow_project_dir, cookbook_full_path)
  Generator.add_attr_to_context(:build_cookbook_parent_is_cookbook, true)
  Generator.add_attr_to_context(:workflow_project_git_initialized, have_git? && !cookbook_path_in_git_repo?)

  Generator.add_attr_to_context(:verbose, verbose?)
  Generator.add_attr_to_context(:specs, specs?)

  Generator.add_attr_to_context(:use_policyfile, policy_mode?)
  Generator.add_attr_to_context(:pipeline, pipeline)
  Generator.add_attr_to_context(:kitchen, kitchen)
  Generator.add_attr_to_context(:vscode_dir, create_vscode_dir?)
end

#specs?Boolean

Returns:

  • (Boolean)


200
201
202
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 200

def specs?
  @specs
end

#verbose?Boolean

Returns:

  • (Boolean)


196
197
198
# File 'lib/chef-cli/command/generator_commands/cookbook.rb', line 196

def verbose?
  @verbose
end