Module: Conjur::IdentifierManipulation

Included in:
Command, DSL::Runner
Defined in:
lib/conjur/identifier_manipulation.rb

Instance Method Summary collapse

Instance Method Details

#conjur_accountObject



25
26
27
# File 'lib/conjur/identifier_manipulation.rb', line 25

def 
  Conjur::Core::API.
end

#full_resource_id(id) ⇒ Object

injects account into 2-tokens id



4
5
6
7
8
9
10
11
12
13
# File 'lib/conjur/identifier_manipulation.rb', line 4

def full_resource_id id
  parts = id.split(':') unless id.nil? 
  if id.blank? or parts.size < 2
    raise "Expecting at least two tokens in #{id}"
  end
  if parts.size == 2
    id = [, parts].flatten.join(":")
  end
  id
end

#get_kind_and_id_from_args(args, argname = 'id') ⇒ Object

removes accounts from 3+-tokens id, extracts kind



16
17
18
19
20
21
22
23
# File 'lib/conjur/identifier_manipulation.rb', line 16

def get_kind_and_id_from_args args, argname='id'
  flat_id = require_arg(args, argname)
  tokens=flat_id.split(':')
  raise "At least 2 tokens expected in #{flat_id}" if tokens.size<2
  tokens.shift if tokens.size>=3 # get rid of account
  kind=tokens.shift.gsub('-','_')
  [kind, tokens.join(':')]
end