1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
11
|
|
12
|
module HammerCLICsv
|
13
|
class CsvCommand
|
14
|
class RolesCommand < BaseCommand
|
15
|
command_name 'roles'
|
16
|
desc 'import or export roles'
|
17
|
|
18
|
RESOURCE = 'Resource'
|
19
|
SEARCH = 'Search'
|
20
|
PERMISSIONS = 'Permissions'
|
21
|
ORGANIZATIONS = 'Organizations'
|
22
|
LOCATIONS = 'Locations'
|
23
|
|
24
|
def export
|
25
|
CSV.open(option_csv_file || '/dev/stdout', 'wb', {:force_quotes => false}) do |csv|
|
26
|
csv << [NAME, COUNT, RESOURCE, SEARCH, PERMISSIONS, ORGANIZATIONS, LOCATIONS]
|
27
|
@api.resource(:roles).call(:index, {'per_page' => 999999})['results'].each do |role|
|
28
|
@api.resource(:filters).call(:index, {
|
29
|
'per_page' => 999999,
|
30
|
'search' => "role=\"#{role['name']}\""
|
31
|
})['results'].each do |filter|
|
32
|
filter = @api.resource(:filters).call(:show, 'id' => filter['id'])
|
33
|
|
34
|
permissions = export_column(filter, 'permissions', 'name')
|
35
|
organizations = export_column(filter, 'organizations', 'name')
|
36
|
locations = export_column(filter, 'locations', 'name')
|
37
|
csv << [role['name'], 1, filter['resource_type'], filter['search'] || '', permissions, organizations, locations]
|
38
|
end
|
39
|
end
|
40
|
end
|
41
|
|
42
|
HammerCLI::EX_OK
|
43
|
end
|
44
|
|
45
|
def import
|
46
|
@existing_roles = {}
|
47
|
@api.resource(:roles).call(:index, {'per_page' => 999999})['results'].each do |role|
|
48
|
@existing_roles[role['name']] = role['id']
|
49
|
end
|
50
|
|
51
|
@existing_filters = {}
|
52
|
@api.resource(:filters).call(:index, {'per_page' => 999999})['results'].each do |role|
|
53
|
@existing_filters[role['name']] = role['id']
|
54
|
end
|
55
|
|
56
|
thread_import do |line|
|
57
|
create_roles_from_csv(line)
|
58
|
end
|
59
|
end
|
60
|
|
61
|
def create_roles_from_csv(line)
|
62
|
|
63
|
permissions = collect_column(line[PERMISSIONS]) do |permission|
|
64
|
foreman_permission(:name => permission)
|
65
|
end
|
66
|
organizations = collect_column(line[ORGANIZATIONS]) do |organization|
|
67
|
foreman_organization(:name => organization)
|
68
|
end
|
69
|
locations = collect_column(line[LOCATIONS]) do |location|
|
70
|
foreman_location(:name => location)
|
71
|
end
|
72
|
|
73
|
line[COUNT].to_i.times do |number|
|
74
|
name = namify(line[NAME], number)
|
75
|
search = line[SEARCH] ? namify(line[SEARCH], number) : nil
|
76
|
|
77
|
if !@existing_roles[name]
|
78
|
print "Creating role '#{name}'..." if option_verbose?
|
79
|
role = @api.resource(:roles).call(:create, {
|
80
|
'name' => name
|
81
|
})
|
82
|
@existing_roles[name] = role['id']
|
83
|
else
|
84
|
print "Updating role '#{name}'..." if option_verbose?
|
85
|
@api.resource(:roles).call(:update, {
|
86
|
'id' => @existing_roles[name]
|
87
|
})
|
88
|
end
|
89
|
|
90
|
filter_id = foreman_filter(name, line[RESOURCE], search)
|
91
|
if !filter_id
|
92
|
print " creating filter #{line[RESOURCE]}..." if option_verbose?
|
93
|
@api.resource(:filters)
|
94
|
.call(:create, { 'filter' => {
|
95
|
'role_id' => @existing_roles[name],
|
96
|
'search' => search,
|
97
|
'unlimited' => search.empty?,
|
98
|
'organization_ids' => organizations,
|
99
|
'location_ids' => locations,
|
100
|
'permission_ids' => permissions
|
101
|
}})
|
102
|
else
|
103
|
print " updating filter #{line[RESOURCE]}..."
|
104
|
@api.resource(:filters)
|
105
|
.call(:update, {
|
106
|
'id' => filter_id,
|
107
|
'search' => search,
|
108
|
'unlimited' => search.empty?,
|
109
|
'organization_ids' => organizations,
|
110
|
'location_ids' => locations,
|
111
|
'permission_ids' => permissions
|
112
|
})
|
113
|
end
|
114
|
|
115
|
puts 'done' if option_verbose?
|
116
|
end
|
117
|
end
|
118
|
end
|
119
|
end
|
120
|
end
|