Class: Aspera::AoC
Constant Summary collapse
- PRODUCT_NAME =
'Aspera on Cloud'- PROD_DOMAIN =
Production domain of AoC
'ibmaspera.com'- SCOPE_FILES_SELF =
various API scopes supported
'self'- SCOPE_FILES_USER =
'user:all'- SCOPE_FILES_ADMIN =
'admin:all'- SCOPE_FILES_ADMIN_USER =
'admin-user:all'- SCOPE_FILES_ADMIN_USER_USER =
"#{SCOPE_FILES_ADMIN_USER}+#{SCOPE_FILES_USER}"- SCOPE_NODE_USER =
'user:all'- SCOPE_NODE_ADMIN =
'admin:all'- FILES_APP =
'files'- PACKAGES_APP =
'packages'- API_V1 =
'api/v1'- OPTIONS_NEW =
CLI options that are also options to initialize
i[link url auth client_id client_secret scope redirect_uri private_key passphrase username password].freeze
- ID_AK_ADMIN =
'ASPERA_ACCESS_KEY_ADMIN'
Constants inherited from Rest
Instance Attribute Summary
Attributes inherited from Rest
Class Method Summary collapse
-
.api_base_url(organization: 'api', api_domain: PROD_DOMAIN) ⇒ Object
base API url depends on domain, which could be “qa.xxx”.
-
.get_client_info(client_name = GLOBAL_CLIENT_APPS.first) ⇒ Object
strings /Applications/Aspera\ Drive.app/Contents/MacOS/AsperaDrive|grep -E ‘.100==$’|base64 –decode.
- .metering_api(entitlement_id, customer_id, api_domain = PROD_DOMAIN) ⇒ Object
-
.node_scope(access_key, scope) ⇒ Object
node API scopes.
-
.parse_url(aoc_org_url) ⇒ Object
Organization id in url and AoC domain: ibmaspera.com, asperafiles.com or qa.asperafiles.com, etc…
-
.resolve_pub_link(a_auth, a_opt) ⇒ Object
check option “link” if present try to get token value (resolve redirection if short links used) then set options url/token/auth.
Instance Method Summary collapse
-
#add_ts_tags(transfer_spec:, app_info:) ⇒ Object
Add transferspec callback in Aspera::Node (transfer_spec_gen4).
- #additional_persistence_ids ⇒ Object
-
#create_package_simple(package_data, validate_meta, new_user_option) ⇒ Object
create a package.
-
#current_user_info(exception: false) ⇒ Object
cached user information.
-
#initialize(opt) ⇒ AoC
constructor
A new instance of AoC.
- #node_api_from(node_id:, workspace_id: nil, workspace_name: nil, scope: SCOPE_NODE_USER, package_info: nil) ⇒ Object
-
#permissions_send_event(created_data:, app_info:, types: PERMISSIONS_CREATED) ⇒ Object
Callback from Plugins::Node send shared folder event to AoC.
-
#permissions_set_create_params(create_param:, app_info:) ⇒ Object
Callback from Plugins::Node add application specific tags to permissions creation.
-
#resolve_package_recipients(package_data, ws_id, recipient_list_field, new_user_option) ⇒ Object
Normalize package creation recipient lists as expected by AoC API AoC expects {type: , id: }, but ascli allows providing either the native values or just a name in that case, the name is resolved and replaced with {type: , id: }.
- #secret_finder=(secret_finder) ⇒ Object
-
#update_package_metadata_for_api(pkg_data) ⇒ Object
CLI allows simplified format for metadata: transform if necessary for API.
- #url_token_data ⇒ Object
-
#validate_metadata(pkg_data) ⇒ Object
Check metadata: remove when validation is done server side.
Methods inherited from Rest
array_params, basic_creds, #build_request, build_uri, #call, #cancel, #create, #delete, #lookup_by_name, #oauth, #oauth_token, #read, start_http_session, #update
Constructor Details
#initialize(opt) ⇒ AoC
Returns a new instance of AoC.
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 |
# File 'lib/aspera/aoc.rb', line 152 def initialize(opt) raise ArgumentError, 'Missing mandatory option: scope' if opt[:scope].nil? # access key secrets are provided out of band to get node api access # key: access key # value: associated secret @secret_finder = nil @cache_user_info = nil @cache_url_token_info = nil # init rest params aoc_rest_p = {auth: {type: :oauth2}} # shortcut to auth section aoc_auth_p = aoc_rest_p[:auth] # sets opt[:url], aoc_rest_p[:auth][:grant_method], [:auth][:aoc_pub_link] if there is a link self.class.resolve_pub_link(aoc_auth_p, opt) # test here because link may set url raise ArgumentError, 'Missing mandatory option: url' if opt[:url].nil? # get org name and domain from url organization, instance_domain = self.class.parse_url(opt[:url]) # this is the base API url api_url_base = self.class.api_base_url(api_domain: instance_domain) # API URL, including subpath (version ...) aoc_rest_p[:base_url] = "#{api_url_base}/#{opt[:subpath]}" # base auth URL aoc_auth_p[:base_url] = "#{api_url_base}/#{OAUTH_API_SUBPATH}/#{organization}" aoc_auth_p[:client_id] = opt[:client_id] aoc_auth_p[:client_secret] = opt[:client_secret] aoc_auth_p[:scope] = opt[:scope] # filled if pub link if !aoc_auth_p.key?(:grant_method) raise ArgumentError, 'Missing mandatory option: auth' if opt[:auth].nil? aoc_auth_p[:grant_method] = opt[:auth] end if aoc_auth_p[:client_id].nil? aoc_auth_p[:client_id], aoc_auth_p[:client_secret] = self.class.get_client_info end # fill other auth parameters based on Oauth method case aoc_auth_p[:grant_method] when :web raise ArgumentError, 'Missing mandatory option: redirect_uri' if opt[:redirect_uri].nil? aoc_auth_p[:web] = {redirect_uri: opt[:redirect_uri]} when :jwt raise ArgumentError, 'Missing mandatory option: private_key' if opt[:private_key].nil? raise ArgumentError, 'Missing mandatory option: username' if opt[:username].nil? aoc_auth_p[:jwt] = { private_key_obj: OpenSSL::PKey::RSA.new(opt[:private_key], opt[:passphrase]), payload: { iss: aoc_auth_p[:client_id], # issuer sub: opt[:username], # subject aud: JWT_AUDIENCE } } # add jwt payload for global ids aoc_auth_p[:jwt][:payload][:org] = organization if GLOBAL_CLIENT_APPS.include?(aoc_auth_p[:client_id]) when :aoc_pub_link # basic auth required for /token aoc_auth_p[:auth] = {type: :basic, username: aoc_auth_p[:client_id], password: aoc_auth_p[:client_secret]} else raise "ERROR: unsupported auth method: #{aoc_auth_p[:grant_method]}" end super(aoc_rest_p) end |
Class Method Details
.api_base_url(organization: 'api', api_domain: PROD_DOMAIN) ⇒ Object
base API url depends on domain, which could be “qa.xxx”
95 96 97 |
# File 'lib/aspera/aoc.rb', line 95 def api_base_url(organization: 'api', api_domain: PROD_DOMAIN) return "https://#{organization}.#{api_domain}" end |
.get_client_info(client_name = GLOBAL_CLIENT_APPS.first) ⇒ Object
strings /Applications/Aspera\ Drive.app/Contents/MacOS/AsperaDrive|grep -E ‘.100==$’|base64 –decode
74 75 76 77 78 |
# File 'lib/aspera/aoc.rb', line 74 def get_client_info(client_name=GLOBAL_CLIENT_APPS.first) client_index = GLOBAL_CLIENT_APPS.index(client_name) raise "no such pre-defined client: #{client_name}" if client_index.nil? return client_name, Base64.urlsafe_encode64(DataRepository.instance.data(DATA_REPO_INDEX_START + client_index)) end |
.metering_api(entitlement_id, customer_id, api_domain = PROD_DOMAIN) ⇒ Object
99 100 101 102 103 104 |
# File 'lib/aspera/aoc.rb', line 99 def metering_api(entitlement_id, customer_id, api_domain=PROD_DOMAIN) return Rest.new({ base_url: "#{api_base_url(api_domain: api_domain)}/metering/v1", headers: {'X-Aspera-Entitlement-Authorization' => Rest.basic_creds(entitlement_id, customer_id)} }) end |
.node_scope(access_key, scope) ⇒ Object
node API scopes
107 108 109 |
# File 'lib/aspera/aoc.rb', line 107 def node_scope(access_key, scope) return "node.#{access_key}:#{scope}" end |
.parse_url(aoc_org_url) ⇒ Object
Returns organization id in url and AoC domain: ibmaspera.com, asperafiles.com or qa.asperafiles.com, etc…
82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/aspera/aoc.rb', line 82 def parse_url(aoc_org_url) uri = URI.parse(aoc_org_url.gsub(%r{/+$}, '')) instance_fqdn = uri.host Log.log.debug{"instance_fqdn=#{instance_fqdn}"} raise "No host found in URL.Please check URL format: https://myorg.#{PROD_DOMAIN}" if instance_fqdn.nil? organization, instance_domain = instance_fqdn.split('.', 2) Log.log.debug{"instance_domain=#{instance_domain}"} Log.log.debug{"organization=#{organization}"} raise "expecting a public FQDN for #{PRODUCT_NAME}" if instance_domain.nil? return organization, instance_domain end |
.resolve_pub_link(a_auth, a_opt) ⇒ Object
check option “link” if present try to get token value (resolve redirection if short links used) then set options url/token/auth
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 |
# File 'lib/aspera/aoc.rb', line 114 def resolve_pub_link(a_auth, a_opt) public_link_url = a_opt[:link] return if public_link_url.nil? raise 'do not use both link and url options' unless a_opt[:url].nil? redirect_count = 0 while redirect_count <= MAX_REDIRECT uri = URI.parse(public_link_url) # detect if it's an expected format if PUBLIC_LINK_PATHS.include?(uri.path) url_param_token_pair = URI.decode_www_form(uri.query).find{|e|e.first.eql?('token')} raise ArgumentError, 'link option must be URL with "token" parameter' if url_param_token_pair.nil? # ok we get it ! a_opt[:url] = 'https://' + uri.host a_auth[:grant_method] = :aoc_pub_link a_auth[:aoc_pub_link] = { url: {grant_type: 'url_token'}, # URL args json: {url_token: url_param_token_pair.last} # JSON body } # password protection of link a_auth[:aoc_pub_link][:json][:password] = a_opt[:password] unless a_opt[:password].nil? return # SUCCESS end Log.log.debug{"no expected format: #{public_link_url}"} r = Net::HTTP.get_response(uri) # not a redirection raise ArgumentError, 'link option must be redirect or have token parameter' unless r.code.start_with?('3') public_link_url = r['location'] raise 'no location in redirection' if public_link_url.nil? Log.log.debug{"redirect to: #{public_link_url}"} end # loop raise "exceeded max redirection: #{MAX_REDIRECT}" end |
Instance Method Details
#add_ts_tags(transfer_spec:, app_info:) ⇒ Object
Add transferspec callback in Aspera::Node (transfer_spec_gen4)
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
# File 'lib/aspera/aoc.rb', line 433 def (transfer_spec:, app_info:) # translate transfer direction to upload/download transfer_type = Fasp::TransferSpec.action(transfer_spec) # Analytics tags ################ transfer_spec.deep_merge!({ 'tags' => { Fasp::TransferSpec::TAG_RESERVED => { 'usage_id' => "aspera.files.workspace.#{app_info[:workspace_id]}", # activity tracking 'files' => { 'files_transfer_action' => "#{transfer_type}_#{app_info[:app].gsub(/s$/, '')}", 'workspace_name' => app_info[:workspace_name], # activity tracking 'workspace_id' => app_info[:workspace_id] } } } }) # Console cookie ################ # we are sure that fields are not nil = [app_info[:app], current_user_info['name'], current_user_info['email']].map{|e|Base64.strict_encode64(e)} .unshift(COOKIE_PREFIX_CONSOLE_AOC) transfer_spec['cookie'] = .join(':') # Application tags ################## case app_info[:app] when FILES_APP file_id = transfer_spec['tags'][Fasp::TransferSpec::TAG_RESERVED]['node']['file_id'] transfer_spec.deep_merge!({'tags' => {Fasp::TransferSpec::TAG_RESERVED => {'files' => {'parentCwd' => "#{app_info[:node_info]['id']}:#{file_id}"}}}}) \ unless transfer_spec.key?('remote_access_key') when PACKAGES_APP transfer_spec.deep_merge!({ 'tags' => { Fasp::TransferSpec::TAG_RESERVED => { 'files' => { 'package_id' => app_info[:package_id], 'package_name' => app_info[:package_name], 'package_operation' => transfer_type }}}}) end transfer_spec['tags'][Fasp::TransferSpec::TAG_RESERVED]['files']['node_id'] = app_info[:node_info]['id'] transfer_spec['tags'][Fasp::TransferSpec::TAG_RESERVED]['app'] = app_info[:app] end |
#additional_persistence_ids ⇒ Object
229 230 231 232 |
# File 'lib/aspera/aoc.rb', line 229 def additional_persistence_ids return [current_user_info['id']] if url_token_data.nil? return [] # TODO : url_token_data['id'] ? end |
#create_package_simple(package_data, validate_meta, new_user_option) ⇒ Object
create a package
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
# File 'lib/aspera/aoc.rb', line 400 def create_package_simple(package_data, , new_user_option) (package_data) # list of files to include in package, optional # package_data['file_names']||=[..list of filenames to transfer...] # lookup users resolve_package_recipients(package_data, package_data['workspace_id'], 'recipients', new_user_option) resolve_package_recipients(package_data, package_data['workspace_id'], 'bcc_recipients', new_user_option) (package_data) if # create a new package container created_package = create('packages', package_data)[:data] package_node_api = node_api_from( node_id: created_package['node_id'], workspace_id: created_package['workspace_id'], package_info: created_package) # tell AoC what to expect in package: 1 transfer (can also be done after transfer) # TODO: if multi session was used we should probably tell # also, currently no "multi-source" , i.e. only from client-side files, unless "node" agent is used update("packages/#{created_package['id']}", {'sent' => true, 'transfers_expected' => 1})[:data] return { spec: package_node_api.transfer_spec_gen4(created_package['contents_file_id'], Fasp::TransferSpec::DIRECTION_SEND), node: package_node_api, info: created_package } end |
#current_user_info(exception: false) ⇒ Object
cached user information
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/aspera/aoc.rb', line 241 def current_user_info(exception: false) if @cache_user_info.nil? # get our user's default information @cache_user_info = begin read('self')[:data] rescue StandardError => e raise e if exception Log.log.debug{"ignoring error: #{e}"} {} end USER_INFO_FIELDS_MIN.each{|f|@cache_user_info[f] = 'unknown' if @cache_user_info[f].nil?} end return @cache_user_info end |
#node_api_from(node_id:, workspace_id: nil, workspace_name: nil, scope: SCOPE_NODE_USER, package_info: nil) ⇒ Object
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 297 |
# File 'lib/aspera/aoc.rb', line 263 def node_api_from(node_id:, workspace_id: nil, workspace_name: nil, scope: SCOPE_NODE_USER, package_info: nil) raise 'invalid type for node_id' unless node_id.is_a?(String) node_info = read("nodes/#{node_id}")[:data] if workspace_name.nil? && !workspace_id.nil? workspace_name = read("workspaces/#{workspace_id}")[:data]['name'] end app_info = { api: self, # for callback app: package_info.nil? ? FILES_APP : PACKAGES_APP, node_info: node_info, workspace_id: workspace_id, workspace_name: workspace_name } if PACKAGES_APP.eql?(app_info[:app]) raise 'package info required' if package_info.nil? app_info[:package_id] = package_info['id'] app_info[:package_name] = package_info['name'] end node_rest_params = {base_url: node_info['url']} # if secret is available if scope.nil? node_rest_params[:auth] = { type: :basic, username: node_info['access_key'], password: @secret_finder&.lookup_secret(url: node_info['url'], username: node_info['access_key'], mandatory: true) } else # OAuth bearer token node_rest_params[:auth] = params[:auth].clone node_rest_params[:auth][:scope] = self.class.node_scope(node_info['access_key'], scope) # special header required for bearer token only node_rest_params[:headers] = {Aspera::Node::HEADER_X_ASPERA_ACCESS_KEY => node_info['access_key']} end return Node.new(params: node_rest_params, app_info: app_info) end |
#permissions_send_event(created_data:, app_info:, types: PERMISSIONS_CREATED) ⇒ Object
Callback from Plugins::Node send shared folder event to AoC
521 522 523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/aspera/aoc.rb', line 521 def (created_data:, app_info:, types: PERMISSIONS_CREATED) raise "INTERNAL: (assert) Invalid event types: #{types}" unless types.is_a?(Array) && !types.empty? event_creation = { 'types' => types, 'node_id' => app_info[:node_info]['id'], 'workspace_id' => app_info[:workspace_id], 'data' => created_data } # (optional). The name of the folder to be displayed to the destination user. # Use it if its value is different from the "share_as" field. event_creation['link_name'] = app_info[:opt_link_name] unless app_info[:opt_link_name].nil? create('events', event_creation) end |
#permissions_set_create_params(create_param:, app_info:) ⇒ Object
Callback from Plugins::Node add application specific tags to permissions creation
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
# File 'lib/aspera/aoc.rb', line 482 def (create_param:, app_info:) # workspace shared folder: # access_id = "#{ID_AK_ADMIN}_WS_#{app_info[:workspace_id]}" default_params = { # 'access_type' => 'user', # mandatory: user or group # 'access_id' => access_id, # id of user or group 'tags' => { Fasp::TransferSpec::TAG_RESERVED => { 'files' => { 'workspace' => { 'id' => app_info[:workspace_id], 'workspace_name' => app_info[:workspace_name], 'user_name' => current_user_info['name'], 'shared_by_user_id' => current_user_info['id'], 'shared_by_name' => current_user_info['name'], 'shared_by_email' => current_user_info['email'], # 'shared_with_name' => access_id, 'access_key' => app_info[:node_info]['access_key'], 'node' => app_info[:node_info]['name']}}}}} create_param.deep_merge!(default_params) if create_param.key?('with') contact_info = lookup_by_name( 'contacts', create_param['with'], {'current_workspace_id' => app_info[:workspace_id], 'context' => 'share_folder'}) create_param.delete('with') create_param['access_type'] = contact_info['source_type'] create_param['access_id'] = contact_info['source_id'] create_param['tags'][Fasp::TransferSpec::TAG_RESERVED]['files']['workspace']['shared_with_name'] = contact_info['email'] end # optional app_info[:opt_link_name] = create_param.delete('link_name') end |
#resolve_package_recipients(package_data, ws_id, recipient_list_field, new_user_option) ⇒ Object
Normalize package creation recipient lists as expected by AoC API AoC expects {type: , id: }, but ascli allows providing either the native values or just a name in that case, the name is resolved and replaced with {type: , id: }
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
# File 'lib/aspera/aoc.rb', line 335 def resolve_package_recipients(package_data, ws_id, recipient_list_field, new_user_option) return unless package_data.key?(recipient_list_field) raise "#{recipient_list_field} must be an Array" unless package_data[recipient_list_field].is_a?(Array) new_user_option = {'package_contact' => true} if new_user_option.nil? raise 'new_user_option must be a Hash' unless new_user_option.is_a?(Hash) # list with resolved elements resolved_list = [] package_data[recipient_list_field].each do |short_recipient_info| case short_recipient_info when Hash # native API information, check keys raise "#{recipient_list_field} element shall have fields: id and type" unless short_recipient_info.keys.sort.eql?(%w[id type]) when String # CLI helper: need to resolve provided name to type/id # email: user, else dropbox entity_type = short_recipient_info.include?('@') ? 'contacts' : 'dropboxes' begin full_recipient_info = lookup_by_name(entity_type, short_recipient_info, {'current_workspace_id' => ws_id}) rescue RuntimeError => e raise e unless e..start_with?(ENTITY_NOT_FOUND) # dropboxes cannot be created on the fly raise "No such shared inbox in workspace #{ws_id}" if entity_type.eql?('dropboxes') # unknown user: create it as external user full_recipient_info = create('contacts', { 'current_workspace_id' => ws_id, 'email' => short_recipient_info}.merge(new_user_option))[:data] end short_recipient_info = if entity_type.eql?('dropboxes') {'id' => full_recipient_info['id'], 'type' => 'dropbox'} else {'id' => full_recipient_info['source_id'], 'type' => full_recipient_info['source_type']} end else # unexpected extended value, must be String or Hash raise "#{recipient_list_field} item must be a String (email, shared inbox) or Hash (id,type)" end # type of recipient info # add original or resolved recipient info resolved_list.push(short_recipient_info) end # replace with resolved elements package_data[recipient_list_field] = resolved_list return nil end |
#secret_finder=(secret_finder) ⇒ Object
234 235 236 237 238 |
# File 'lib/aspera/aoc.rb', line 234 def secret_finder=(secret_finder) raise 'secret finder already set' unless @secret_finder.nil? raise 'secret finder must have lookup_secret' unless secret_finder.respond_to?(:lookup_secret) @secret_finder = secret_finder end |
#update_package_metadata_for_api(pkg_data) ⇒ Object
CLI allows simplified format for metadata: transform if necessary for API
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'lib/aspera/aoc.rb', line 377 def (pkg_data) case pkg_data['metadata'] when Array, NilClass # no action when Hash = [] pkg_data['metadata'].each do |k, v| .push({ # 'input_type' => 'single-dropdown', 'name' => k, 'values' => v.is_a?(Array) ? v : [v] }) end pkg_data['metadata'] = else raise "metadata field if not of expected type: #{pkg_meta.class}" end return nil end |
#url_token_data ⇒ Object
221 222 223 224 225 226 227 |
# File 'lib/aspera/aoc.rb', line 221 def url_token_data return nil unless params[:auth][:grant_method].eql?(:aoc_pub_link) return @cache_url_token_info unless @cache_url_token_info.nil? # TODO: can there be several in list ? @cache_url_token_info = read('url_tokens')[:data].first return @cache_url_token_info end |
#validate_metadata(pkg_data) ⇒ Object
Check metadata: remove when validation is done server side
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 |
# File 'lib/aspera/aoc.rb', line 300 def (pkg_data) # validate only for shared inboxes return unless pkg_data['recipients'].is_a?(Array) && pkg_data['recipients'].first.is_a?(Hash) && pkg_data['recipients'].first.key?('type') && pkg_data['recipients'].first['type'].eql?('dropbox') = read("dropboxes/#{pkg_data['recipients'].first['id']}")[:data]['metadata_schema'] if .nil? || .empty? Log.log.debug('no metadata in shared inbox') return end = pkg_data['metadata'] raise "package requires metadata: #{meta_schema}" unless pkg_data.key?('metadata') raise 'metadata must be an Array' unless .is_a?(Array) Log.dump(:metadata, ) .each do |field| raise 'metadata field must be Hash' unless field.is_a?(Hash) raise 'metadata field must have name' unless field.key?('name') raise 'metadata field must have values' unless field.key?('values') raise 'metadata values must be an Array' unless field['values'].is_a?(Array) raise "unknown metadata field: #{field['name']}" if .select{|i|i['name'].eql?(field['name'])}.empty? end .each do |field| provided = .select{|i|i['name'].eql?(field['name'])} raise "only one field with name #{field['name']} allowed" if provided.count > 1 raise "missing mandatory field: #{field['name']}" if field['required'] && provided.empty? end end |