1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/models/identity/users.rb
Nelvin Driz ad0e84be56 [openstack|compute] Fix Server Mocks and find_by_id method
Conflicts:
	lib/fog/openstack/requests/identity/update_user.rb
2012-09-28 15:09:59 +08:00

33 lines
832 B
Ruby

require 'fog/core/collection'
require 'fog/openstack/models/identity/user'
module Fog
module Identity
class OpenStack
class Users < Fog::Collection
model Fog::Identity::OpenStack::User
attribute :tenant
def all
tenant_id = tenant.nil? ? nil : tenant.id
load(connection.list_users(tenant_id).body['users'])
end
def find_by_id(id)
self.find {|user| user.id == id} ||
Fog::Identity::OpenStack::User.new(
connection.get_user_by_id(id).body['user'].merge(
connection: connection
)
)
end
def destroy(id)
user = self.find_by_id(id)
user.destroy
end
end # class Users
end # class OpenStack
end # module Identity
end # module Fog