Class: Fog::Vcloud::Real

Inherits:
Object
  • Object
show all
Extended by:
Generators
Includes:
Shared
Defined in:
lib/fog/vcloud.rb,
lib/fog/vcloud/requests/login.rb,
lib/fog/vcloud/requests/get_vdc.rb,
lib/fog/vcloud/requests/get_network.rb,
lib/fog/vcloud/requests/get_versions.rb,
lib/fog/vcloud/requests/get_organization.rb

Instance Attribute Summary

Attributes included from Shared

#versions_uri

Instance Method Summary collapse

Methods included from Generators

basic_request, unauthenticated_basic_request

Methods included from Shared

#ensure_unparsed, #supported_versions, #xmlns

Constructor Details

#initialize(options = {}) ⇒ Real

Returns a new instance of Real.



96
97
98
99
100
101
102
103
104
# File 'lib/fog/vcloud.rb', line 96

def initialize(options = {})
  @connections = {}
  @versions_uri = URI.parse(options[:versions_uri])
  @module = options[:module]
  @version = options[:version]
  @username = options[:username]
  @password = options[:password]
  @persistent = options[:persistent]
end

Instance Method Details

#default_organization_uriObject



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/fog/vcloud.rb', line 106

def default_organization_uri
  @default_organization_uri ||= begin
    unless @login_results
      
    end
    case @login_results.body[:Org]
    when Array
      @login_results.body[:Org].first[:href]
    when Hash
      @login_results.body[:Org][:href]
    else
      nil
    end
  end
end

#loginObject



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/fog/vcloud/requests/login.rb', line 7

def 
  unauthenticated_request({
    :expects  => 200,
    :headers  => {
      'Authorization' => authorization_header
    },
    :method   => 'POST',
    :parse    => true,
    :uri      => 
  })
end

#reloadObject



122
123
124
# File 'lib/fog/vcloud.rb', line 122

def reload
  @connections.each_value { |k,v| v.reset if v }
end

#request(params) ⇒ Object

If the cookie isn’t set, do a get_organizations call to set it and try the request. If we get an Unauthorized error, we assume the token expired, re-auth and try again



129
130
131
132
133
134
135
136
137
138
139
# File 'lib/fog/vcloud.rb', line 129

def request(params)
  unless @cookie
    
  end
  begin
    do_request(params)
  rescue Excon::Errors::Unauthorized => e
    
    do_request(params)
  end
end

#supporting_versionsObject



92
93
94
# File 'lib/fog/vcloud.rb', line 92

def supporting_versions
  ["0.8"]
end