Class: Bitferry::Rclone::Encryption

Inherits:
Object
  • Object
show all
Defined in:
lib/bitferry.rb

Direct Known Subclasses

Decrypt, Encrypt

Constant Summary collapse

PROCESS =
{
  default: ['--crypt-filename-encoding', :base32, '--crypt-filename-encryption', :standard],
  extended: ['--crypt-filename-encoding', :base32768, '--crypt-filename-encryption', :standard]
}

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token, process: nil) ⇒ Encryption

Returns a new instance of Encryption.



701
702
703
704
# File 'lib/bitferry.rb', line 701

def initialize(token, process: nil)
  @process_options = Bitferry.optional(process, PROCESS)
  @token = token
end

Class Method Details

.new(*args, **opts) ⇒ Object



735
736
737
738
739
# File 'lib/bitferry.rb', line 735

def self.new(*args, **opts)
  obj = allocate
  obj.send(:create, *args, **opts)
  obj
end

.restore(hash) ⇒ Object



742
743
744
745
746
# File 'lib/bitferry.rb', line 742

def self.restore(hash)
  obj = ROUTE.fetch(hash.fetch(:operation).intern).allocate
  obj.send(:restore, hash)
  obj
end

Instance Method Details

#arguments(task) ⇒ Object



722
# File 'lib/bitferry.rb', line 722

def arguments(task) = process_options + ['--crypt-remote', encrypted(task).root.to_s]

#configure(task) ⇒ Object



716
# File 'lib/bitferry.rb', line 716

def configure(task) = install_token(task)

#create(password, **opts) ⇒ Object



707
# File 'lib/bitferry.rb', line 707

def create(password, **opts) = initialize(Rclone.obscure(password), **opts)

#externalizeObject



713
# File 'lib/bitferry.rb', line 713

def externalize = process_options.empty? ? {} : { rclone: process_options }

#install_token(task) ⇒ Object

Raises:

  • (TypeError)


725
726
727
728
729
# File 'lib/bitferry.rb', line 725

def install_token(task)
  x = decrypted(task)
  raise TypeError, 'unsupported unencrypted endpoint type' unless x.is_a?(Endpoint::Bitferry)
  Volume[x.volume_tag].vault[task.tag] = @token # Token is stored on the decrypted end only
end

#obtain_token(task) ⇒ Object



732
# File 'lib/bitferry.rb', line 732

def obtain_token(task) = Volume[decrypted(task).volume_tag].vault.fetch(task.tag)

#process(task) ⇒ Object



719
# File 'lib/bitferry.rb', line 719

def process(task) = ENV['RCLONE_CRYPT_PASSWORD'] = obtain_token(task)

#process_optionsObject

As a mandatory option it should never be nil



698
# File 'lib/bitferry.rb', line 698

def process_options = @process_options.nil? ? [] : @process_options # As a mandatory option it should never be nil

#restore(hash) ⇒ Object



710
# File 'lib/bitferry.rb', line 710

def restore(hash) = @process_options = hash[:rclone]