2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/model'
|
2010-09-08 15:50:38 -04:00
|
|
|
|
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class Local
|
2010-09-08 15:50:38 -04:00
|
|
|
|
|
|
|
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'
|
|
|
|
|
2012-07-22 23:43:41 -04:00
|
|
|
require 'uri'
|
|
|
|
|
2010-09-08 15:50:38 -04:00
|
|
|
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
|
|
|
|
|
2012-02-16 14:35:00 -05:00
|
|
|
def copy(target_directory_key, target_file_key, options={})
|
|
|
|
requires :directory, :key
|
|
|
|
connection.copy_object(directory.key, key, target_directory_key, target_file_key)
|
|
|
|
target_directory = connection.directories.new(:key => target_directory_key)
|
|
|
|
target_directory.files.get(target_file_key)
|
|
|
|
end
|
|
|
|
|
2010-09-08 15:50:38 -04:00
|
|
|
def destroy
|
|
|
|
requires :directory, :key
|
2011-08-05 09:37:53 -04:00
|
|
|
::File.delete(path) if ::File.exists?(path)
|
2011-02-15 19:53:45 -05:00
|
|
|
dirs = path.split(::File::SEPARATOR)[0...-1]
|
|
|
|
dirs.length.times do |index|
|
|
|
|
dir_path = dirs[0..-index].join(::File::SEPARATOR)
|
|
|
|
if dir_path.empty? # path starts with ::File::SEPARATOR
|
|
|
|
next
|
|
|
|
end
|
|
|
|
# don't delete the containing directory or higher
|
|
|
|
if dir_path == connection.path_to(directory.key)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
pwd = Dir.pwd
|
2012-02-15 12:52:52 -05:00
|
|
|
if ::File.exists?(dir_path) && ::File.directory?(dir_path)
|
2011-08-05 09:37:53 -04:00
|
|
|
Dir.chdir(dir_path)
|
|
|
|
if Dir.glob('*').empty?
|
|
|
|
Dir.rmdir(dir_path)
|
|
|
|
end
|
|
|
|
Dir.chdir(pwd)
|
2011-02-15 19:53:45 -05:00
|
|
|
end
|
|
|
|
end
|
2010-09-08 15:50:38 -04:00
|
|
|
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
|
2012-07-22 23:43:41 -04:00
|
|
|
requires :directory, :key
|
|
|
|
|
|
|
|
if connection.endpoint
|
|
|
|
escaped_directory = URI.escape(directory.key)
|
|
|
|
escaped_key = URI.escape(key)
|
|
|
|
|
|
|
|
::File.join(connection.endpoint, escaped_directory, escaped_key)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2010-11-05 14:37:12 -04:00
|
|
|
end
|
|
|
|
|
2010-09-08 15:50:38 -04:00
|
|
|
def save(options = {})
|
|
|
|
requires :body, :directory, :key
|
2011-02-15 19:53:45 -05:00
|
|
|
dirs = path.split(::File::SEPARATOR)[0...-1]
|
|
|
|
dirs.length.times do |index|
|
|
|
|
dir_path = dirs[0..index].join(::File::SEPARATOR)
|
|
|
|
if dir_path.empty? # path starts with ::File::SEPARATOR
|
|
|
|
next
|
|
|
|
end
|
|
|
|
# create directory if it doesn't already exist
|
|
|
|
unless ::File.directory?(dir_path)
|
|
|
|
Dir.mkdir(dir_path)
|
|
|
|
end
|
|
|
|
end
|
2011-08-05 09:37:53 -04:00
|
|
|
file = ::File.new(path, 'wb')
|
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(
|
2011-05-25 17:37:47 -04:00
|
|
|
:content_length => Fog::Storage.get_body_size(body),
|
2010-09-08 15:50:38 -04:00
|
|
|
:last_modified => ::File.mtime(path)
|
|
|
|
)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def directory=(new_directory)
|
|
|
|
@directory = new_directory
|
|
|
|
end
|
|
|
|
|
|
|
|
def path
|
2011-02-15 19:53:45 -05:00
|
|
|
connection.path_to(::File.join(directory.key, key))
|
2010-09-08 15:50:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|