2010-11-08 07:21:31 -05:00
|
|
|
require 'fog/core/collection'
|
2011-01-14 13:41:12 -05:00
|
|
|
require 'fog/compute/models/brightbox/user'
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Brightbox
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
class Users < Fog::Collection
|
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::Brightbox::User
|
2010-11-08 07:21:31 -05:00
|
|
|
|
|
|
|
def all
|
2010-11-09 12:40:04 -05:00
|
|
|
data = connection.list_users
|
2010-11-08 07:21:31 -05:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(identifier)
|
|
|
|
return nil if identifier.nil? || identifier == ""
|
2010-11-09 12:40:04 -05:00
|
|
|
data = connection.get_user(identifier)
|
2010-11-08 07:21:31 -05:00
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|