Class: Morpheus::Cli::TenantsCommand

Inherits:
Object
  • Object
show all
Includes:
AccountsHelper, CliCommand
Defined in:
lib/morpheus/cli/tenants_command.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from AccountsHelper

#accounts_interface, #find_account_by_id, #find_account_by_name, #find_account_by_name_or_id, #find_account_from_options, #find_all_user_ids, #find_role_by_id, #find_role_by_name, #find_role_by_name_or_id, #find_user_by_id, #find_user_by_username, #find_user_by_username_or_id, #find_user_group_by_id, #find_user_group_by_name, #find_user_group_by_name_or_id, #format_role_type, #format_user_role_names, #get_access_string, included, #print_accounts_table, #print_roles_table, #print_users_table, #roles_interface, #user_groups_interface, #users_interface

Methods included from CliCommand

#build_common_options, #build_option_type_options, #command_name, #default_refresh_interval, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_id_list, #parse_list_options, #parse_list_subtitles, #print, #print_error, #puts, #puts_error, #raise_command_error, #render_with_format, #run_command_for_each_arg, #subcommand_aliases, #subcommand_usage, #subcommands, #usage, #verify_access_token!

Constructor Details

#initializeTenantsCommand

Returns a new instance of TenantsCommand.



22
23
24
# File 'lib/morpheus/cli/tenants_command.rb', line 22

def initialize()
  @appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance
end

Instance Method Details

#account_groups(args) ⇒ Object



37
38
39
# File 'lib/morpheus/cli/tenants_command.rb', line 37

def (args)
  Morpheus::Cli::AccountGroupsCommand.new.handle(args)
end

#add(args) ⇒ Object



168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/morpheus/cli/tenants_command.rb', line 168

def add(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[options]")
    build_option_type_options(opts, options, )
    build_common_options(opts, options, [:options, :json, :remote, :dry_run])
  end
  optparse.parse!(args)
  connect(options)
  begin
    if args.count > 1
      raise_command_error "wrong number of arguments. Expected 0-1 and received #{args.count} #{args.join(' ')}\n#{optparse}", args, 127
      #puts_error  "#{Morpheus::Terminal.angry_prompt}wrong number of arguments. Expected 0-1 and received #{args.count} #{args.join(' ')}\n#{optparse}"
      #return 127
    end
    if args[0]
      options[:options]['name'] = args[0]
    end
    params = Morpheus::Cli::OptionTypes.prompt(, options[:options], @api_client, options[:params])
    #puts "parsed params is : #{params.inspect}"
     = ['name', 'description', 'currency']
     = params.select {|k,v| .include?(k) }
    ['currency'] = ['currency'].to_s.empty? ? "USD" : ['currency'].upcase
    if !['instanceLimits']
      ['instanceLimits'] = {}
      ['instanceLimits']['maxStorage'] = params['instanceLimits.maxStorage'].to_i if params['instanceLimits.maxStorage'].to_s.strip != ''
      ['instanceLimits']['maxMemory'] = params['instanceLimits.maxMemory'].to_i if params['instanceLimits.maxMemory'].to_s.strip != ''
      ['instanceLimits']['maxCpu'] = params['instanceLimits.maxCpu'].to_i if params['instanceLimits.maxCpu'].to_s.strip != ''
    end
    if params['role'].to_s != ''
      role = find_role_by_name(nil, params['role'])
      exit 1 if role.nil?
      ['role'] = {id: role['id']}
    end
    payload = {account: }
    if options[:dry_run] && options[:json]
      puts as_json(payload, options)
      return 0
    end
    @accounts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @accounts_interface.dry.create(payload)
      return
    end
    json_response = @accounts_interface.create(payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      print_green_success "Tenant #{['name']} added"
      get([["name"]])
    end

  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#connect(opts) ⇒ Object



26
27
28
29
30
31
# File 'lib/morpheus/cli/tenants_command.rb', line 26

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @users_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).users
  @accounts_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).accounts
  @roles_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).roles
end

#count(args) ⇒ Object



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
105
106
107
108
# File 'lib/morpheus/cli/tenants_command.rb', line 80

def count(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[options]")
    build_common_options(opts, options, [:query, :remote, :dry_run])
    opts.footer = "Get the number of tenants."
  end
  optparse.parse!(args)
  connect(options)
  begin
    params = {}
    params.merge!(parse_list_options(options))
    @accounts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @accounts_interface.dry.list(params)
      return
    end
    json_response = @accounts_interface.list(params)
    # print number only
    if json_response['meta'] && json_response['meta']['total']
      print cyan, json_response['meta']['total'], reset, "\n"
    else
      print yellow, "unknown", reset, "\n"
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#get(args) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/morpheus/cli/tenants_command.rb', line 110

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :outfile, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count != 1
    raise_command_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args.join(', ')}\n#{optparse}"
  end
  connect(options)
  begin
    @accounts_interface.setopts(options)
    if options[:dry_run]
      if args[0].to_s =~ /\A\d{1,}\Z/
        print_dry_run @accounts_interface.dry.get(args[0].to_i)
      else
        print_dry_run @accounts_interface.dry.list({name:args[0]})
      end
      return
    end
     = (args[0])
    exit 1 if .nil?

    json_response = {'account' => }
    render_result = render_with_format(json_response, options, 'account')
    return 0 if render_result

    print_h1 "Tenant Details", [], options
    
    description_cols = {
      "ID" => 'id',
      "Name" => 'name',
      "Description" => 'description',
      "Subdomain" => 'subdomain',
      "Currency" => 'currency',
      "Created" => lambda {|it| format_local_dt(it['dateCreated']) },
      "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) },
      "Status" => lambda {|it| 
        status_state = nil
        if ['active']
          status_state = "#{green}ACTIVE#{cyan}"
        else
          status_state = "#{red}INACTIVE#{cyan}"
        end
        status_state
      },
    }
    print_description_list(description_cols, )

    print reset,"\n"
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#handle(args) ⇒ Object



33
34
35
# File 'lib/morpheus/cli/tenants_command.rb', line 33

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



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
78
# File 'lib/morpheus/cli/tenants_command.rb', line 41

def list(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List tenants (accounts)."
  end
  optparse.parse!(args)
  connect(options)
  begin
    params = {}
    params.merge!(parse_list_options(options))
    @accounts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @accounts_interface.dry.list(params)
      return
    end
    json_response = @accounts_interface.list(params)
    render_result = render_with_format(json_response, options, 'accounts')
    return 0 if render_result
    accounts = json_response['accounts']
    title = "Morpheus Tenants"
    subtitles = []
    subtitles += parse_list_subtitles(options)
    print_h1 title, subtitles
    if accounts.empty?
      puts yellow,"No tenants found.",reset
    else
      print_accounts_table(accounts)
      print_results_pagination(json_response)
    end
    print reset,"\n"
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#remove(args) ⇒ Object



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/morpheus/cli/tenants_command.rb', line 298

def remove(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    build_common_options(opts, options, [:auto_confirm, :json, :remote, :dry_run])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    exit 1
  end
  connect(options)
  begin
    # allow finding by ID since name is not unique!
     = (args[0])
    exit 1 if .nil?
    unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the account #{['name']}?")
      exit
    end
    if options[:dry_run] && options[:json]
      puts as_json(payload, options)
      return 0
    end
    @accounts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @accounts_interface.dry.destroy(['id'])
      return
    end
    json_response = @accounts_interface.destroy(['id'])
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      print_green_success "Tenant #{['name']} removed"
    end

  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#update(args) ⇒ Object



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# File 'lib/morpheus/cli/tenants_command.rb', line 227

def update(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name] [options]")
    opts.on('--active [on|off]', String, "Can be used to disable a network") do |val|
      params['active'] = val.to_s.empty? || val.to_s == 'on' || val.to_s == 'true'
    end
    build_option_type_options(opts, options, )
    build_common_options(opts, options, [:options, :json, :remote, :dry_run])
  end
  optparse.parse!(args)
  if args.count < 1
    print_red_alert "Specify at least one option to update"
    puts optparse
    exit 1
  end
  connect(options)
  begin
     = (args[0])
    exit 1 if .nil?

    #params = Morpheus::Cli::OptionTypes.prompt(update_account_option_types, options[:options], @api_client, options[:params])
    params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]

    if params.empty?
      puts optparse
      exit 1
    end

    #puts "parsed params is : #{params.inspect}"
    #account_keys = ['name', 'description', 'currency', 'instanceLimits']
     = params
    ['currency'] = ['currency'].upcase unless ['currency'].to_s.empty?
    # if !account_payload['instanceLimits']
    #   account_payload['instanceLimits'] = {}
    #   account_payload['instanceLimits']['maxStorage'] = params['instanceLimits.maxStorage'].to_i if params['instanceLimits.maxStorage'].to_s.strip != ''
    #   account_payload['instanceLimits']['maxMemory'] = params['instanceLimits.maxMemory'].to_i if params['instanceLimits.maxMemory'].to_s.strip != ''
    #   account_payload['instanceLimits']['maxCpu'] = params['instanceLimits.maxCpu'].to_i if params['instanceLimits.maxCpu'].to_s.strip != ''
    # end
    if params['role'].to_s != ''
      role = find_role_by_name(nil, params['role'])
      exit 1 if role.nil?
      ['role'] = {id: role['id']}
    end
    payload = {account: }
    if options[:dry_run] && options[:json]
      puts as_json(payload, options)
      return 0
    end
    @accounts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @accounts_interface.dry.update(['id'], payload)
      return
    end
    json_response = @accounts_interface.update(['id'], payload)

    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
       = ['name'] || ['name']
      print_green_success "Tenant #{} updated"
      get([])
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end