fog/fog-ecloud

View on GitHub
lib/fog/compute/ecloud/models/organizations.rb

Summary

Maintainability
A
25 mins
Test Coverage
require File.expand_path("../organization", __FILE__)

module Fog
  module Compute
    class Ecloud
      class Organizations < Fog::Ecloud::Collection
        model Fog::Compute::Ecloud::Organization

        undef_method :create

        identity :href

        def all
          data = service.get_organizations(organization_uri).body
          load(data[:Organization])
        end

        def get(uri)
          if data = service.get_organization(uri)
            new(data.body)
          end
        rescue ServiceError => e
          raise e unless e.status_code == 404
          nil
        end

        def organization_uri
          @organization_uri ||= service.default_organization_uri
        end

        private

        def organization_uri=(new_organization_uri)
          @organization_uri = new_organization_uri
        end

        def reload
          @organization_uri = nil
          super
        end
      end
    end
  end
end