Class: Fog::Local::Storage::File

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/storage/models/local/file.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#bodyObject



15
16
17
18
19
20
21
# File 'lib/fog/storage/models/local/file.rb', line 15

def body
  attributes[:body] ||= if last_modified
    collection.get(identity).body
  else
    ''
  end
end

#body=(new_body) ⇒ Object



23
24
25
# File 'lib/fog/storage/models/local/file.rb', line 23

def body=(new_body)
  attributes[:body] = new_body
end

#content_typeObject



27
28
29
30
31
32
33
# File 'lib/fog/storage/models/local/file.rb', line 27

def content_type
  @content_type ||= begin
    unless (mime_types = ::MIME::Types.of(key)).empty?
      mime_types.first.content_type
    end
  end
end

#destroyObject



39
40
41
42
43
# File 'lib/fog/storage/models/local/file.rb', line 39

def destroy
  requires :directory, :key
  ::File.delete(path)
  true
end

#directoryObject



35
36
37
# File 'lib/fog/storage/models/local/file.rb', line 35

def directory
  @directory
end

#public=(new_public) ⇒ Object



45
46
47
# File 'lib/fog/storage/models/local/file.rb', line 45

def public=(new_public)
  new_public
end

#public_urlObject



49
50
51
# File 'lib/fog/storage/models/local/file.rb', line 49

def public_url
  nil
end

#save(options = {}) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/fog/storage/models/local/file.rb', line 53

def save(options = {})
  requires :body, :directory, :key
  file = ::File.new(path, 'w')
  if body.is_a?(String)
    file.write(body)
  else
    file.write(body.read)
  end
  file.close
  merge_attributes(
    :content_length => ::File.size(path),
    :last_modified  => ::File.mtime(path)
  )
  true
end