Class/Module Index [+]

Quicksearch

Fog::StormOnDemand::RealShared

Constants

API_URL
API_VERSION

Public Class Methods

new(options={}) click to toggle source
# File lib/fog/storm_on_demand/shared.rb, line 8
def initialize(options={})
  uri = URI.parse(options[:storm_on_demand_auth_url] ||= API_URL)
  @connection_options = options[:connection_options] || {}
  @host       = uri.host
  @path       = uri.path
  @persistent = options[:persistent] || false
  @port       = uri.port
  @scheme     = uri.scheme
  @storm_on_demand_username = options[:storm_on_demand_username]
  @storm_on_demand_password = options[:storm_on_demand_password]
  @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
end

Public Instance Methods

reload() click to toggle source
# File lib/fog/storm_on_demand/shared.rb, line 21
def reload
  @connection.reset
end
request(params) click to toggle source
# File lib/fog/storm_on_demand/shared.rb, line 25
def request(params)
  begin
    response = @connection.request(params.merge!({
      :headers  => {
        'Content-Type' => 'application/json',
        'Authorization' => 'Basic ' << Base64.encode64("#{@storm_on_demand_username}:#{@storm_on_demand_password}").chomp
      }.merge!(params[:headers] || {}),
      :host     => @host,
      :path     => "#{@path}/#{API_VERSION}#{params[:path]}",
      :expects  => 200,
      :method   => :post
    }))
  rescue Excon::Errors::HTTPStatusError => error
    raise case error
    when Excon::Errors::NotFound
      Fog::StormOnDemand::Compute::NotFound.slurp(error)
    else
      error
    end
  end
  unless response.body.empty?
    response.body = Fog::JSON.decode(response.body)
  end
  if response.body.has_key?('error_class')
    raise(Fog::Compute::StormOnDemand::Error, response.body.inspect)
  end
  response
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.