Class: Chef::Knife::UserCreate

Inherits:
Chef::Knife show all
Defined in:
lib/chef/knife/user_create.rb

Constant Summary

Constants inherited from Chef::Knife

CHEF_ORGANIZATION_MANAGEMENT, OFFICIAL_PLUGINS, OPSCODE_HOSTED_CHEF_ACCESS_CONTROL

Instance Attribute Summary collapse

Attributes inherited from Chef::Knife

#name_args, #ui

Instance Method Summary collapse

Methods inherited from Chef::Knife

#api_key, #apply_computed_config, category, chef_config_dir, #cli_keys, common_name, #config_file_settings, config_loader, #config_source, #configure_chef, #create_object, #delete_object, dependency_loaders, deps, #format_rest_error, guess_category, #humanize_exception, #humanize_http_exception, inherited, #initialize, list_commands, load_commands, load_config, load_deps, #maybe_setup_fips, #merge_configs, msg, #noauth_rest, #parse_options, reset_config_loader!, reset_subcommands!, #rest, run, #run_with_pretty_exceptions, #server_url, #show_usage, snake_case_name, subcommand_category, subcommand_class_from, subcommand_files, subcommand_loader, subcommands, subcommands_by_category, #test_mandatory_field, ui, unnamed?, use_separate_defaults?, #username

Methods included from Mixin::ConvertToClassName

#constantize, #convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #normalize_snake_case_name, #snake_case_basename

Constructor Details

This class inherits a constructor from Chef::Knife

Instance Attribute Details

#user_fieldObject

Returns the value of attribute user_field.



27
28
29
# File 'lib/chef/knife/user_create.rb', line 27

def user_field
  @user_field
end

Instance Method Details

#create_user_from_hash(hash) ⇒ Object



54
55
56
# File 'lib/chef/knife/user_create.rb', line 54

def create_user_from_hash(hash)
  Chef::UserV1.from_hash(hash).create
end

#runObject



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
# File 'lib/chef/knife/user_create.rb', line 58

def run
  test_mandatory_field(@name_args[0], "username")
  user.username @name_args[0]

  test_mandatory_field(@name_args[1], "display name")
  user.display_name @name_args[1]

  test_mandatory_field(@name_args[2], "first name")
  user.first_name @name_args[2]

  test_mandatory_field(@name_args[3], "last name")
  user.last_name @name_args[3]

  test_mandatory_field(@name_args[4], "email")
  user.email @name_args[4]

  test_mandatory_field(@name_args[5], "password")
  user.password @name_args[5]

  if config[:user_key] && config[:prevent_keygen]
    show_usage
    ui.fatal("You cannot pass --user-key and --prevent-keygen")
    exit 1
  end

  if !config[:prevent_keygen] && !config[:user_key]
    user.create_key(true)
  end

  if config[:user_key]
    user.public_key File.read(File.expand_path(config[:user_key]))
  end

  output = edit_hash(user)
  final_user = create_user_from_hash(output)

  ui.info("Created #{user}")
  if final_user.private_key
    if config[:file]
      File.open(config[:file], "w") do |f|
        f.print(final_user.private_key)
      end
    else
      ui.msg final_user.private_key
    end
  end
end

#userObject



50
51
52
# File 'lib/chef/knife/user_create.rb', line 50

def user
  @user_field ||= Chef::UserV1.new
end