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/local/storage.rb

102 lines
2.3 KiB
Ruby
Raw Normal View History

2012-05-15 14:54:20 -04:00
require 'fog/local/storage'
require 'fog/storage'
module Fog
module Storage
class Local < Fog::Service
requires :local_root
2012-07-22 23:43:41 -04:00
recognizes :endpoint, :scheme, :host, :port, :path
model_path 'fog/local/models/storage'
collection :directories
model :directory
model :file
collection :files
2012-07-22 23:43:41 -04:00
require 'uri'
class Mock
2012-07-22 23:43:41 -04:00
attr_reader :endpoint
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {}
end
end
def self.reset
@data = nil
end
def initialize(options={})
Fog::Mock.not_implemented
@local_root = ::File.expand_path(options[:local_root])
2012-07-22 23:43:41 -04:00
@endpoint = options[:endpoint] || build_endpoint_from_options(options)
2011-05-19 18:35:33 -04:00
end
def data
self.class.data[@local_root]
end
def local_root
@local_root
end
def path_to(partial)
::File.join(@local_root, partial)
end
def reset_data
self.class.data.delete(@local_root)
end
2012-07-22 23:43:41 -04:00
private
def build_endpoint_from_options(options)
return unless options[:host]
URI::Generic.build(options).to_s
end
end
class Real
2012-07-22 23:43:41 -04:00
attr_reader :endpoint
def initialize(options={})
@local_root = ::File.expand_path(options[:local_root])
2012-07-22 23:43:41 -04:00
@endpoint = options[:endpoint] || build_endpoint_from_options(options)
end
def local_root
@local_root
end
def path_to(partial)
::File.join(@local_root, partial)
end
def copy_object(source_directory_name, source_object_name, target_directory_name, target_object_name, options={})
require 'fileutils'
source_path = path_to(::File.join(source_directory_name, source_object_name))
target_path = path_to(::File.join(target_directory_name, target_object_name))
2012-07-06 13:34:26 -04:00
::FileUtils.mkdir_p(::File.dirname(target_path))
::FileUtils.copy_file(source_path, target_path)
end
2012-07-22 23:43:41 -04:00
private
def build_endpoint_from_options(options)
return unless options[:host]
URI::Generic.build(options).to_s
end
end
end
end
end