Class: Aspera::Cli::Plugins::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/aspera/cli/plugins/base.rb

Overview

Base class for command plugins

Direct Known Subclasses

Ats, BasicAuth, Config, Cos, Httpgw

Constant Summary collapse

GLOBAL_OPS =

Operations without id (create list)

i[create list].freeze
INSTANCE_OPS =

Operations with id (modify delete show)

i[modify delete show].freeze
ALL_OPS =

All standard operations (create list modify delete show)

(GLOBAL_OPS + INSTANCE_OPS).freeze
MAX_ITEMS =

Special query parameter: ‘max`: max number of items for list command

'max'
MAX_PAGES =

Special query parameter: ‘pmax`: max number of pages for list command

'pmax'
REGEX_LOOKUP_ID_BY_FIELD =

Special identifier format: look for this name to find where supported

/^%([^:]+):(.*)$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context:) ⇒ Base

Returns a new instance of Base.



33
34
35
36
37
38
39
# File 'lib/aspera/cli/plugins/base.rb', line 33

def initialize(context:)
  # Check presence in descendant of mandatory method and constant
  Aspera.assert(respond_to?(:execute_action), type: InternalError){"Missing method 'execute_action' in #{self.class}"}
  Aspera.assert(self.class.constants.include?(:ACTIONS), type: InternalError){"Missing constant 'ACTIONS' in #{self.class}"}
  @context = context
  add_manual_header if @context.man_header
end

Instance Attribute Details

#contextObject (readonly)

Global objects



42
43
44
# File 'lib/aspera/cli/plugins/base.rb', line 42

def context
  @context
end

Class Method Details

.declare_options(options) ⇒ Object



25
26
27
28
29
30
# File 'lib/aspera/cli/plugins/base.rb', line 25

def declare_options(options)
  options.declare(:query, 'Additional filter for for some commands (list/delete)', types: [Hash, Array])
  options.declare(:property, 'Name of property to set (modify operation)')
  options.declare(:bulk, 'Bulk operation (only some)', values: :bool, default: :no)
  options.declare(:bfail, 'Bulk operation error handling', values: :bool, default: :yes)
end

Instance Method Details

#add_manual_header(has_options = true) ⇒ Object



50
51
52
53
54
55
56
# File 'lib/aspera/cli/plugins/base.rb', line 50

def add_manual_header(has_options = true)
  # Manual header for all plugins
  options.parser.separator('')
  options.parser.separator("COMMAND: #{self.class.name.split('::').last.downcase}")
  options.parser.separator("SUBCOMMANDS: #{self.class.const_get(:ACTIONS).map(&:to_s).sort.join(' ')}")
  options.parser.separator('OPTIONS:') if has_options
end

#configObject



46
# File 'lib/aspera/cli/plugins/base.rb', line 46

def config; @context.config; end

#do_bulk_operation(command:, descr: nil, values: Hash, id_result: 'id', fields: :default) ⇒ Object

For create and delete operations: execute one action or multiple if bulk is yes

Parameters:

  • command (Symbol)

    operation: :create, :delete, …

  • descr (String) (defaults to: nil)

    description of the value

  • values (Object) (defaults to: Hash)

    the value(s), or the type of value to get from user

  • id_result (String) (defaults to: 'id')

    key in result hash to use as identifier

  • fields (Array) (defaults to: :default)

    fields to display

  • &block (Proc)

    block to execute for each value



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/aspera/cli/plugins/base.rb', line 89

def do_bulk_operation(command:, descr: nil, values: Hash, id_result: 'id', fields: :default)
  Aspera.assert(block_given?){'missing block'}
  is_bulk = options.get_option(:bulk)
  case values
  when :identifier
    values = instance_identifier(description: descr)
  when Class
    values = value_create_modify(command: command, description: descr, type: values, bulk: is_bulk)
  end
  # If not bulk, there is a single value
  params = is_bulk ? values : [values]
  Log.log.warn('Empty list given for bulk operation') if params.empty?
  Log.dump(:bulk_operation, params)
  result_list = []
  params.each do |param|
    # Init for delete
    result = {id_result => param}
    begin
      # Execute custom code
      res = yield(param)
      # If block returns a hash, let's use this (create)
      result = res if res.is_a?(Hash)
      # TODO: remove when faspio gw api fixes this
      result = res.first if res.is_a?(Array) && res.first.is_a?(Hash)
      # Create -> created
      result['status'] = "#{command}#{'e' unless command.to_s.end_with?('e')}d".gsub(/yed$/, 'ied')
    rescue StandardError => e
      raise e if options.get_option(:bfail)
      result['status'] = e.to_s
    end
    result_list.push(result)
  end
  display_fields = [id_result, 'status']
  if is_bulk
    return Main.result_object_list(result_list, fields: display_fields)
  else
    display_fields = fields unless fields.eql?(:default)
    return Main.result_single_object(result_list.first, fields: display_fields)
  end
end

#entity_execute(api:, entity:, command: nil, display_fields: nil, items_key: nil, delete_style: nil, id_as_arg: false, is_singleton: false, list_query: nil, tclo: false, &block) ⇒ Object

Operations: Create, Delete, Show, List, Modify

Parameters:

  • api (Rest)

    api to use

  • entity (String)

    sub path in URL to resource relative to base url

  • command (Symbol) (defaults to: nil)

    command to execute: create show list modify delete

  • display_fields (Array) (defaults to: nil)

    fields to display by default

  • items_key (String) (defaults to: nil)

    result is in a sub key of the json

  • delete_style (String) (defaults to: nil)

    if set, the delete operation by array in payload

  • id_as_arg (String) (defaults to: false)

    if set, the id is provided as url argument ?<id_as_arg>=<id>

  • is_singleton (Boolean) (defaults to: false)

    if true, entity is the full path to the resource

  • tclo (Bool) (defaults to: false)

    if set, :list use paging with total_count, limit, offset

  • block (Proc)

    block to search for identifier based on attribute value

Returns:

  • result suitable for CLI result



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
167
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
# File 'lib/aspera/cli/plugins/base.rb', line 142

def entity_execute(
  api:,
  entity:,
  command: nil,
  display_fields: nil,
  items_key: nil,
  delete_style: nil,
  id_as_arg: false,
  is_singleton: false,
  list_query: nil,
  tclo: false,
  &block
)
  command = options.get_next_command(ALL_OPS) if command.nil?
  if is_singleton
    one_res_path = entity
  elsif INSTANCE_OPS.include?(command)
    one_res_id = instance_identifier(&block)
    one_res_path = "#{entity}/#{one_res_id}"
    one_res_path = "#{entity}?#{id_as_arg}=#{one_res_id}" if id_as_arg
  end

  case command
  when :create
    raise BadArgument, 'cannot create singleton' if is_singleton
    return do_bulk_operation(command: command, descr: 'data', fields: display_fields) do |params|
      api.create(entity, params)
    end
  when :delete
    raise BadArgument, 'cannot delete singleton' if is_singleton
    if !delete_style.nil?
      one_res_id = [one_res_id] unless one_res_id.is_a?(Array)
      Aspera.assert_type(one_res_id, Array, type: Cli::BadArgument)
      api.call(
        operation:    'DELETE',
        subpath:      entity,
        content_type: Rest::MIME_JSON,
        body:         {delete_style => one_res_id},
        headers:      {'Accept' => Rest::MIME_JSON}
      )
      return Main.result_status('deleted')
    end
    return do_bulk_operation(command: command, values: one_res_id) do |one_id|
      api.delete("#{entity}/#{one_id}", query_read_delete)
      {'id' => one_id}
    end
  when :show
    return Main.result_single_object(api.read(one_res_path), fields: display_fields)
  when :list
    if tclo
      data, total = list_entities_limit_offset_total_count(api: api, entity:, items_key: items_key, query: query_read_delete(default: list_query))
      return Main.result_object_list(data, total: total, fields: display_fields)
    end
    resp = api.call(operation: 'GET', subpath: entity, headers: {'Accept' => Rest::MIME_JSON}, query: query_read_delete)
    return Main.result_empty if resp[:http].code == '204'
    data = resp[:data]
    # TODO: not generic : which application is this for ?
    if resp[:http]['Content-Type'].start_with?('application/vnd.api+json')
      Log.log.debug('is vnd.api')
      data = data[entity]
    end
    data = data[items_key] if items_key
    case data
    when Hash
      return Main.result_single_object(data, fields: display_fields)
    when Array
      return Main.result_object_list(data, fields: display_fields) if data.empty? || data.first.is_a?(Hash)
      return Main.result_value_list(data)
    else
      raise "An error occurred: unexpected result type for list: #{data.class}"
    end
  when :modify
    parameters = value_create_modify(command: command)
    property = options.get_option(:property)
    parameters = {property => parameters} unless property.nil?
    api.update(one_res_path, parameters)
    return Main.result_status('modified')
  else
    raise "unknown action: #{command}"
  end
end

#formatterObject



47
# File 'lib/aspera/cli/plugins/base.rb', line 47

def formatter; @context.formatter; end

#instance_identifier(description: 'identifier', as_option: nil, &block) ⇒ String, Array

Must be called AFTER the instance action: … folder browse _call_instance_identifier

Parameters:

  • description (String) (defaults to: 'identifier')

    description of the identifier

  • as_option (Symbol) (defaults to: nil)

    option name to use if identifier is an option

  • block (Proc)

    block to search for identifier based on attribute value

Returns:

  • (String, Array)

    identifier or list of ids



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/aspera/cli/plugins/base.rb', line 65

def instance_identifier(description: 'identifier', as_option: nil, &block)
  if as_option.nil?
    res_id = options.get_next_argument(description, multiple: options.get_option(:bulk)) if res_id.nil?
  else
    res_id = options.get_option(as_option)
  end
  # Can be an Array
  if res_id.is_a?(String) && (m = res_id.match(REGEX_LOOKUP_ID_BY_FIELD))
    if block
      res_id = yield(m[1], ExtendedValue.instance.evaluate(m[2]))
    else
      raise Cli::BadArgument, "Percent syntax for #{description} not supported in this context"
    end
  end
  return res_id
end

#list_entities_limit_offset_total_count(api:, entity:, items_key: nil, query: nil) ⇒ Array

Get a (full or partial) list of all entities of a given type with query: offset/limit

Parameters:

  • `api` (Rest)

    the API object

  • `entity` (String, Symbol)

    the API endpoint of entity to list

  • `items_key` (String)

    key in the result to get the list of items

  • `query` (Hash, nil)

    additional query parameters

Returns:

  • (Array)

    items, total_count



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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# File 'lib/aspera/cli/plugins/base.rb', line 271

def list_entities_limit_offset_total_count(
  api:,
  entity:,
  items_key: nil,
  query: nil
)
  entity = entity.to_s if entity.is_a?(Symbol)
  items_key = entity.split('/').last if items_key.nil?
  query = {} if query.nil?
  Aspera.assert_type(entity, String)
  Aspera.assert_type(items_key, String)
  Aspera.assert_type(query, Hash)
  Log.log.debug{"list_entities t=#{entity} k=#{items_key} q=#{query}"}
  result = []
  offset = 0
  max_items = query.delete(MAX_ITEMS)
  remain_pages = query.delete(MAX_PAGES)
  # Merge default parameters, by default 100 per page
  query = {'limit'=> PER_PAGE_DEFAULT}.merge(query)
  total_count = nil
  loop do
    query['offset'] = offset
    page_result = api.read(entity, query)
    Aspera.assert_type(page_result[items_key], Array)
    result.concat(page_result[items_key])
    # Reach the limit set by user ?
    if !max_items.nil? && (result.length >= max_items)
      result = result.slice(0, max_items)
      break
    end
    total_count ||= page_result['total_count']
    break if result.length >= total_count
    remain_pages -= 1 unless remain_pages.nil?
    break if remain_pages == 0
    offset += page_result[items_key].length
    formatter.long_operation_running
  end
  formatter.long_operation_terminated
  return result, total_count
end

#lookup_entity_by_field(api:, entity:, value:, field: 'name', items_key: nil, query: :default) ⇒ Object

Lookup an entity id from its name

Parameters:

  • entity (String)

    the type of entity to lookup, by default it is the path, and it is also the field name in result

  • value (String)

    the value to lookup

  • field (String) (defaults to: 'name')

    the field to match, by default it is ‘name’

  • items_key (String) (defaults to: nil)

    key in the result to get the list of items (override entity)

  • query (Hash) (defaults to: :default)

    additional query parameters



318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/aspera/cli/plugins/base.rb', line 318

def lookup_entity_by_field(api:, entity:, value:, field: 'name', items_key: nil, query: :default)
  if query.eql?(:default)
    Aspera.assert(field.eql?('name')){'Default query is on name only'}
    query = {'q'=> value}
  end
  found = list_entities_limit_offset_total_count(api: api, entity: entity, items_key: items_key, query: query).first.select{ |i| i[field].eql?(value)}
  case found.length
  when 0 then raise "No #{entity} with #{field} = #{value}"
  when 1 then return found.first
  else raise "Found #{found.length} #{entity} with #{field} = #{value}"
  end
end

#optionsObject



44
# File 'lib/aspera/cli/plugins/base.rb', line 44

def options; @context.options; end

#persistencyObject



48
# File 'lib/aspera/cli/plugins/base.rb', line 48

def persistency; @context.persistency; end

#query_read_delete(default: nil) ⇒ Object

Query parameters in URL suitable for REST: list/GET and delete/DELETE



225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/aspera/cli/plugins/base.rb', line 225

def query_read_delete(default: nil)
  query = options.get_option(:query)
  # Dup default, as it could be frozen
  query = default.dup if query.nil?
  Log.log.debug{"query_read_delete=#{query}".bg_red}
  begin
    # Check it is suitable
    URI.encode_www_form(query) unless query.nil?
  rescue StandardError => e
    raise Cli::BadArgument, "Query must be an extended value (Hash, Array) which can be encoded with URI.encode_www_form. Refer to manual. (#{e.message})"
  end
  return query
end

#transferObject



45
# File 'lib/aspera/cli/plugins/base.rb', line 45

def transfer; @context.transfer; end

#value_create_modify(command:, description: nil, type: Hash, bulk: false, default: nil) ⇒ Object

Retrieves an extended value from command line, used for creation or modification of entities

Parameters:

  • command (Symbol)

    command name for error message

  • type (Class) (defaults to: Hash)

    expected type of value, either a Class, an Array of Class

  • bulk (Boolean) (defaults to: false)

    if true, value must be an Array of <type>

  • default (Object) (defaults to: nil)

    default value if not provided



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/aspera/cli/plugins/base.rb', line 244

def value_create_modify(command:, description: nil, type: Hash, bulk: false, default: nil)
  value = options.get_next_argument(
    "parameters for #{command}#{" (#{description})" unless description.nil?}", mandatory: default.nil?,
    validation: bulk ? Array : type
  )
  value = default if value.nil?
  unless type.nil?
    type = [type] unless type.is_a?(Array)
    Aspera.assert(type.all?(Class)){"check types must be a Class, not #{type.map(&:class).join(',')}"}
    if bulk
      Aspera.assert_type(value, Array, type: Cli::BadArgument)
      value.each do |v|
        Aspera.assert_values(v.class, type, type: Cli::BadArgument)
      end
    else
      Aspera.assert_values(value.class, type, type: Cli::BadArgument)
    end
  end
  return value
end