123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Crypt::ExplicitEncryptionContext Private

Do not use. This class is for internal use only.
Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Mongo::Crypt::ExplicitEncryptionExpressionContext
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Context, Forwardable
Instance Chain:
self, Context
Inherits: Mongo::Crypt::Context
Defined in: lib/mongo/crypt/explicit_encryption_context.rb

Overview

A Context object initialized for explicit encryption

Class Method Summary

Context - Inherited

.new

Create a new Context object.

Instance Attribute Summary

Context - Inherited

Instance Method Summary

Context - Inherited

#run_state_machine

Runs the mongocrypt_ctx_t state machine and handles all I/O on behalf of libmongocrypt.

#state

Returns the state of the mongocrypt_ctx_t.

#azure_access_token

Returns an Azure access token, retrieving it if necessary.

#gcp_access_token

Retrieves a GCP access token.

#mongocrypt_done

Indicate that state machine is done feeding I/O responses back to libmongocrypt.

#mongocrypt_feed

Feeds the result of a ::Mongo operation back to libmongocrypt.

#retrieve_kms_credentials

Retrieves KMS credentials for providers that are configured for automatic credentials retrieval.

Instance Method Details

#convert_range_opts(range_opts) (private)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 139

def convert_range_opts(range_opts)
  range_opts.dup.tap do |opts|
    opts[:sparsity] = BSON::Int64.new(opts[:sparsity]) unless opts[:sparsity].is_a?(BSON::Int64)
  end
end

#init(doc)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 73

def init(doc)
  Binding.ctx_explicit_encrypt_init(self, doc)
end

#set_algorithm_opts(options) (private)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 117

def set_algorithm_opts(options)
  Binding.ctx_setopt_algorithm(self, options[:algorithm])
  if %w(Indexed RangePreview).include?(options[:algorithm])
    if options[:contention_factor]
      Binding.ctx_setopt_contention_factor(self, options[:contention_factor])
    end
    if options[:query_type]
      Binding.ctx_setopt_query_type(self, options[:query_type])
    end
  else
    if options[:contention_factor]
      raise ArgumentError.new(':contention_factor is allowed only for "Indexed" or "RangePreview" algorithms')
    end
    if options[:query_type]
      raise ArgumentError.new(':query_type is allowed only for "Indexed" or "RangePreview" algorithms')
    end
  end
  if options[:algorithm] == 'RangePreview'
    Binding.ctx_setopt_algorithm_range(self, convert_range_opts(options[:range_opts]))
  end
end

#set_key_alt_name(key_alt_name) (private)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 110

def set_key_alt_name(key_alt_name)
  unless key_alt_name.is_a?(String)
      raise ArgumentError.new(':key_alt_name option must be a String')
    end
    Binding.ctx_setopt_key_alt_names(self, [key_alt_name])
end

#set_key_id(key_id) (private)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 99

def set_key_id(key_id)
  unless key_id.is_a?(BSON::Binary) &&
      key_id.type == :uuid
        raise ArgumentError.new(
          "Expected the :key_id option to be a BSON::Binary object with " +
          "type :uuid. #{key_id} is an invalid :key_id option"
        )
    end
    Binding.ctx_setopt_key_id(self, key_id.data)
end

#set_key_opts(options) (private)

[ GitHub ]

  
# File 'lib/mongo/crypt/explicit_encryption_context.rb', line 78

def set_key_opts(options)
  if options[:key_id].nil? && options[:key_alt_name].nil?
    raise ArgumentError.new(
      'The :key_id and :key_alt_name options cannot both be nil. ' +
      'Specify a :key_id option or :key_alt_name option (but not both)'
    )
  end
  if options[:key_id] && options[:key_alt_name]
    raise ArgumentError.new(
      'The :key_id and :key_alt_name options cannot both be present. ' +
      'Identify the data key by specifying its id with the :key_id ' +
      'option or specifying its alternate name with the :key_alt_name option'
    )
  end
  if options[:key_id]
    set_key_id(options[:key_id])
  elsif options[:key_alt_name]
    set_key_alt_name(options[:key_alt_name])
  end
end