Sha256: 68787395a3059f138431f881eddc005c050e404fabcc13ee34736f0d207ccfb9

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

require File.expand_path("../catalog_item", __FILE__)

module Fog
  module Compute
    class Ecloud
      class Catalog < Fog::Ecloud::Collection
        identity :href

        model Fog::Compute::Ecloud::CatalogItem

        def all
          data = service.get_catalog(href).body#[:Locations][:Location][:Catalog][:CatalogEntry]
          if data[:Locations][:Location].is_a?(Hash)
            data = [] if data[:Locations][:Location][:Catalog].is_a?(String) && data[:Locations][:Location][:Catalog].empty?
            load(data)
          elsif data[:Locations][:Location].is_a?(Array)
            r_data = []
            data[:Locations][:Location].each do |d|
              unless d[:Catalog].is_a?(String) && d[:Catalog].empty?
                d[:Catalog][:CatalogEntry].each do |c|
                  r_data << c
                end
              end
            end
            load(r_data)
          end
        end

        def get(uri)
          if data = service.get_catalog_item(uri)
            new(data.body)
          end
        rescue Fog::Errors::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-ecloud-0.1.1/lib/fog/compute/ecloud/models/catalog.rb
fog-ecloud-0.2.0 lib/fog/compute/ecloud/models/catalog.rb
fog-ecloud-0.1.3 lib/fog/compute/ecloud/models/catalog.rb
fog-ecloud-0.1.2 lib/fog/compute/ecloud/models/catalog.rb
fog-ecloud-0.1.1 lib/fog/compute/ecloud/models/catalog.rb
fog-ecloud-0.1.0 lib/fog/compute/ecloud/models/catalog.rb