From 765279d82b24da0aac1821fea0c4c02859ffe00c Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Tue, 25 Sep 2007 13:35:43 -0700 Subject: Show the list of groups a user belongs to. --- ipa-python/ipaclient.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ipa-python/ipaclient.py') diff --git a/ipa-python/ipaclient.py b/ipa-python/ipaclient.py index 880b4785..6fbd41d5 100644 --- a/ipa-python/ipaclient.py +++ b/ipa-python/ipaclient.py @@ -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""" -- cgit