Class: HammerCLICsv::CsvCommand::SmartProxiesCommand

Inherits:
BaseCommand
  • Object
show all
Defined in:
lib/hammer_cli_csv/smart_proxies.rb

Constant Summary collapse

ORGANIZATIONS =
'Organizations'
LOCATIONS =
'Locations'
URL =
'URL'
LIFECYCLE_ENVIRONMENTS =
'Lifecycle Environments'

Constants inherited from BaseCommand

BaseCommand::COUNT, BaseCommand::NAME

Instance Method Summary collapse

Methods inherited from BaseCommand

#associate_locations, #associate_organizations, #build_os_name, #check_server_status, #collect_column, #execute, #export_column, #foreman_architecture, #foreman_domain, #foreman_environment, #foreman_filter, #foreman_location, #foreman_operatingsystem, #foreman_organization, #foreman_partitiontable, #foreman_permission, #foreman_role, #foreman_template_kind, #hammer, #hammer_context, #katello_contentview, #katello_contentviewversion, #katello_hostcollection, #katello_repository, #katello_subscription, #labelize, #lifecycle_environment, #namify, #pluralize, #split_os_name, #thread_import

Instance Method Details

#create_smart_proxies_from_csv(line) ⇒ Object



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

def create_smart_proxies_from_csv(line)
  line[COUNT].to_i.times do |number|
    name = namify(line[NAME], number)
    if !@existing.include? line[URL]
      print "Creating smart proxy '#{name}'..." if option_verbose?
      id = @api.resource(:smart_proxies).call(:create, {
          'smart_proxy' => {
              'name' => name,
              'url' => line[URL]
          }
      })['id']
    else
      print "Updating smart proxy '#{name}'..." if option_verbose?
      id = @api.resource(:smart_proxies).call(:update, {
          'id' => @existing[name],
          'smart_proxy' => {
              'name' => name,
              'url' => line[URL]
          }
      })['smart_proxy']['id']
    end

    # Update associated resources
    associate_organizations(id, line[ORGANIZATIONS], 'smart_proxy')
    associate_locations(id, line[LOCATIONS], 'smart_proxy')

    print "done\n" if option_verbose?
  end
rescue RuntimeError => e
  raise "#{e}\n       #{line}"
end

#exportObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/hammer_cli_csv/smart_proxies.rb', line 27

def export
  CSV.open(option_csv_file || '/dev/stdout', 'wb', {:force_quotes => true}) do |csv|
    csv << [NAME, COUNT, ORGANIZATIONS, LOCATIONS, URL, LIFECYCLE_ENVIRONMENTS]
    @api.resource(:smart_proxies).call(:index, {:per_page => 999999})['results'].each do |smart_proxy|
      smart_proxy = @api.resource(:smart_proxies).call(:show, {'id' => smart_proxy['id']})
      name = smart_proxy['name']
      count = 1
      organizations = export_column(smart_proxy, 'organizations', 'name')
      locations = export_column(smart_proxy, 'locations', 'name')
      url = smart_proxy['url']
      csv << [name, count, organizations, locations, url]
    end
  end
end

#importObject



42
43
44
45
46
47
48
49
50
51
# File 'lib/hammer_cli_csv/smart_proxies.rb', line 42

def import
  @existing = {}
  @api.resource(:smart_proxies).call(:index, {:per_page => 999999})['results'].each do |smart_proxy|
    @existing[smart_proxy['url']] = smart_proxy['id'] if smart_proxy
  end

  thread_import do |line|
    create_smart_proxies_from_csv(line)
  end
end