Sha256: 7c007911b139e433e038f124f3a3be0b7c74a09450c4282d06ff56f8dc4de521

Contents?: true

Size: 1.63 KB

Versions: 112

Compression:

Stored size: 1.63 KB

Contents

module Fog
  module Terremark
    module Shared
      module Real

        # Get list of organizations
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Array>:
        #     * 'description'<~String> - Description of organization
        #     * 'links'<~Array> - An array of links to entities in the organization
        #     * 'name'<~String> - Name of organization
        def get_organizations
          request({
            :expects  => 200,
            :headers  => {
              'Authorization' => "Basic #{Base64.encode64("#{@terremark_username}:#{@terremark_password}").chomp!}",
              # Terremark said they're going to remove passing in the Content-Type to login in a future release
              'Content-Type'  => "application/vnd.vmware.vcloud.orgList+xml"
            },
            :method   => 'POST',
            :parser   => Fog::Parsers::Terremark::Shared::GetOrganizations.new,
            :path     => 'login'
          })
        end

      end

      module Mock

        def get_organizations
          response = Excon::Response.new
          org_list = self.data[:organizations].map do |organization|
            { "name" => organization[:info][:name],
              "href" => "#{@base_url}/org/#{organization[:info][:id]}",
              "type" => "application/vnd.vmware.vcloud.org+xml"
            }
          end
          response.body = { "OrgList" => org_list }
          response.status = 200
          response.headers = Fog::Terremark::Shared::Mock.headers(response.body, "application/vnd.vmware.vcloud.orgList+xml")
          response
        end

      end
    end
  end
end

Version data entries

112 entries across 112 versions & 19 rubygems

Version Path
fog-1.22.0 lib/fog/terremark/requests/shared/get_organizations.rb
fog-1.21.0 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/terremark/requests/shared/get_organizations.rb
fog-1.20.0 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/terremark/requests/shared/get_organizations.rb
fog-1.19.0 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/terremark/requests/shared/get_organizations.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/terremark/requests/shared/get_organizations.rb