Class: Fog::Storage::AWS::Real::S3Streamer

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/aws/storage.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, signature, signer, date) ⇒ S3Streamer

Returns a new instance of S3Streamer.



648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
# File 'lib/fog/aws/storage.rb', line 648

def initialize(body, signature, signer, date)
  self.body = body
  self.date = date
  self.signature = signature
  self.initial_signature = signature
  self.signer = signer
  if body.respond_to?(:binmode)
    body.binmode
  end

  if body.respond_to?(:pos=)
    body.pos = 0
  end

end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def body
  @body
end

#dateObject

Returns the value of attribute date.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def date
  @date
end

#finishedObject

Returns the value of attribute finished.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def finished
  @finished
end

#initial_signatureObject

Returns the value of attribute initial_signature.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def initial_signature
  @initial_signature
end

#signatureObject

Returns the value of attribute signature.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def signature
  @signature
end

#signerObject

Returns the value of attribute signer.



647
648
649
# File 'lib/fog/aws/storage.rb', line 647

def signer
  @signer
end

Instance Method Details

#callObject



672
673
674
675
676
677
678
# File 'lib/fog/aws/storage.rb', line 672

def call
  if finished
    ''
  else
    next_chunk
  end
end

#next_chunkObject



680
681
682
683
684
685
686
687
688
# File 'lib/fog/aws/storage.rb', line 680

def next_chunk
  data = body.read(0x10000)
  if data.nil?
    self.finished = true
    data = ''
  end
  self.signature = sign_chunk(data, signature)
  "#{data.length.to_s(16)};chunk-signature=#{signature}\r\n#{data}\r\n"
end

#rewindObject

called if excon wants to retry the request. As well as rewinding the body we must also reset the signature



666
667
668
669
670
# File 'lib/fog/aws/storage.rb', line 666

def rewind
  self.signature = initial_signature
  self.finished = false
  body.rewind
end

#sign_chunk(data, previous_signature) ⇒ Object



691
692
693
694
695
696
697
698
699
700
701
702
# File 'lib/fog/aws/storage.rb', line 691

def sign_chunk(data, previous_signature)
  string_to_sign = <<-DATA
AWS4-HMAC-SHA256-PAYLOAD
#{date.to_iso8601_basic}
#{signer.credential_scope(date)}
#{previous_signature}
#{OpenSSL::Digest::SHA256.hexdigest('')}
#{OpenSSL::Digest::SHA256.hexdigest(data)}
DATA
  hmac = signer.derived_hmac(date)
  hmac.sign(string_to_sign.strip).unpack('H*').first
end