1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storage/models/local/file.rb
2011-01-26 15:56:50 -08:00

83 lines
1.7 KiB
Ruby

require 'fog/core/model'
module Fog
module Local
class Storage
class File < Fog::Model
identity :key, :aliases => 'Key'
attribute :content_length, :aliases => 'Content-Length', :type => :integer
# attribute :content_type, :aliases => 'Content-Type'
attribute :last_modified, :aliases => 'Last-Modified'
def body
attributes[:body] ||= if last_modified
collection.get(identity).body
else
''
end
end
def body=(new_body)
attributes[:body] = new_body
end
def content_type
@content_type ||= begin
unless (mime_types = ::MIME::Types.of(key)).empty?
mime_types.first.content_type
end
end
end
def directory
@directory
end
def destroy
requires :directory, :key
::File.delete(path)
true
end
def public=(new_public)
new_public
end
def public_url
nil
end
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
private
def directory=(new_directory)
@directory = new_directory
end
def path
connection.path_to(::File.join(directory.key, CGI.escape(key)))
end
end
end
end
end