Show the list of groups a user belongs to.

This commit is contained in:
Kevin McCarthy
2007-09-25 13:35:43 -07:00
parent 0258d01792
commit 765279d82b
6 changed files with 63 additions and 3 deletions

View File

@@ -160,6 +160,15 @@ class IPAClient:
result = self.transport.get_group_by_dn(dn,sattrs) result = self.transport.get_group_by_dn(dn,sattrs)
return group.Group(result) return group.Group(result)
def get_groups_by_member(self,member_dn,sattrs=None):
"""Gets the groups that member_dn belongs to.
If sattrs is not None then only those
attributes will be returned, otherwise all available
attributes are returned. The result is a list of groups."""
results = self.transport.get_groups_by_member(member_dn,sattrs)
return map(lambda result: group.Group(result), results)
def add_group(self,group,group_container=None): def add_group(self,group,group_container=None):
"""Add a group. group is a ipa.group.Group object""" """Add a group. group is a ipa.group.Group object"""

View File

@@ -258,6 +258,23 @@ class RPCClient:
return ipautil.unwrap_binary_data(result) return ipautil.unwrap_binary_data(result)
def get_groups_by_member(self,member_dn,sattrs=None):
"""Gets the groups that member_dn belongs to.
If sattrs is not None then only those
attributes will be returned, otherwise all available
attributes are returned. The result is a list of dicts."""
server = self.setup_server()
if sattrs is None:
sattrs = "__NONE__"
try:
result = server.get_groups_by_member(member_dn, sattrs)
except xmlrpclib.Fault, fault:
raise ipaerror.gen_exception(fault.faultCode, fault.faultString)
except socket.error, (value, msg):
raise xmlrpclib.Fault(value, msg)
return ipautil.unwrap_binary_data(result)
def add_group(self,group,group_container=None): def add_group(self,group,group_container=None):
"""Add a new group. Takes as input a dict where the key is the """Add a new group. Takes as input a dict where the key is the
attribute name and the value is either a string or in the case attribute name and the value is either a string or in the case

View File

@@ -251,7 +251,9 @@ class Root(controllers.RootController):
client.set_krbccache(os.environ["KRB5CCNAME"]) client.set_krbccache(os.environ["KRB5CCNAME"])
try: try:
user = client.get_user_by_uid(uid, user_fields) user = client.get_user_by_uid(uid, user_fields)
return dict(user=user.toDict(), fields=forms.user.UserFields()) user_groups = client.get_groups_by_member(user.dn, ['cn'])
return dict(user=user.toDict(), fields=forms.user.UserFields(),
user_groups=user_groups)
except ipaerror.IPAError, e: except ipaerror.IPAError, e:
turbogears.flash("User show failed: " + str(e)) turbogears.flash("User show failed: " + str(e))
raise turbogears.redirect("/") raise turbogears.redirect("/")

View File

@@ -90,6 +90,14 @@ else:
</tr> </tr>
</table> </table>
<div class="formsection">Groups</div>
<div py:for="group in user_groups">
<a href="${tg.url('/groupshow', cn=group.cn)}">${group.cn}</a>
</div>
<br/>
<br/>
<a href="${tg.url('/useredit', uid=user.get('uid'))}">edit</a> <a href="${tg.url('/useredit', uid=user.get('uid'))}">edit</a>
</body> </body>

View File

@@ -204,6 +204,20 @@ class IPAServer:
return self.convert_entry(ent) return self.convert_entry(ent)
def __get_list (self, base, filter, sattrs=None, opts=None):
"""Gets a list of entries. Each is converted to a dict of values.
Multi-valued fields are represented as lists.
"""
entries = []
conn = self.getConnection(opts)
try:
entries = conn.getList(base, self.scope, filter, sattrs)
finally:
self.releaseConnection(conn)
return map(self.convert_entry, entries)
def __update_entry (self, oldentry, newentry, opts=None): def __update_entry (self, oldentry, newentry, opts=None):
"""Update an LDAP entry """Update an LDAP entry
@@ -580,6 +594,15 @@ class IPAServer:
filter = "(objectClass=*)" filter = "(objectClass=*)"
return self.__get_entry(dn, filter, sattrs, opts) return self.__get_entry(dn, filter, sattrs, opts)
def get_groups_by_member (self, member_dn, sattrs=None, opts=None):
"""Get a specific group's entry. Return as a dict of values.
Multi-valued fields are represented as lists.
"""
filter = "(&(objectClass=posixGroup)(uniqueMember=%s))" % member_dn
return self.__get_list(self.basedn, filter, sattrs, opts)
def add_group (self, group, group_container=None, opts=None): def add_group (self, group, group_container=None, opts=None):
"""Add a group in LDAP. Takes as input a dict where the key is the """Add a group in LDAP. Takes as input a dict where the key is the
attribute name and the value is either a string or in the case attribute name and the value is either a string or in the case

View File

@@ -326,6 +326,7 @@ def handler(req, profiling=False):
h.register_function(f.modifyPassword) h.register_function(f.modifyPassword)
h.register_function(f.get_group_by_cn) h.register_function(f.get_group_by_cn)
h.register_function(f.get_group_by_dn) h.register_function(f.get_group_by_dn)
h.register_function(f.get_groups_by_member)
h.register_function(f.add_group) h.register_function(f.add_group)
h.register_function(f.find_groups) h.register_function(f.find_groups)
h.register_function(f.add_user_to_group) h.register_function(f.add_user_to_group)