Class: Files::File

Inherits:
Object
  • Object
show all
Defined in:
lib/files.com/models/file.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ File

Returns a new instance of File.



188
189
190
191
192
193
194
195
# File 'lib/files.com/models/file.rb', line 188

def initialize(*args)
  @attributes = (args[0].is_a?(Hash) && args[0]) || {}
  @options = (args[1].is_a?(Hash) && args[1]) || {}
  @attributes[:path] = args[0] if args[0].is_a?(String)
  @mode = args[1] || 'r' if args[1].is_a?(String)
  @write_io = StringIO.new
  @bytes_written = 0
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



5
6
7
# File 'lib/files.com/models/file.rb', line 5

def attributes
  @attributes
end

#lineno(*_args) ⇒ Object



408
409
410
# File 'lib/files.com/models/file.rb', line 408

def lineno(*_args)
  @lineno ||= 0
end

#modeObject (readonly)

Returns the value of attribute mode.



6
7
8
# File 'lib/files.com/models/file.rb', line 6

def mode
  @mode
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/files.com/models/file.rb', line 5

def options
  @options
end

#posObject



434
435
436
# File 'lib/files.com/models/file.rb', line 434

def pos
  @pos ||= 0
end

#syncObject



516
517
518
# File 'lib/files.com/models/file.rb', line 516

def sync
  @sync ||= false
end

Class Method Details

.binread(name, *args) ⇒ Object



8
9
10
# File 'lib/files.com/models/file.rb', line 8

def self.binread(name, *args)
  new(name).read(*args)
end

.binwrite(name, *args) ⇒ Object



12
13
14
# File 'lib/files.com/models/file.rb', line 12

def self.binwrite(name, *args)
  new(name).write(*args)
end

.chmod(*_args) ⇒ Object



16
17
18
# File 'lib/files.com/models/file.rb', line 16

def self.chmod(*_args)
  raise NotImplementedError
end

.chown(*_args) ⇒ Object



20
21
22
# File 'lib/files.com/models/file.rb', line 20

def self.chown(*_args)
  raise NotImplementedError
end

.client(options = {}) ⇒ Object



24
25
26
# File 'lib/files.com/models/file.rb', line 24

def self.client(options = {})
  options[:client] || ApiClient.active_client
end

.copy(old_path, new_path) ⇒ Object



28
29
30
# File 'lib/files.com/models/file.rb', line 28

def self.copy(old_path, new_path)
  FileAction.copy(old_path, destination: new_path)
end

.copy_stream(*_args) ⇒ Object



32
33
34
# File 'lib/files.com/models/file.rb', line 32

def self.copy_stream(*_args)
  raise NotImplementedError
end

.create(path, params = {}, options = {}) ⇒ Object

Upload file

Parameters:

action - string - The action to perform.  Can be `append`, `attachment`, `end`, `upload`, `put`, or may not exist
etags[etag] (required) - array - etag identifier.
etags[part] (required) - array - Part number.
length - integer - Length of file.
mkdir_parents - boolean - Create parent directories if they do not exist?
part - integer - Part if uploading a part.
parts - integer - How many parts to fetch?
provided_mtime - string - User provided modification time.
ref - string -
restart - integer - File byte offset to restart from.
size - integer - Size of file.
structure - string - If copying folder, copy just the structure?
with_rename - boolean - Allow file rename instead of overwrite?


937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
# File 'lib/files.com/models/file.rb', line 937

def self.create(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: length must be an Integer") if params.dig(:length) and !params.dig(:length).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: part must be an Integer") if params.dig(:part) and !params.dig(:part).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: parts must be an Integer") if params.dig(:parts) and !params.dig(:parts).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: provided_mtime must be an String") if params.dig(:provided_mtime) and !params.dig(:provided_mtime).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ref must be an String") if params.dig(:ref) and !params.dig(:ref).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: restart must be an Integer") if params.dig(:restart) and !params.dig(:restart).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: size must be an Integer") if params.dig(:size) and !params.dig(:size).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: structure must be an String") if params.dig(:structure) and !params.dig(:structure).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/files/#{URI.encode_www_form_component(params[:path])}", :post, params, options)
  File.new(response.data, options)
end

.delete(path, params = {}, options = {}) ⇒ Object

Parameters:

recursive - boolean - If true, will recursively delete folers.  Otherwise, will error on non-empty folders.  For legacy reasons, this parameter may also be provided as the HTTP header `Depth: Infinity`


973
974
975
976
977
978
979
980
981
# File 'lib/files.com/models/file.rb', line 973

def self.delete(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, _options = Api.send_request("/files/#{URI.encode_www_form_component(params[:path])}", :delete, params, options)
  response.data
end

.destroy(path, params = {}, options = {}) ⇒ Object



983
984
985
# File 'lib/files.com/models/file.rb', line 983

def self.destroy(path, params = {}, options = {})
  delete(path, params, options)
end

.directory?(path, options = {}) ⇒ Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/files.com/models/file.rb', line 36

def self.directory?(path, options = {})
  find(path, {}, options).type == "directory"
end

.download(path, params = {}, options = {}) ⇒ Object

Download file

Parameters:

action - string - Can be blank, `redirect` or `stat`.  If set to `stat`, we will return file information but without a download URL, and without logging a download.  If set to `redirect` we will serve a 302 redirect directly to the file.  This is used for integrations with Zapier, and is not recommended for most integrations.
with_previews - boolean - Include file preview information?
with_priority_color - boolean - Include file priority color information?


910
911
912
913
914
915
916
917
918
919
# File 'lib/files.com/models/file.rb', line 910

def self.download(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/files/#{URI.encode_www_form_component(params[:path])}", :get, params, options)
  File.new(response.data, options)
end

.download_file(path, local_path = nil) ⇒ Object



40
41
42
43
# File 'lib/files.com/models/file.rb', line 40

def self.download_file(path, local_path = nil)
  local_path ||= File.basename(path)
  new(path).download_file(local_path)
end

.exist?(path, options = {}) ⇒ Boolean

Returns:

  • (Boolean)


45
46
47
48
49
50
51
52
53
54
# File 'lib/files.com/models/file.rb', line 45

def self.exist?(path, options = {})
  find(path, {}, options)
  true
rescue ApiError => e
  if e.code == 404
    false
  else
    raise e
  end
end

.exists?(path, options = {}) ⇒ Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/files.com/models/file.rb', line 56

def self.exists?(path, options = {})
  exist?(path, options)
end

.find(path, params = {}, options = {}) ⇒ Object



60
61
62
63
# File 'lib/files.com/models/file.rb', line 60

def self.find(path, params = {}, options = {})
  params[:action] = "stat"
  download(path, params, options)
end

.for_fd(*_args) ⇒ Object



65
66
67
# File 'lib/files.com/models/file.rb', line 65

def self.for_fd(*_args)
  raise NotImplementedError
end

.foreach(name, *args, &block) ⇒ Object



69
70
71
# File 'lib/files.com/models/file.rb', line 69

def self.foreach(name, *args, &block)
  new(name).each(*args, &block)
end

.get(path, params = {}, options = {}) ⇒ Object



73
74
75
# File 'lib/files.com/models/file.rb', line 73

def self.get(path, params = {}, options = {})
  find(path, params, options)
end

.identical?(path1, path2) ⇒ Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/files.com/models/file.rb', line 77

def self.identical?(path1, path2)
  new(path1).crc32 == new(path2).crc32
end

.lstat(path) ⇒ Object



81
82
83
# File 'lib/files.com/models/file.rb', line 81

def self.lstat(path)
  new(path).stat
end

.move(old_path, new_path) ⇒ Object



85
86
87
# File 'lib/files.com/models/file.rb', line 85

def self.move(old_path, new_path)
  FileAction.move(old_path, destination: new_path)
end

.mtime(path) ⇒ Object



89
90
91
# File 'lib/files.com/models/file.rb', line 89

def self.mtime(path)
  new(path).mtime
end

.open(path, mode = "r", &block) ⇒ Object



93
94
95
96
97
98
99
100
# File 'lib/files.com/models/file.rb', line 93

def self.open(path, mode = "r", &block)
  file = new(path, mode)
  if block
    yield file
    file.close
  end
  file
end

.owned?(_path) ⇒ Boolean

Returns:

  • (Boolean)

Raises:



102
103
104
# File 'lib/files.com/models/file.rb', line 102

def self.owned?(_path)
  raise NotImplementedError
end

.pipe(*_args) ⇒ Object



106
107
108
# File 'lib/files.com/models/file.rb', line 106

def self.pipe(*_args)
  raise NotImplementedError
end

.popen(*_args) ⇒ Object



110
111
112
# File 'lib/files.com/models/file.rb', line 110

def self.popen(*_args)
  raise NotImplementedError
end

.read(name, *args) ⇒ Object



114
115
116
# File 'lib/files.com/models/file.rb', line 114

def self.read(name, *args)
  new(name).read(*args)
end

.readable?(path) ⇒ Boolean

Returns:

  • (Boolean)


118
119
120
# File 'lib/files.com/models/file.rb', line 118

def self.readable?(path)
  new(path).stat.permissions.include?("read")
end

.readlines(name, *args) ⇒ Object



122
123
124
# File 'lib/files.com/models/file.rb', line 122

def self.readlines(name, *args)
  new(name).readlines(*args)
end

.rename(old_path, new_path) ⇒ Object



126
127
128
# File 'lib/files.com/models/file.rb', line 126

def self.rename(old_path, new_path)
  FileAction.move(old_path, destination: new_path)
end

.select(*_args) ⇒ Object



130
131
132
# File 'lib/files.com/models/file.rb', line 130

def self.select(*_args)
  raise NotImplementedError
end

.stat(path) ⇒ Object



134
135
136
# File 'lib/files.com/models/file.rb', line 134

def self.stat(path)
  new(path).stat
end

.sysopen(*_args) ⇒ Object



138
139
140
# File 'lib/files.com/models/file.rb', line 138

def self.sysopen(*_args)
  raise NotImplementedError
end

.try_convert(*_args) ⇒ Object



142
143
144
# File 'lib/files.com/models/file.rb', line 142

def self.try_convert(*_args)
  raise NotImplementedError
end


146
147
148
# File 'lib/files.com/models/file.rb', line 146

def self.unlink(*paths)
  paths.map { |p| delete(p) }
end

.update(path, params = {}, options = {}) ⇒ Object

Parameters:

provided_mtime - string - Modified time of file.
priority_color - string - Priority/Bookmark color of file.


959
960
961
962
963
964
965
966
967
968
969
# File 'lib/files.com/models/file.rb', line 959

def self.update(path, params = {}, options = {})
  params ||= {}
  params[:path] = path
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: provided_mtime must be an String") if params.dig(:provided_mtime) and !params.dig(:provided_mtime).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: priority_color must be an String") if params.dig(:priority_color) and !params.dig(:priority_color).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  response, options = Api.send_request("/files/#{URI.encode_www_form_component(params[:path])}", :patch, params, options)
  File.new(response.data, options)
end

.upload_chunks(io, path, options, upload = nil, etags = []) ⇒ Object



150
151
152
153
154
155
156
157
158
159
160
# File 'lib/files.com/models/file.rb', line 150

def self.upload_chunks(io, path, options, upload = nil, etags = [])
  etags ||= []
  loop do
    upload = FileAction.begin_upload(path, { ref: upload&.ref, part: (upload&.part_number || 0) + 1 }, options)
    buf = io.read(upload.partsize) || ""
    method = upload.http_method.downcase.to_sym
    response = client(options).remote_request(method, upload.upload_uri, { "Content-Length": buf.length.to_s }, buf)
    etags << { etag: response.headers["ETag"], part: upload.part_number }
    return upload, etags if io.eof?
  end
end

.upload_file(path, destination = nil, options = {}) ⇒ Object



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/files.com/models/file.rb', line 162

def self.upload_file(path, destination = nil, options = {})
  local_file = ::File.open(path, 'r')
  destination ||= File.basename(path)
  upload, etags = upload_chunks(local_file, destination, options)

  params = {
    action: "end",
    etags: etags,
    provided_mtime: local_file.mtime.to_s,
    ref: upload.ref,
    size: local_file.size
  }

  create(destination, params, options)
ensure
  local_file.close
end

.write(*_args) ⇒ Object



180
181
182
# File 'lib/files.com/models/file.rb', line 180

def self.write(*_args)
  raise NotImplementedError
end

.zero?(path) ⇒ Boolean

Returns:

  • (Boolean)


184
185
186
# File 'lib/files.com/models/file.rb', line 184

def self.zero?(path)
  new(path).empty?
end

Instance Method Details

#actionObject

string - The action to perform. Can be ‘append`, `attachment`, `end`, `upload`, `put`, or may not exist



732
733
734
# File 'lib/files.com/models/file.rb', line 732

def action
  @attributes[:action]
end

#action=(value) ⇒ Object



736
737
738
# File 'lib/files.com/models/file.rb', line 736

def action=(value)
  @attributes[:action] = value
end

#advise(*_args) ⇒ Object



197
# File 'lib/files.com/models/file.rb', line 197

def advise(*_args); end

#atimeObject



199
200
201
# File 'lib/files.com/models/file.rb', line 199

def atime
  mtime
end

#autoclose=(*_args) ⇒ Object



203
# File 'lib/files.com/models/file.rb', line 203

def autoclose=(*_args); end

#autoclose?(*_args) ⇒ Boolean

Returns:

  • (Boolean)


205
# File 'lib/files.com/models/file.rb', line 205

def autoclose?(*_args); end

#binmodeObject



207
208
209
# File 'lib/files.com/models/file.rb', line 207

def binmode
  binmode?
end

#binmode?Boolean

Returns:

  • (Boolean)


211
212
213
# File 'lib/files.com/models/file.rb', line 211

def binmode?
  true
end

#birthtimeObject



215
216
217
# File 'lib/files.com/models/file.rb', line 215

def birthtime
  raise NotImplementedError
end

#bytesObject



219
220
221
# File 'lib/files.com/models/file.rb', line 219

def bytes
  read_io.bytes
end

#charsObject



223
224
225
# File 'lib/files.com/models/file.rb', line 223

def chars
  read_io.chars
end

#chmod(*_args) ⇒ Object



227
228
229
# File 'lib/files.com/models/file.rb', line 227

def chmod(*_args)
  raise NotImplementedError
end

#chown(*_args) ⇒ Object



231
232
233
# File 'lib/files.com/models/file.rb', line 231

def chown(*_args)
  raise NotImplementedError
end

#clientObject



235
236
237
# File 'lib/files.com/models/file.rb', line 235

def client
  options[:client] || ApiClient.active_client
end

#closeObject



239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# File 'lib/files.com/models/file.rb', line 239

def close
  flush

  if @upload
    end_options = {
      "action": "end",
      "etags": @etags,
      "provided_mtime": Time.now.to_s,
      "ref": @upload.ref,
      "size": @bytes_written
    }

    file = File.create(path, end_options)
    @attributes = file.attributes
    @upload = nil
  end
  @write_io.close
end

#close_on_exec=(*args) ⇒ Object



262
263
264
# File 'lib/files.com/models/file.rb', line 262

def close_on_exec=(*args)
  @write_io.close_on_exec = *args
end

#close_on_exec?(*args) ⇒ Boolean

Returns:

  • (Boolean)


258
259
260
# File 'lib/files.com/models/file.rb', line 258

def close_on_exec?(*args)
  @write_io.close_on_exec? *args
end

#close_read(*args) ⇒ Object



266
267
268
# File 'lib/files.com/models/file.rb', line 266

def close_read(*args)
  @write_io.close_read *args
end

#close_write(*args) ⇒ Object



270
271
272
# File 'lib/files.com/models/file.rb', line 270

def close_write(*args)
  @write_io.close_write *args
end

#closed?(*args) ⇒ Boolean

Returns:

  • (Boolean)


274
275
276
# File 'lib/files.com/models/file.rb', line 274

def closed?(*args)
  @write_io.closed? *args
end

#codepoints(*args, &block) ⇒ Object



278
279
280
# File 'lib/files.com/models/file.rb', line 278

def codepoints(*args, &block)
  @write_io.codepoints *args, &block
end

#copy(destination) ⇒ Object



282
283
284
# File 'lib/files.com/models/file.rb', line 282

def copy(destination)
  File.copy(path, destination)
end

#crc32Object

string - File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.



642
643
644
# File 'lib/files.com/models/file.rb', line 642

def crc32
  @attributes[:crc32]
end

#crc32=(value) ⇒ Object



646
647
648
# File 'lib/files.com/models/file.rb', line 646

def crc32=(value)
  @attributes[:crc32] = value
end

#create(params = {}) ⇒ Object

Upload file

Parameters:

action - string - The action to perform.  Can be `append`, `attachment`, `end`, `upload`, `put`, or may not exist
etags[etag] (required) - array - etag identifier.
etags[part] (required) - array - Part number.
length - integer - Length of file.
mkdir_parents - boolean - Create parent directories if they do not exist?
part - integer - Part if uploading a part.
parts - integer - How many parts to fetch?
provided_mtime - string - User provided modification time.
ref - string -
restart - integer - File byte offset to restart from.
size - integer - Size of file.
structure - string - If copying folder, copy just the structure?
with_rename - boolean - Allow file rename instead of overwrite?


845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
# File 'lib/files.com/models/file.rb', line 845

def create(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: length must be an Integer") if params.dig(:length) and !params.dig(:length).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: part must be an Integer") if params.dig(:part) and !params.dig(:part).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: parts must be an Integer") if params.dig(:parts) and !params.dig(:parts).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: provided_mtime must be an String") if params.dig(:provided_mtime) and !params.dig(:provided_mtime).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ref must be an String") if params.dig(:ref) and !params.dig(:ref).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: restart must be an Integer") if params.dig(:restart) and !params.dig(:restart).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: size must be an Integer") if params.dig(:size) and !params.dig(:size).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: structure must be an String") if params.dig(:structure) and !params.dig(:structure).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  Api.send_request("/files/#{URI.encode_www_form_component(@attributes[:path])}", :post, params, @options)
end

#ctime(*_args) ⇒ Object



286
287
288
# File 'lib/files.com/models/file.rb', line 286

def ctime(*_args)
  mtime
end

#delete(params = {}) ⇒ Object

Parameters:

recursive - boolean - If true, will recursively delete folers.  Otherwise, will error on non-empty folders.  For legacy reasons, this parameter may also be provided as the HTTP header `Depth: Infinity`


881
882
883
884
885
886
887
888
889
# File 'lib/files.com/models/file.rb', line 881

def delete(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  Api.send_request("/files/#{URI.encode_www_form_component(@attributes[:path])}", :delete, params, @options)
end

#destroy(params = {}) ⇒ Object



891
892
893
# File 'lib/files.com/models/file.rb', line 891

def destroy(params = {})
  delete(params)
end

#display_nameObject

string - File/Folder display name



597
598
599
# File 'lib/files.com/models/file.rb', line 597

def display_name
  @attributes[:display_name]
end

#display_name=(value) ⇒ Object



601
602
603
# File 'lib/files.com/models/file.rb', line 601

def display_name=(value)
  @attributes[:display_name] = value
end

#download(params = {}) ⇒ Object

Download file

Parameters:

action - string - Can be blank, `redirect` or `stat`.  If set to `stat`, we will return file information but without a download URL, and without logging a download.  If set to `redirect` we will serve a 302 redirect directly to the file.  This is used for integrations with Zapier, and is not recommended for most integrations.
with_previews - boolean - Include file preview information?
with_priority_color - boolean - Include file priority color information?


818
819
820
821
822
823
824
825
826
827
# File 'lib/files.com/models/file.rb', line 818

def download(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  Api.send_request("/files/#{URI.encode_www_form_component(@attributes[:path])}", :get, params, @options)
end

#download_content(io) ⇒ Object



304
305
306
307
# File 'lib/files.com/models/file.rb', line 304

def download_content(io)
  response = client.remote_request(:get, download_uri_with_load)
  io.write(response.body)
end

#download_file(output_file) ⇒ Object



298
299
300
301
302
# File 'lib/files.com/models/file.rb', line 298

def download_file(output_file)
  ::File.open(output_file, 'wb') do |file|
    download_content(file)
  end
end

#download_uriObject

string - Link to download file. Provided only in response to a download request.



696
697
698
# File 'lib/files.com/models/file.rb', line 696

def download_uri
  @attributes[:download_uri]
end

#download_uri=(value) ⇒ Object



700
701
702
# File 'lib/files.com/models/file.rb', line 700

def download_uri=(value)
  @attributes[:download_uri] = value
end

#download_uri_with_loadObject



290
291
292
293
294
295
296
# File 'lib/files.com/models/file.rb', line 290

def download_uri_with_load
  return download_uri if download_uri

  file = File.download(path, {}, @options)
  @attributes = file.attributes
  download_uri
end

#each(*args, &block) ⇒ Object



309
310
311
# File 'lib/files.com/models/file.rb', line 309

def each(*args, &block)
  read_io.each *args, &block
end

#each_byte(*args, &block) ⇒ Object



313
314
315
# File 'lib/files.com/models/file.rb', line 313

def each_byte(*args, &block)
  read_io.each_byte *args, &block
end

#each_char(*args, &block) ⇒ Object



317
318
319
# File 'lib/files.com/models/file.rb', line 317

def each_char(*args, &block)
  read_io.each_char *args, &block
end

#each_codepoint(*args, &block) ⇒ Object



321
322
323
# File 'lib/files.com/models/file.rb', line 321

def each_codepoint(*args, &block)
  read_io.each_codepoint *args, &block
end

#each_line(*args, &block) ⇒ Object



325
326
327
# File 'lib/files.com/models/file.rb', line 325

def each_line(*args, &block)
  each(*args, &block)
end

#empty?Boolean

Returns:

  • (Boolean)


329
330
331
# File 'lib/files.com/models/file.rb', line 329

def empty?
  size == 0
end

#eofObject



333
334
335
# File 'lib/files.com/models/file.rb', line 333

def eof
  eof?
end

#eof?Boolean

Returns:

  • (Boolean)


337
338
339
# File 'lib/files.com/models/file.rb', line 337

def eof?
  @write_io.eof?
end

#external_encoding(*args) ⇒ Object



341
342
343
# File 'lib/files.com/models/file.rb', line 341

def external_encoding(*args)
  internal_encoding *args
end

#fcntl(*_args) ⇒ Object



345
346
347
# File 'lib/files.com/models/file.rb', line 345

def fcntl(*_args)
  raise NotImplementedError
end

#fdatasync(*_args) ⇒ Object



349
350
351
# File 'lib/files.com/models/file.rb', line 349

def fdatasync(*_args)
  flush
end

#fileno(*_args) ⇒ Object



353
354
355
# File 'lib/files.com/models/file.rb', line 353

def fileno(*_args)
  id
end

#flock(*_args) ⇒ Object



357
358
359
# File 'lib/files.com/models/file.rb', line 357

def flock(*_args)
  raise NotImplementedError
end

#flush(*_args) ⇒ Object



361
362
363
364
365
366
367
368
369
# File 'lib/files.com/models/file.rb', line 361

def flush(*_args)
  if mode.include? "w"
    @write_io.rewind
    @bytes_written += @write_io.size
    @upload, @etags = File.upload_chunks(@write_io, path, options, @upload, @etags)
  elsif mode.include? "a"
    raise NotImplementedError
  end
end

#fsync(*args) ⇒ Object



371
372
373
# File 'lib/files.com/models/file.rb', line 371

def fsync(*args)
  flush *args
end

#getbyte(*args) ⇒ Object



375
376
377
# File 'lib/files.com/models/file.rb', line 375

def getbyte(*args)
  read_io.getbyte *args
end

#getc(*args) ⇒ Object



379
380
381
# File 'lib/files.com/models/file.rb', line 379

def getc(*args)
  read_io.getc *args
end

#gets(*args) ⇒ Object



383
384
385
# File 'lib/files.com/models/file.rb', line 383

def gets(*args)
  read_io.gets *args
end

#idObject

int64 - File/Folder ID



579
580
581
# File 'lib/files.com/models/file.rb', line 579

def id
  @attributes[:id]
end

#id=(value) ⇒ Object



583
584
585
# File 'lib/files.com/models/file.rb', line 583

def id=(value)
  @attributes[:id] = value
end

#internal_encoding(*_args) ⇒ Object



396
397
398
# File 'lib/files.com/models/file.rb', line 396

def internal_encoding(*_args)
  "".encoding
end

#ioctl(*_args) ⇒ Object



400
401
402
# File 'lib/files.com/models/file.rb', line 400

def ioctl(*_args)
  raise NotImplementedError
end

#isatty(*_args) ⇒ Object



404
405
406
# File 'lib/files.com/models/file.rb', line 404

def isatty(*_args)
  false
end

#lengthObject

int64 - Length of file.



741
742
743
# File 'lib/files.com/models/file.rb', line 741

def length
  @attributes[:length]
end

#length=(value) ⇒ Object



745
746
747
# File 'lib/files.com/models/file.rb', line 745

def length=(value)
  @attributes[:length] = value
end

#lines(*args, &block) ⇒ Object



414
415
416
# File 'lib/files.com/models/file.rb', line 414

def lines(*args, &block)
  each_line *args, &block
end

#lstat(*_args) ⇒ Object



418
419
420
# File 'lib/files.com/models/file.rb', line 418

def lstat(*_args)
  stats
end

#md5Object

string - File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.



651
652
653
# File 'lib/files.com/models/file.rb', line 651

def md5
  @attributes[:md5]
end

#md5=(value) ⇒ Object



655
656
657
# File 'lib/files.com/models/file.rb', line 655

def md5=(value)
  @attributes[:md5] = value
end

#mime_typeObject

string - MIME Type. This is determined by the filename extension and is not stored separately internally.



660
661
662
# File 'lib/files.com/models/file.rb', line 660

def mime_type
  @attributes[:mime_type]
end

#mime_type=(value) ⇒ Object



664
665
666
# File 'lib/files.com/models/file.rb', line 664

def mime_type=(value)
  @attributes[:mime_type] = value
end

#mkdir_parentsObject

boolean - Create parent directories if they do not exist?



750
751
752
# File 'lib/files.com/models/file.rb', line 750

def mkdir_parents
  @attributes[:mkdir_parents]
end

#mkdir_parents=(value) ⇒ Object



754
755
756
# File 'lib/files.com/models/file.rb', line 754

def mkdir_parents=(value)
  @attributes[:mkdir_parents] = value
end

#move(destination) ⇒ Object



422
423
424
# File 'lib/files.com/models/file.rb', line 422

def move(destination)
  File.move(path, destination)
end

#mtimeObject

date-time - File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.



624
625
626
# File 'lib/files.com/models/file.rb', line 624

def mtime
  @attributes[:mtime]
end

#mtime=(value) ⇒ Object



628
629
630
# File 'lib/files.com/models/file.rb', line 628

def mtime=(value)
  @attributes[:mtime] = value
end

#mv(destination) ⇒ Object



426
427
428
# File 'lib/files.com/models/file.rb', line 426

def mv(destination)
  File.move(path, destination)
end

#partObject

int64 - Part if uploading a part.



759
760
761
# File 'lib/files.com/models/file.rb', line 759

def part
  @attributes[:part]
end

#part=(value) ⇒ Object



763
764
765
# File 'lib/files.com/models/file.rb', line 763

def part=(value)
  @attributes[:part] = value
end

#partsObject

int64 - How many parts to fetch?



768
769
770
# File 'lib/files.com/models/file.rb', line 768

def parts
  @attributes[:parts]
end

#parts=(value) ⇒ Object



772
773
774
# File 'lib/files.com/models/file.rb', line 772

def parts=(value)
  @attributes[:parts] = value
end

#pathObject

string - File/Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.



588
589
590
# File 'lib/files.com/models/file.rb', line 588

def path
  @attributes[:path]
end

#path=(value) ⇒ Object



592
593
594
# File 'lib/files.com/models/file.rb', line 592

def path=(value)
  @attributes[:path] = value
end

#permissionsObject

string - A short string representing the current user’s permissions. Can be ‘r`,`w`,`p`, or any combination



678
679
680
# File 'lib/files.com/models/file.rb', line 678

def permissions
  @attributes[:permissions]
end

#permissions=(value) ⇒ Object



682
683
684
# File 'lib/files.com/models/file.rb', line 682

def permissions=(value)
  @attributes[:permissions] = value
end

#pid(*_args) ⇒ Object



430
431
432
# File 'lib/files.com/models/file.rb', line 430

def pid(*_args)
  Process.pid
end

#pread(*args) ⇒ Object



440
441
442
# File 'lib/files.com/models/file.rb', line 440

def pread(*args)
  read_io.pread *args
end

#previewObject

File preview



723
724
725
# File 'lib/files.com/models/file.rb', line 723

def preview
  @attributes[:preview]
end

#preview=(value) ⇒ Object



727
728
729
# File 'lib/files.com/models/file.rb', line 727

def preview=(value)
  @attributes[:preview] = value
end

#preview_idObject

int64 - File preview ID



714
715
716
# File 'lib/files.com/models/file.rb', line 714

def preview_id
  @attributes[:preview_id]
end

#preview_id=(value) ⇒ Object



718
719
720
# File 'lib/files.com/models/file.rb', line 718

def preview_id=(value)
  @attributes[:preview_id] = value
end


444
445
446
# File 'lib/files.com/models/file.rb', line 444

def print(*args)
  @write_io.print *args
end

#printf(*args) ⇒ Object



448
449
450
# File 'lib/files.com/models/file.rb', line 448

def printf(*args)
  @write_io.printf *args
end

#priority_colorObject

string - Bookmark/priority color of file/folder



705
706
707
# File 'lib/files.com/models/file.rb', line 705

def priority_color
  @attributes[:priority_color]
end

#priority_color=(value) ⇒ Object



709
710
711
# File 'lib/files.com/models/file.rb', line 709

def priority_color=(value)
  @attributes[:priority_color] = value
end

#provided_mtimeObject

date-time - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.



633
634
635
# File 'lib/files.com/models/file.rb', line 633

def provided_mtime
  @attributes[:provided_mtime]
end

#provided_mtime=(value) ⇒ Object



637
638
639
# File 'lib/files.com/models/file.rb', line 637

def provided_mtime=(value)
  @attributes[:provided_mtime] = value
end

#putc(*args) ⇒ Object



452
453
454
# File 'lib/files.com/models/file.rb', line 452

def putc(*args)
  @write_io.putc *args
end

#puts(*args) ⇒ Object



456
457
458
# File 'lib/files.com/models/file.rb', line 456

def puts(*args)
  @write_io.puts *args
end

#pwrite(*args) ⇒ Object



460
461
462
# File 'lib/files.com/models/file.rb', line 460

def pwrite(*args)
  @write_io.pwrite *args
end

#read(*args) ⇒ Object



464
465
466
# File 'lib/files.com/models/file.rb', line 464

def read(*args)
  read_io.read *args
end

#read_ioObject



387
388
389
390
391
392
393
394
# File 'lib/files.com/models/file.rb', line 387

def read_io
  @read_io ||= begin
    io = StringIO.new
    download_content(io)
    io.rewind
    io
  end
end

#read_nonblock(*args) ⇒ Object



468
469
470
# File 'lib/files.com/models/file.rb', line 468

def read_nonblock(*args)
  read_io.read_nonblock *args
end

#readbyte(*args) ⇒ Object



472
473
474
# File 'lib/files.com/models/file.rb', line 472

def readbyte(*args)
  read_io.readbyte *args
end

#readchar(*args) ⇒ Object



476
477
478
# File 'lib/files.com/models/file.rb', line 476

def readchar(*args)
  read_io.readchar *args
end

#readline(*args) ⇒ Object



480
481
482
# File 'lib/files.com/models/file.rb', line 480

def readline(*args)
  read_io.readline *args
end

#readlines(*args) ⇒ Object



484
485
486
# File 'lib/files.com/models/file.rb', line 484

def readlines(*args)
  io.readlines(*args)
end

#readpartial(*args) ⇒ Object



488
489
490
# File 'lib/files.com/models/file.rb', line 488

def readpartial(*args)
  read_io.readpartial *args
end

#refObject

string -



777
778
779
# File 'lib/files.com/models/file.rb', line 777

def ref
  @attributes[:ref]
end

#ref=(value) ⇒ Object



781
782
783
# File 'lib/files.com/models/file.rb', line 781

def ref=(value)
  @attributes[:ref] = value
end

#regionObject

string - Region location



669
670
671
# File 'lib/files.com/models/file.rb', line 669

def region
  @attributes[:region]
end

#region=(value) ⇒ Object



673
674
675
# File 'lib/files.com/models/file.rb', line 673

def region=(value)
  @attributes[:region] = value
end

#rename(destination) ⇒ Object



492
493
494
# File 'lib/files.com/models/file.rb', line 492

def rename(destination)
  File.rename(path, destination)
end

#reopen(*_args) ⇒ Object



496
497
498
# File 'lib/files.com/models/file.rb', line 496

def reopen(*_args)
  raise NotImplementedError
end

#restartObject

int64 - File byte offset to restart from.



786
787
788
# File 'lib/files.com/models/file.rb', line 786

def restart
  @attributes[:restart]
end

#restart=(value) ⇒ Object



790
791
792
# File 'lib/files.com/models/file.rb', line 790

def restart=(value)
  @attributes[:restart] = value
end

#rewindObject



500
501
502
# File 'lib/files.com/models/file.rb', line 500

def rewind
  @pos = 0
end

#saveObject



895
896
897
898
899
900
901
902
# File 'lib/files.com/models/file.rb', line 895

def save
  if @attributes[:path]
    update(@attributes)
  else
    new_obj = File.create(@attributes, @options)
    @attributes = new_obj.attributes
  end
end

#seek(pos) ⇒ Object



504
505
506
# File 'lib/files.com/models/file.rb', line 504

def seek(pos)
  @pos = pos
end

#set_encoding(*_args) ⇒ Object

rubocop:disable Naming/AccessorMethodName



508
509
510
# File 'lib/files.com/models/file.rb', line 508

def set_encoding(*_args) # rubocop:disable Naming/AccessorMethodName
  raise NotImplementedError
end

#sizeObject

int64 - File/Folder size



615
616
617
# File 'lib/files.com/models/file.rb', line 615

def size
  @attributes[:size]
end

#size=(value) ⇒ Object



619
620
621
# File 'lib/files.com/models/file.rb', line 619

def size=(value)
  @attributes[:size] = value
end

#stat(*_args) ⇒ Object



512
513
514
# File 'lib/files.com/models/file.rb', line 512

def stat(*_args)
  stats
end

#structureObject

string - If copying folder, copy just the structure?



795
796
797
# File 'lib/files.com/models/file.rb', line 795

def structure
  @attributes[:structure]
end

#structure=(value) ⇒ Object



799
800
801
# File 'lib/files.com/models/file.rb', line 799

def structure=(value)
  @attributes[:structure] = value
end

#subfolders_locked=(value) ⇒ Object



691
692
693
# File 'lib/files.com/models/file.rb', line 691

def subfolders_locked=(value)
  @attributes[:subfolders_locked?] = value
end

#subfolders_locked?Boolean

boolean - Are subfolders locked and unable to be modified?

Returns:

  • (Boolean)


687
688
689
# File 'lib/files.com/models/file.rb', line 687

def subfolders_locked?
  @attributes[:subfolders_locked?]
end

#sysread(*args) ⇒ Object



522
523
524
# File 'lib/files.com/models/file.rb', line 522

def sysread(*args)
  read *args
end

#sysseek(*args) ⇒ Object



526
527
528
# File 'lib/files.com/models/file.rb', line 526

def sysseek(*args)
  seek *args
end

#syswrite(*_args) ⇒ Object



530
531
532
# File 'lib/files.com/models/file.rb', line 530

def syswrite(*_args)
  raise NotImplementedError
end

#tellObject



534
535
536
# File 'lib/files.com/models/file.rb', line 534

def tell
  pos
end

#to_i(*_args) ⇒ Object



538
539
540
# File 'lib/files.com/models/file.rb', line 538

def to_i(*_args)
  fileno
end

#to_io(*_args) ⇒ Object



542
543
544
# File 'lib/files.com/models/file.rb', line 542

def to_io(*_args)
  @write_io
end

#to_path(*_args) ⇒ Object



546
547
548
# File 'lib/files.com/models/file.rb', line 546

def to_path(*_args)
  path
end

#truncate(*_args) ⇒ Object



550
551
552
# File 'lib/files.com/models/file.rb', line 550

def truncate(*_args)
  raise NotImplementedError
end

#tty?(*_args) ⇒ Boolean

Returns:

  • (Boolean)


554
555
556
# File 'lib/files.com/models/file.rb', line 554

def tty?(*_args)
  false
end

#typeObject

string - Type: ‘directory` or `file`.



606
607
608
# File 'lib/files.com/models/file.rb', line 606

def type
  @attributes[:type]
end

#type=(value) ⇒ Object



610
611
612
# File 'lib/files.com/models/file.rb', line 610

def type=(value)
  @attributes[:type] = value
end

#ungetbyte(*_args) ⇒ Object



558
559
560
# File 'lib/files.com/models/file.rb', line 558

def ungetbyte(*_args)
  raise NotImplementedError
end

#ungetc(*_args) ⇒ Object



562
563
564
# File 'lib/files.com/models/file.rb', line 562

def ungetc(*_args)
  raise NotImplementedError
end

#update(params = {}) ⇒ Object

Parameters:

provided_mtime - string - Modified time of file.
priority_color - string - Priority/Bookmark color of file.


867
868
869
870
871
872
873
874
875
876
877
# File 'lib/files.com/models/file.rb', line 867

def update(params = {})
  params ||= {}
  params[:path] = @attributes[:path]
  raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path]
  raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: provided_mtime must be an String") if params.dig(:provided_mtime) and !params.dig(:provided_mtime).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: priority_color must be an String") if params.dig(:priority_color) and !params.dig(:priority_color).is_a?(String)
  raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)

  Api.send_request("/files/#{URI.encode_www_form_component(@attributes[:path])}", :patch, params, @options)
end

#upload_file(local_file) ⇒ Object



566
567
568
# File 'lib/files.com/models/file.rb', line 566

def upload_file(local_file)
  File.upload_file(local_file. path)
end

#with_renameObject

boolean - Allow file rename instead of overwrite?



804
805
806
# File 'lib/files.com/models/file.rb', line 804

def with_rename
  @attributes[:with_rename]
end

#with_rename=(value) ⇒ Object



808
809
810
# File 'lib/files.com/models/file.rb', line 808

def with_rename=(value)
  @attributes[:with_rename] = value
end

#write(*args) ⇒ Object



570
571
572
# File 'lib/files.com/models/file.rb', line 570

def write(*args)
  @write_io.write *args
end

#write_nonblock(*args) ⇒ Object



574
575
576
# File 'lib/files.com/models/file.rb', line 574

def write_nonblock(*args)
  @write_io.write_nonblock *args
end