mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
827c029a99
- Added google_storage_* keys - Fixed indentations. - Factored out requires and recognizes method implementation (now relies on the requires and recognizes clause from the NamedParameters module) - Added dependency to named-parameters gem. - Added recognizes declaration to classes for all supported services to enforce parameter name checks - - passing an unrecognized key when instantiating a service object will now cause an ArgumentError to be raised. - Added NOTE - comment added - check/filter-out keys from credentials that are not required by the class being instantiated - [local|storage] properly write out file contents - Added google_storage_* keys - Fixed indentations. - added put_object_acl request (ref: https://github.com/geemus/fog/issues#issue/74) - Release 0.3.24 - remove tracker reference from README - issues is now the goto for bugs/todo - notify and gracefully skip credential-less testsa - [rackspace|storage] fixes for directory/files - [local|storage] CGI.escape file names - Release 0.3.25 - updated deps; recognized_parameters -> declared_parameters; restored options filtering if Fog.bin - Added requires/recognizes to Fog::Terremark::Ecloud - Updted to use latest named-parameters gem. - Filter out unwanted parameters when Fog.bin - Updated to latest named-parameters gem - commented out unnecessary code - fix missing "volume" parameter error when setting Fog::AWS::Volume#server to nil (in order to detach it) - documentation update for key_pairs and helper - [aws|compute] commented/documented flavors/volumes - Fixes for issue 38 and 39 Closes #96
124 lines
2.6 KiB
Ruby
124 lines
2.6 KiB
Ruby
module Fog
|
|
class Service
|
|
|
|
class Error < Fog::Errors::Error; end
|
|
class NotFound < Fog::Errors::NotFound; end
|
|
|
|
module Collections
|
|
|
|
def collections
|
|
service.collections
|
|
end
|
|
|
|
def requests
|
|
service.requests
|
|
end
|
|
|
|
end
|
|
|
|
class << self
|
|
|
|
def inherited(child)
|
|
child.class_eval <<-EOS, __FILE__, __LINE__
|
|
module Collections
|
|
include Fog::Service::Collections
|
|
|
|
def service
|
|
#{child}
|
|
end
|
|
end
|
|
|
|
def self.service
|
|
#{child}
|
|
end
|
|
EOS
|
|
end
|
|
|
|
def requirements
|
|
declared_parameters_for :new, :required
|
|
end
|
|
|
|
def new(options={})
|
|
if Fog.bin
|
|
default_credentials = filter_parameters(Fog.credentials)
|
|
options = default_credentials.merge(options)
|
|
end
|
|
|
|
setup_requirements
|
|
|
|
if Fog.mocking?
|
|
service::Mock.send(:include, service::Collections)
|
|
service::Mock.new(options)
|
|
else
|
|
service::Real.send(:include, service::Collections)
|
|
service::Real.new(options)
|
|
end
|
|
end
|
|
|
|
def setup_requirements
|
|
if superclass.respond_to?(:setup_requirements)
|
|
superclass.setup_requirements
|
|
end
|
|
|
|
@required ||= false
|
|
unless @required
|
|
for collection in collections
|
|
require [@model_path, collection].join('/')
|
|
constant = collection.to_s.split('_').map {|characters| characters[0...1].upcase << characters[1..-1]}.join('')
|
|
service::Collections.module_eval <<-EOS, __FILE__, __LINE__
|
|
def #{collection}(attributes = {})
|
|
#{service}::#{constant}.new({:connection => self}.merge(attributes))
|
|
end
|
|
EOS
|
|
end
|
|
for model in models
|
|
require [@model_path, model].join('/')
|
|
end
|
|
for request in requests
|
|
require [@request_path, request].join('/')
|
|
end
|
|
@required = true
|
|
end
|
|
end
|
|
|
|
def model_path(new_path)
|
|
@model_path = new_path
|
|
end
|
|
|
|
def collection(new_collection)
|
|
collections << new_collection
|
|
end
|
|
|
|
def collections
|
|
@collections ||= []
|
|
end
|
|
|
|
def model(new_model)
|
|
models << new_model
|
|
end
|
|
|
|
def models
|
|
@models ||= []
|
|
end
|
|
|
|
def request_path(new_path)
|
|
@request_path = new_path
|
|
end
|
|
|
|
def request(new_request)
|
|
requests << new_request
|
|
end
|
|
|
|
def requests
|
|
@requests ||= []
|
|
end
|
|
|
|
def reset_data(keys=Mock.data.keys)
|
|
Mock.reset_data(keys)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
|