2012-02-22 09:40:32 -05:00
|
|
|
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
|
|
|
|
|
2012-04-02 03:26:45 -04:00
|
|
|
attribute :tenant
|
|
|
|
|
2012-02-22 09:40:32 -05:00
|
|
|
def all
|
2012-04-03 21:56:21 -04:00
|
|
|
tenant_id = tenant.nil? ? nil : tenant.id
|
2012-04-02 03:26:45 -04:00
|
|
|
load(connection.list_users(tenant_id).body['users'])
|
2012-02-22 09:40:32 -05:00
|
|
|
end
|
2012-03-09 04:28:32 -05:00
|
|
|
|
|
|
|
def find_by_id(id)
|
|
|
|
self.find {|user| user.id == id} ||
|
|
|
|
Fog::Identity::OpenStack::User.new(
|
2012-09-06 21:37:52 -04:00
|
|
|
connection.get_user_by_id(id).body['user'].merge(
|
|
|
|
connection: connection
|
|
|
|
)
|
|
|
|
)
|
2012-03-09 04:28:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy(id)
|
|
|
|
user = self.find_by_id(id)
|
|
|
|
user.destroy
|
|
|
|
end
|
2012-02-26 21:43:42 -05:00
|
|
|
end # class Users
|
2012-02-22 09:40:32 -05:00
|
|
|
end # class OpenStack
|
2012-02-26 21:43:42 -05:00
|
|
|
end # module Identity
|
2012-02-22 09:40:32 -05:00
|
|
|
end # module Fog
|