Class: Conjur::Command::Variables

Inherits:
Conjur::Command show all
Defined in:
lib/conjur/command/variables.rb

Overview

Copyright © 2013 Conjur Inc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Class Method Summary collapse

Methods inherited from Conjur::Command

acting_as_option, annotate_option, api, api=, assert_empty, collection_option, command, command_impl_for_list, command_options_for_list, context_option, current_role, current_user, destination_role, display, display_members, elevated?, give_away_resource, has_admin?, hide_docs, highline, integer?, interactive_option, method_missing, min_version, prompt_for_annotations, prompt_for_group, prompt_for_id, prompt_for_idnumber, prompt_for_password, prompt_for_public_key, prompt_to_confirm, read_till_eof, require_arg, retire_internal_role, retire_options, retire_resource, retire_role, validate_privileges, validate_public_key, validate_retire_privileges

Methods included from IdentifierManipulation

#conjur_account, #full_resource_id, #get_kind_and_id_from_args

Class Method Details

.durations(options) ⇒ Object



258
259
260
# File 'lib/conjur/command/variables.rb', line 258

def durations(options)
  [options[:n],options[:d],options[:m],options[:i]].count {|o| o.present?}
end

.prompt_for_kindObject



239
240
241
# File 'lib/conjur/command/variables.rb', line 239

def prompt_for_kind
  highline.ask('Enter the kind: ') {|q| q.default = @default_kind }
end

.prompt_for_mime_typeObject



243
244
245
246
247
248
249
250
251
252
# File 'lib/conjur/command/variables.rb', line 243

def prompt_for_mime_type
  highline.choose do |menu|
    menu.prompt = 'Enter the MIME type: '
    menu.choice  @default_mime_type 
    menu.choices *%w(application/json application/xml application/x-yaml application/x-pem-file)
    menu.choice "other", nil do |c|
      @highline.ask('Enter a custom mime type: ')
    end
  end
end

.prompt_for_valueObject



254
255
256
# File 'lib/conjur/command/variables.rb', line 254

def prompt_for_value
  read_till_eof('Enter the secret value (^D on its own line to finish):')
end