Class: HammerCLICsv::CsvCommand::ExportCommand

Inherits:
HammerCLI::Apipie::Command
  • Object
show all
Defined in:
lib/hammer_cli_csv/export.rb

Constant Summary collapse

RESOURCES =
%w(
  organizations locations puppet_environments operating_systems
  domains architectures partition_tables lifecycle_environments host_collections
  provisioning_templates
  subscriptions activation_keys hosts content_hosts reports roles users
)

Instance Method Summary collapse

Instance Method Details

#check_server_status(server, username, password) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/hammer_cli_csv/export.rb', line 101

def check_server_status(server, username, password)
  url = "#{server}/api/status"
  uri = URI(url)
  nethttp = Net::HTTP.new(uri.host, uri.port)
  nethttp.use_ssl = uri.scheme == 'https'
  nethttp.verify_mode = OpenSSL::SSL::VERIFY_NONE
  server_status = nethttp.start do |http|
    request = Net::HTTP::Get.new uri.request_uri
    request.basic_auth(username, password)
    response = http.request(request)
    JSON.parse(response.body)
  end

  server_status
end

#executeObject



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
# File 'lib/hammer_cli_csv/export.rb', line 34

def execute
  @server = HammerCLI::Settings.settings[:_params][:host] ||
    HammerCLI::Settings.get(:csv, :host) ||
    HammerCLI::Settings.get(:katello, :host) ||
    HammerCLI::Settings.get(:foreman, :host)
  @username = HammerCLI::Settings.settings[:_params][:username] ||
    HammerCLI::Settings.get(:csv, :username) ||
    HammerCLI::Settings.get(:katello, :username) ||
    HammerCLI::Settings.get(:foreman, :username)
  @password = HammerCLI::Settings.settings[:_params][:password] ||
    HammerCLI::Settings.get(:csv, :password) ||
    HammerCLI::Settings.get(:katello, :password) ||
    HammerCLI::Settings.get(:foreman, :password)

  @server_status = check_server_status(@server, @username, @password)

  if @server_status['release'] == 'Headpin'
    @headpin = HeadpinApi.new({
                                :server => @server,
                                :username => @username,
                                :password => @password
                              })
    skipped_resources = %w( locations puppet_environments operating_systems
                            domains architectures partition_tables lifecycle_environments
                            provisioning_templates
                            hosts reports )
    skipped_resources += %w( subscriptions content_hosts roles users )  # TODO: not implemented yet
  else
    @api = ApipieBindings::API.new({
                                     :uri => @server,
                                     :username => @username,
                                     :password => @password,
                                     :api_version => 2
                                   })
    skipped_resources = []
  end

  # Swing the hammers
  (RESOURCES - skipped_resources).each do |resource|
    hammer_resource(resource)
  end

  HammerCLI::EX_OK
end

#hammer(context = nil) ⇒ Object



79
80
81
82
83
84
85
86
87
# File 'lib/hammer_cli_csv/export.rb', line 79

def hammer(context = nil)
  context ||= {
    :interactive => false,
    :username => @username,
    :password => @password
  }

  HammerCLI::MainCommand.new('', context)
end

#hammer_resource(resource) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
# File 'lib/hammer_cli_csv/export.rb', line 89

def hammer_resource(resource)
  return if !self.send("option_#{resource}") && !option_dir
  options_file = self.send("option_#{resource}") || "#{option_dir}/#{resource.sub('_', '-')}.csv"
  args = []
  args += %W( --server #{@server} ) if @server
  args += %W( csv #{resource.sub('_', '-')} --csv-export --csv-file #{options_file} )
  args << '-v' if option_verbose?
  args += %W( --threads #{option_threads} )
  puts "Exporting '#{args.join(' ')}'" if option_verbose?
  hammer.run(args)
end