2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/model'
|
2010-09-08 15:50:38 -04:00
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Local
|
|
|
|
class Storage
|
|
|
|
|
|
|
|
class File < Fog::Model
|
|
|
|
|
2010-09-21 13:54:15 -04:00
|
|
|
identity :key, :aliases => 'Key'
|
2010-09-08 15:50:38 -04:00
|
|
|
|
2011-01-26 18:56:50 -05:00
|
|
|
attribute :content_length, :aliases => 'Content-Length', :type => :integer
|
2010-09-08 15:50:38 -04:00
|
|
|
# attribute :content_type, :aliases => 'Content-Type'
|
|
|
|
attribute :last_modified, :aliases => 'Last-Modified'
|
|
|
|
|
|
|
|
def body
|
2010-11-19 16:45:45 -05:00
|
|
|
attributes[:body] ||= if last_modified
|
2010-09-08 15:50:38 -04:00
|
|
|
collection.get(identity).body
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-19 16:45:45 -05:00
|
|
|
def body=(new_body)
|
|
|
|
attributes[:body] = new_body
|
|
|
|
end
|
|
|
|
|
2011-01-26 18:56:39 -05:00
|
|
|
def content_type
|
|
|
|
@content_type ||= begin
|
|
|
|
unless (mime_types = ::MIME::Types.of(key)).empty?
|
|
|
|
mime_types.first.content_type
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-08 15:50:38 -04:00
|
|
|
def directory
|
|
|
|
@directory
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :directory, :key
|
|
|
|
::File.delete(path)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2010-11-18 14:18:46 -05:00
|
|
|
def public=(new_public)
|
|
|
|
new_public
|
|
|
|
end
|
|
|
|
|
2010-11-05 14:37:12 -04:00
|
|
|
def public_url
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2010-09-08 15:50:38 -04:00
|
|
|
def save(options = {})
|
|
|
|
requires :body, :directory, :key
|
|
|
|
file = ::File.new(path, 'w')
|
2010-11-22 17:20:45 -05:00
|
|
|
if body.is_a?(String)
|
|
|
|
file.write(body)
|
|
|
|
else
|
|
|
|
file.write(body.read)
|
|
|
|
end
|
2010-09-08 15:50:38 -04:00
|
|
|
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
|
2010-11-23 16:45:37 -05:00
|
|
|
connection.path_to(::File.join(directory.key, CGI.escape(key)))
|
2010-09-08 15:50:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|