Class: EtCcdClient::UploadedFile

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content_type: "text/plain", binary: false, original_filename: File.basename(path)) ⇒ UploadedFile

Returns a new instance of UploadedFile.



9
10
11
12
13
14
15
16
# File 'lib/et_ccd_client/uploaded_file.rb', line 9

def initialize(path, content_type: "text/plain", binary: false, original_filename: File.basename(path))
  raise "#{path} file does not exist" unless ::File.exist?(path)
  @content_type = content_type
  @original_filename = original_filename
  @tempfile = Tempfile.new(encoding: Encoding::BINARY)
  @tempfile.binmode if binary
  FileUtils.copy_file(path, @tempfile.path)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args, &block) ⇒ Object

:nodoc:



31
32
33
# File 'lib/et_ccd_client/uploaded_file.rb', line 31

def method_missing(method_name, *args, &block) #:nodoc:
  @tempfile.__send__(method_name, *args, &block)
end

Instance Attribute Details

#content_typeObject

The content type of the “uploaded” file



7
8
9
# File 'lib/et_ccd_client/uploaded_file.rb', line 7

def content_type
  @content_type
end

#original_filenameObject (readonly)

The filename, not including the path, of the “uploaded” file



4
5
6
# File 'lib/et_ccd_client/uploaded_file.rb', line 4

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path



18
19
20
# File 'lib/et_ccd_client/uploaded_file.rb', line 18

def path
  @tempfile.path
end

#respond_to?(*args) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/et_ccd_client/uploaded_file.rb', line 27

def respond_to?(*args)
  super or @tempfile.respond_to?(*args)
end

#to_sObject



22
23
24
# File 'lib/et_ccd_client/uploaded_file.rb', line 22

def to_s
  inspect
end