Class: Service::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/opennebula/oneflow_client.rb

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Client

Returns a new instance of Client.



299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# File 'lib/opennebula/oneflow_client.rb', line 299

def initialize(opts={})
    @username = opts[:username] || ENV['ONEFLOW_USER']
    @password = opts[:password] || ENV['ONEFLOW_PASSWORD']

    url = opts[:url] || ENV['ONEFLOW_URL'] || 'http://localhost:2474'

    if @username.nil? && @password.nil?
        if ENV["ONE_AUTH"] and !ENV["ONE_AUTH"].empty? and File.file?(ENV["ONE_AUTH"])
            one_auth = File.read(ENV["ONE_AUTH"])
        elsif ENV["HOME"] and File.file?(ENV["HOME"]+"/.one/one_auth")
            one_auth = File.read(ENV["HOME"]+"/.one/one_auth")
        elsif File.file?("/var/lib/one/.one/one_auth")
            one_auth = File.read("/var/lib/one/.one/one_auth")
        else
            raise "ONE_AUTH file not present"
        end

        one_auth = one_auth.rstrip

        @username, @password = one_auth.split(':')
    end

    @uri = URI.parse(url)

    @user_agent = "OpenNebula #{CloudClient::VERSION} " <<
        "(#{opts[:user_agent]||"Ruby"})"

    @host = nil
    @port = nil

    if ENV['http_proxy']
        uri_proxy  = URI.parse(ENV['http_proxy'])
        @host = uri_proxy.host
        @port = uri_proxy.port
    end
end

Instance Method Details

#delete(path) ⇒ Object



342
343
344
345
346
# File 'lib/opennebula/oneflow_client.rb', line 342

def delete(path)
    req =Net::HTTP::Proxy(@host, @port)::Delete.new(path)

    do_request(req)
end

#get(path) ⇒ Object



336
337
338
339
340
# File 'lib/opennebula/oneflow_client.rb', line 336

def get(path)
    req = Net::HTTP::Proxy(@host, @port)::Get.new(path)

    do_request(req)
end

#loginObject



362
363
364
365
366
# File 'lib/opennebula/oneflow_client.rb', line 362

def 
    req = Net::HTTP::Proxy(@host, @port)::Post.new('/login')

    do_request(req)
end

#logoutObject



368
369
370
371
372
# File 'lib/opennebula/oneflow_client.rb', line 368

def logout
    req = Net::HTTP::Proxy(@host, @port)::Post.new('/logout')

    do_request(req)
end

#post(path, body) ⇒ Object



348
349
350
351
352
353
# File 'lib/opennebula/oneflow_client.rb', line 348

def post(path, body)
    req = Net::HTTP::Proxy(@host, @port)::Post.new(path)
    req.body = body

    do_request(req)
end

#put(path, body) ⇒ Object



355
356
357
358
359
360
# File 'lib/opennebula/oneflow_client.rb', line 355

def put(path, body)
    req = Net::HTTP::Proxy(@host, @port)::Put.new(path)
    req.body = body

    do_request(req)
end