2010-09-08 15:50:38 -04:00
|
|
|
require 'fog/model'
|
2010-09-08 17:00:43 -04:00
|
|
|
require 'fog/local/models/storage/files'
|
2010-09-08 15:50:38 -04:00
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Local
|
|
|
|
class Storage
|
|
|
|
|
|
|
|
class Directory < Fog::Model
|
|
|
|
extend Fog::Deprecation
|
|
|
|
deprecate(:name, :key)
|
|
|
|
deprecate(:name=, :key=)
|
|
|
|
|
|
|
|
identity :key
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :key
|
|
|
|
|
|
|
|
if ::File.directory?(path)
|
|
|
|
Dir.rmdir(path)
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def files
|
|
|
|
@files ||= begin
|
2010-09-21 13:54:15 -04:00
|
|
|
Fog::Local::Storage::Files.new(
|
2010-09-08 15:50:38 -04:00
|
|
|
:directory => self,
|
|
|
|
:connection => connection
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
requires :key
|
|
|
|
|
|
|
|
Dir.mkdir(path)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def path
|
|
|
|
connection.path_to(key)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|