mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Show the list of groups a user belongs to.
This commit is contained in:
@@ -160,6 +160,15 @@ class IPAClient:
|
||||
result = self.transport.get_group_by_dn(dn,sattrs)
|
||||
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):
|
||||
"""Add a group. group is a ipa.group.Group object"""
|
||||
|
||||
|
||||
@@ -258,6 +258,23 @@ class RPCClient:
|
||||
|
||||
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):
|
||||
"""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
|
||||
|
||||
@@ -251,7 +251,9 @@ class Root(controllers.RootController):
|
||||
client.set_krbccache(os.environ["KRB5CCNAME"])
|
||||
try:
|
||||
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:
|
||||
turbogears.flash("User show failed: " + str(e))
|
||||
raise turbogears.redirect("/")
|
||||
|
||||
@@ -90,6 +90,14 @@ else:
|
||||
</tr>
|
||||
</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>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -204,6 +204,20 @@ class IPAServer:
|
||||
|
||||
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):
|
||||
"""Update an LDAP entry
|
||||
|
||||
@@ -580,6 +594,15 @@ class IPAServer:
|
||||
filter = "(objectClass=*)"
|
||||
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):
|
||||
"""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
|
||||
|
||||
@@ -326,6 +326,7 @@ def handler(req, profiling=False):
|
||||
h.register_function(f.modifyPassword)
|
||||
h.register_function(f.get_group_by_cn)
|
||||
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.find_groups)
|
||||
h.register_function(f.add_user_to_group)
|
||||
|
||||
Reference in New Issue
Block a user